
      /* Paleta de colores corporativos FRUIT - según documento */
      :root {
        --color-crema: #f0e6da;
        --color-verde-profundo: #084116;
        --color-naranja-vibrante: #ff9500;
        --color-naranja-oscuro: #ba3902;
        --color-azul-profundo: #0c1532;
        --color-verde-lima: #82a419;
        --color-amarillo-dorado: #edba3a;
        --color-rojo-profundo: #76070d;
        --color-blanco: #ffffff;
        --color-negro: #1a1a1a;
        --color-gris-claro: #f8f9fa;
        --color-gris-medio: #e9ecef;
      }

      /* Estilos base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Quicksand", "Segoe UI", Tahoma, Geneva, Verdana,
          sans-serif;
        line-height: 1.7;
        color: var(--color-azul-profundo);
        background-color: var(--color-crema);
        overflow-x: hidden;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section-title {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
      }

      .section-title h2 {
        font-family: "Poppins", sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--color-verde-profundo);
        display: inline-block;
        position: relative;
        padding-bottom: 15px;
      }

      .section-title h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--color-naranja-vibrante),
          var(--color-verde-lima)
        );
        border-radius: 2px;
      }

      .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--color-naranja-oscuro);
        max-width: 800px;
        margin: 0 auto 3rem;
      }

      /* Tipografía inspirada en la identidad FRUIT */
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
      }

      h1 {
        font-size: 3rem;
        font-weight: 700;
      }

      h2 {
        font-size: 2.2rem;
      }

      h3 {
        font-size: 1.8rem;
        color: var(--color-naranja-oscuro);
      }

      p {
        margin-bottom: 1.2rem;
        font-size: 1.05rem;
      }

      a {
        color: var(--color-naranja-vibrante);
        text-decoration: none;
        transition: all 0.3s ease;
      }

      a:hover {
        color: var(--color-naranja-oscuro);
      }

      .btn {
        display: inline-block;
        background: linear-gradient(
          135deg,
          var(--color-naranja-vibrante),
          var(--color-naranja-oscuro)
        );
        color: white;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
      }

      .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(255, 149, 0, 0.4);
      }

      .btn-secondary {
        background: linear-gradient(
          135deg,
          var(--color-verde-profundo),
          var(--color-verde-lima)
        );
        box-shadow: 0 4px 12px rgba(8, 65, 22, 0.3);
      }

      .btn-secondary:hover {
        box-shadow: 0 6px 18px rgba(8, 65, 22, 0.4);
      }

      .btn-outline {
        background: transparent;
        border: 2px solid var(--color-naranja-vibrante);
        color: var(--color-naranja-vibrante);
        box-shadow: none;
      }

      .btn-outline:hover {
        background: var(--color-naranja-vibrante);
        color: white;
      }

      /* Header y Navegación */
      header {
        background-color: rgba(12, 21, 50, 0.95);
        padding: 0.8rem 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(12, 21, 50, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      /* Logo en el header */
      .logo-container img {
        width: auto;
        max-height: 70px;
        object-fit: contain;
        transition: transform 0.3s ease;
      }

      .logo-container img:hover {
        transform: scale(1.05);
      }

      /* Imágenes en el carrusel hero */
      .slide-content img {
        max-width: 250px;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-bottom: 1.5rem;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
      }

      /* Imágenes en las tarjetas de productos */
      .producto-img {
        height: 220px;
        background: linear-gradient(
          135deg,
          var(--color-crema),
          var(--color-gris-claro)
        );
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 1.5rem;
      }

      .producto-img img {
        max-width: 80%;
        max-height: 80%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.5s ease;
        z-index: 2;
      }

      .producto-card:hover .producto-img img {
        transform: scale(1.05);
      }

      /* Imágenes en la sección de detalles */
      .detalle-imagen {
        background: linear-gradient(
          135deg,
          var(--color-crema),
          var(--color-gris-claro)
        );
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        min-height: 400px;
        padding: 2rem;
      }

      .detalle-imagen img {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        z-index: 2;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
      }

      .logo-simbolo {
        width: 60px;
        height: 60px;
        background: linear-gradient(
          135deg,
          var(--color-verde-profundo),
          var(--color-verde-lima)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
      }

      .logo-simbolo:after {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transform: rotate(45deg);
      }

      .logo-texto {
        font-family: "Poppins", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: white;
        letter-spacing: 1px;
      }

      .nav-menu {
        display: flex;
        gap: 1.2rem;
      }

      .nav-link {
        color: white;
        font-weight: 600;
        padding: 0.6rem 1.2rem;
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .nav-link:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-naranja-vibrante);
        transition: width 0.3s ease;
      }

      .nav-link:hover {
        color: var(--color-amarillo-dorado);
      }

      .nav-link:hover:before {
        width: 100%;
      }

      .nav-link.active {
        color: var(--color-naranja-vibrante);
      }

      .nav-link.active:before {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
      }

      /* CARRUSEL HERO */
      .hero-carousel {
        position: relative;
        width: 100%;
        height: 100vh;
        max-height: 800px;
        overflow: hidden;
        margin-top: 0;
      }

      .carousel-slides {
        position: relative;
        width: 100%;
        height: 100%;
      }

      .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .carousel-slide.active {
        opacity: 1;
        z-index: 1;
      }

      /* Overlay para mejorar legibilidad del texto */
      .carousel-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          rgba(12, 21, 50, 0.7),
          rgba(12, 21, 50, 0.85)
        );
        z-index: 1;
      }

      .carousel-slide:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff9500' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        z-index: 2;
      }

      .slide-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        max-width: 800px;
        padding: 0 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }

      .carousel-slide.active .slide-content {
        opacity: 1;
        transform: translateY(0);
      }

      .hero h1 {
        color: white;
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .hero-subtitle {
        font-size: 1.8rem;
        color: var(--color-amarillo-dorado);
        margin-bottom: 2rem;
        font-weight: 500;
      }

      .hero-text {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2.5rem;
        opacity: 0.9;
      }

      .slogan-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin: 2.5rem 0;
      }

      .slogan-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem 2rem;
        border-radius: 10px;
        border-left: 4px solid var(--color-naranja-vibrante);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: transform 0.3s ease;
      }

      .slogan-box:hover {
        transform: translateY(-5px);
      }

      .slogan {
        font-size: 1.5rem;
        font-style: italic;
        color: var(--color-naranja-vibrante);
        font-weight: 600;
      }

      .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      /* Controles del carrusel */
      .carousel-controls {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
      }

      .carousel-prev,
      .carousel-next {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }

      .carousel-prev:hover,
      .carousel-next:hover {
        background: var(--color-naranja-vibrante);
        transform: scale(1.1);
      }

      .carousel-indicators {
        display: flex;
        gap: 10px;
      }

      .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .carousel-indicator.active {
        background: var(--color-naranja-vibrante);
        transform: scale(1.2);
      }

      /* Contador del carrusel */
      .carousel-counter {
        position: absolute;
        bottom: 40px;
        right: 40px;
        color: white;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.3);
        padding: 5px 15px;
        border-radius: 20px;
        z-index: 10;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }

      /* Sección de Productos */
      .section {
        padding: 6rem 0;
      }

      .section-light {
        background-color: white;
      }

      .section-pattern {
        background-color: var(--color-crema);
        position: relative;
        overflow: hidden;
      }

      .section-pattern:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23084116' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
      }

      .productos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
      }

      .producto-card {
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .producto-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .producto-img {
        height: 220px;
        background: linear-gradient(
          135deg,
          var(--color-crema),
          var(--color-gris-claro)
        );
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        color: var(--color-naranja-vibrante);
        position: relative;
        overflow: hidden;
      }

      .producto-img:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(255, 149, 0, 0.1),
          rgba(130, 164, 25, 0.1)
        );
      }

      .producto-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .producto-titulo {
        color: var(--color-verde-profundo);
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
      }

      .producto-descripcion {
        color: var(--color-azul-profundo);
        margin-bottom: 1.5rem;
        flex-grow: 1;
      }

      .producto-precio {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-naranja-oscuro);
        margin-bottom: 1.5rem;
      }

      .etiquetas-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
      }

      .etiqueta {
        display: inline-block;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
      }

      .etiqueta-natural {
        background-color: var(--color-verde-lima);
        color: white;
      }

      .etiqueta-altura {
        background-color: var(--color-amarillo-dorado);
        color: var(--color-azul-profundo);
      }

      .etiqueta-artesanal {
        background-color: var(--color-rojo-profundo);
        color: white;
      }

      .etiqueta-fresco {
        background-color: var(--color-azul-profundo);
        color: white;
      }

      /* Sección Detalle de Productos */
      .detalle-productos {
        padding: 6rem 0;
        background-color: var(--color-gris-claro);
      }

      .producto-selector {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
      }

      .selector-btn {
        padding: 1rem 2rem;
        background: white;
        border: 2px solid var(--color-gris-medio);
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        color: var(--color-azul-profundo);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }

      .selector-btn:hover {
        border-color: var(--color-naranja-vibrante);
        color: var(--color-naranja-vibrante);
        transform: translateY(-3px);
      }

      .selector-btn.active {
        background: linear-gradient(
          135deg,
          var(--color-naranja-vibrante),
          var(--color-naranja-oscuro)
        );
        color: white;
        border-color: transparent;
        box-shadow: 0 5px 15px rgba(255, 149, 0, 0.2);
      }

      .detalle-container {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        display: none;
      }

      .detalle-container.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .detalle-header {
        background: linear-gradient(
          135deg,
          var(--color-verde-profundo),
          var(--color-verde-lima)
        );
        color: white;
        padding: 2.5rem;
        text-align: center;
      }

      .detalle-header h3 {
        color: white;
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
      }

      .detalle-subtitulo {
        font-size: 1.2rem;
        opacity: 0.9;
      }

      .detalle-body {
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .detalle-imagen {
        background: linear-gradient(
          135deg,
          var(--color-crema),
          var(--color-gris-claro)
        );
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8rem;
        color: var(--color-naranja-vibrante);
        position: relative;
        overflow: hidden;
        min-height: 400px;
      }

      .detalle-imagen:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(255, 149, 0, 0.1),
          rgba(130, 164, 25, 0.1)
        );
      }

      .detalle-info {
        display: flex;
        flex-direction: column;
      }

      .detalle-descripcion {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
      }

      .detalle-caracteristicas {
        margin-bottom: 2rem;
      }

      .caracteristica-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0.8rem;
        background: var(--color-gris-claro);
        border-radius: 8px;
      }

      .caracteristica-icono {
        font-size: 1.3rem;
        color: var(--color-naranja-vibrante);
        margin-right: 1rem;
        min-width: 30px;
      }

      .detalle-nutricional {
        background: var(--color-gris-claro);
        border-radius: 15px;
        padding: 2rem;
        margin-top: 2rem;
      }

      .nutricional-titulo {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        color: var(--color-verde-profundo);
      }

      .nutricional-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
      }

      .nutricional-item {
        background: white;
        padding: 1.2rem;
        border-radius: 10px;
        text-align: center;
        border-left: 4px solid var(--color-verde-lima);
      }

      .nutricional-valor {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-naranja-oscuro);
        margin-bottom: 0.3rem;
      }

      .nutricional-label {
        font-size: 0.9rem;
        color: var(--color-azul-profundo);
      }

      .detalle-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 3rem;
        background: var(--color-gris-claro);
        border-top: 1px solid #ddd;
      }

      .detalle-precio {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--color-naranja-oscuro);
      }

      .detalle-botones {
        display: flex;
        gap: 1rem;
      }

      /* Sección Identidad Visual */
      .identidad-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
      }

      .identidad-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease;
      }

      .identidad-card:hover {
        transform: translateY(-10px);
      }

      .identidad-icon {
        font-size: 2.5rem;
        color: var(--color-naranja-vibrante);
        margin-bottom: 1.5rem;
      }

      .logo-variantes {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        margin-top: 2rem;
      }

      .logo-variante {
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        min-width: 180px;
      }

      .logo-simbolo-small {
        width: 80px;
        height: 80px;
        background: linear-gradient(
          135deg,
          var(--color-verde-profundo),
          var(--color-verde-lima)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        font-weight: bold;
        margin: 0 auto 1rem;
      }

      .logo-texto-small {
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-azul-profundo);
      }

      /* Colores corporativos */
      .colores-corporativos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.2rem;
        margin: 2.5rem 0;
      }

      .color-item {
        height: 120px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .color-item:hover {
        transform: scale(1.05);
      }

      .color-item.crema {
        background-color: var(--color-crema);
        color: var(--color-azul-profundo);
      }

      .color-item.verde-profundo {
        background-color: var(--color-verde-profundo);
      }

      .color-item.naranja-vibrante {
        background-color: var(--color-naranja-vibrante);
      }

      .color-item.naranja-oscuro {
        background-color: var(--color-naranja-oscuro);
      }

      .color-item.azul-profundo {
        background-color: var(--color-azul-profundo);
      }

      .color-item.verde-lima {
        background-color: var(--color-verde-lima);
      }

      .color-item.amarillo-dorado {
        background-color: var(--color-amarillo-dorado);
        color: var(--color-azul-profundo);
      }

      .color-item.rojo-profundo {
        background-color: var(--color-rojo-profundo);
      }

      /* Sección Nosotros */
      .nosotros-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        margin-top: 3rem;
      }

      .nosotros-img {
        height: 450px;
        background: linear-gradient(
          135deg,
          var(--color-verde-profundo),
          var(--color-verde-lima)
        );
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
        padding: 2rem;
      }

      .nosotros-img img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        z-index: 2;
        border-radius: 8px;
      }

      .nosotros-img:before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        right: -50%;
        bottom: -50%;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transform: rotate(45deg);
      }

      .valores-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.8rem;
        margin-top: 2.5rem;
      }

      .valor-card {
        text-align: center;
        padding: 2rem 1.5rem;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-top: 4px solid var(--color-naranja-vibrante);
      }

      .valor-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .valor-icono {
        font-size: 2.5rem;
        color: var(--color-naranja-vibrante);
        margin-bottom: 1.5rem;
      }

      /* Sección Etiquetas */
      .etiquetas-container-detalle {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
      }

      .etiqueta-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
      }

      .etiqueta-card:hover {
        transform: translateY(-10px);
      }

      .etiqueta-header {
        padding: 2rem 1.5rem;
        background: linear-gradient(
          135deg,
          var(--color-naranja-vibrante),
          var(--color-naranja-oscuro)
        );
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .etiqueta-header img {
        max-width: 200px;
        max-height: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-top: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem;
      }

      .etiqueta-body {
        padding: 2rem;
      }

      .etiqueta-list {
        list-style: none;
        margin-top: 1.5rem;
      }

      .etiqueta-list li {
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
        position: relative;
      }

      .etiqueta-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--color-verde-lima);
        font-weight: bold;
      }

      /* Sección Normativa */
      .normativa-container {
        background: white;
        border-radius: 15px;
        padding: 3rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin-top: 3rem;
      }

      .normativa-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .normativa-item {
        background: var(--color-gris-claro);
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 4px solid var(--color-verde-profundo);
      }

      /* Sección Contacto */
      .contacto-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
      }

      .contacto-info {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      }

      .contacto-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
      }

      .contacto-icono {
        font-size: 1.8rem;
        color: var(--color-naranja-vibrante);
        margin-right: 1.2rem;
        min-width: 40px;
      }

      .form-group {
        margin-bottom: 1.8rem;
      }

      .form-control {
        width: 100%;
        padding: 1rem 1.2rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--color-naranja-vibrante);
        box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
      }

      textarea.form-control {
        min-height: 180px;
        resize: vertical;
      }

      /* Footer */
      footer {
        background-color: var(--color-azul-profundo);
        color: white;
        padding: 4rem 0 2rem;
        position: relative;
        overflow: hidden;
      }

      footer:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
      }

      .footer-logo {
        font-family: "Poppins", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.5rem;
      }
      .footer-logo img {
        max-width: 200px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-bottom: 1rem;
      }

      .footer-titulo {
        color: var(--color-amarillo-dorado);
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: #ddd;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--color-naranja-vibrante);
      }

      .redes-sociales {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .red-social {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        font-size: 1.3rem;
        transition: all 0.3s ease;
      }

      .red-social:hover {
        background-color: var(--color-naranja-vibrante);
        transform: translateY(-5px);
      }

      .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #aaa;
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
      }

      /* Responsive */
      @media (max-width: 1100px) {
        .nosotros-container {
          grid-template-columns: 1fr;
        }

        .nosotros-img {
          order: -1;
          height: 350px;
        }

        .detalle-body {
          grid-template-columns: 1fr;
        }

        .detalle-imagen {
          min-height: 300px;
        }

        h1 {
          font-size: 2.8rem;
        }

        h2 {
          font-size: 2.2rem;
        }

        .hero-carousel {
          height: 80vh;
        }

        .hero h1 {
          font-size: 3rem;
        }
      }

      @media (max-width: 992px) {
        .contacto-container {
          grid-template-columns: 1fr;
        }

        .hero h1 {
          font-size: 2.8rem;
        }

        .hero-subtitle {
          font-size: 1.5rem;
        }

        .section-title h2 {
          font-size: 2.2rem;
        }
      }

      @media (max-width: 768px) {
        .header-container {
          flex-direction: row;
          justify-content: space-between;
        }

        .nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 280px;
          height: 100vh;
          background: var(--color-azul-profundo);
          flex-direction: column;
          padding: 100px 30px 30px;
          transition: right 0.4s ease;
          z-index: 100;
          box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        }

        .nav-menu.active {
          right: 0;
        }

        .mobile-menu-btn {
          display: block;
        }

        .hero-carousel {
          height: 70vh;
          max-height: 600px;
        }

        .hero h1 {
          font-size: 2.3rem;
        }

        .hero-subtitle {
          font-size: 1.3rem;
        }

        .slogan-container {
          flex-direction: column;
          gap: 1rem;
        }

        .productos-grid {
          grid-template-columns: 1fr;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }

        .hero-buttons .btn {
          width: 100%;
          max-width: 300px;
          margin-bottom: 1rem;
        }

        .section {
          padding: 4rem 0;
        }

        .detalle-footer {
          flex-direction: column;
          gap: 1.5rem;
          text-align: center;
        }

        .detalle-botones {
          flex-direction: column;
          width: 100%;
        }

        .detalle-botones .btn {
          width: 100%;
        }

        .producto-selector {
          flex-direction: column;
          align-items: center;
        }

        .selector-btn {
          width: 100%;
          max-width: 300px;
          justify-content: center;
        }

        .carousel-controls {
          bottom: 20px;
        }

        .carousel-counter {
          bottom: 20px;
          right: 20px;
          font-size: 1rem;
        }

        .carousel-prev,
        .carousel-next {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
        }
      }

      @media (max-width: 576px) {
        .logo-texto {
          font-size: 1.8rem;
        }

        .logo-simbolo {
          width: 50px;
          height: 50px;
          font-size: 1.5rem;
        }

        .hero h1 {
          font-size: 2rem;
        }

        .section-title h2 {
          font-size: 1.8rem;
        }

        .identidad-container,
        .etiquetas-container-detalle {
          grid-template-columns: 1fr;
        }

        .colores-corporativos {
          grid-template-columns: repeat(2, 1fr);
        }

        .detalle-body {
          padding: 2rem;
        }

        .detalle-header {
          padding: 2rem 1.5rem;
        }

        .detalle-header h3 {
          font-size: 1.8rem;
        }

        .nutricional-grid {
          grid-template-columns: 1fr;
        }

        .hero-carousel {
          height: 60vh;
        }

        .hero-subtitle {
          font-size: 1.1rem;
        }

        .hero-text {
          font-size: 1rem;
        }

        .slogan {
          font-size: 1.2rem;
        }

        .carousel-controls {
          gap: 10px;
        }

        .carousel-indicator {
          width: 10px;
          height: 10px;
        }
      }
      /* Efectos visuales adicionales para imágenes */
      .img-frame {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
      }

      .img-frame::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        pointer-events: none;
        z-index: 3;
      }

      /* Placeholder styling for images */
      .img-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--color-naranja-vibrante);
        background: linear-gradient(
          45deg,
          rgba(255, 149, 0, 0.1),
          rgba(130, 164, 25, 0.1)
        );
        border-radius: 10px;
        width: 100%;
        height: 100%;
      }

      /* Responsive adjustments for images */
      @media (max-width: 1100px) {
        .nosotros-img {
          height: 350px;
        }

        .detalle-imagen {
          min-height: 300px;
        }
      }

      @media (max-width: 768px) {
        .slide-content img {
          max-width: 200px;
          max-height: 100px;
        }

        .etiqueta-header img {
          max-width: 150px;
          max-height: 120px;
        }

        .footer-logo img {
          max-width: 150px;
        }
      }

      @media (max-width: 576px) {
        .logo-container img {
          max-height: 50px;
        }

        .slide-content img {
          max-width: 180px;
          max-height: 80px;
        }

        .producto-img {
          height: 180px;
        }

        .detalle-imagen {
          min-height: 250px;
        }

        .nosotros-img {
          height: 250px;
        }
      }
