 :root {
     --primary-orange: #FF5722;
     --primary-red: #C91619;
     --dark-red: #B20710;
     --dark-bg: #101010;
     --light-bg: #FFFFFF;
     --light-text: #F5F5F5;
     --dark-text: #121212;
     --muted-text-dark: #AAAAAA;
     --muted-text-light: #555555;
     --border-color-dark: rgba(255, 255, 255, 0.1);
     --border-color-light: #E0E0E0;
     --glow: 0 0 20px rgba(255, 87, 34, 0.6), 0 0 40px rgba(255, 87, 34, 0.3);
     --animation-speed: 0.9s;
     --whatsapp-green: #25D366;
     --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     --card-shadow-hover: 0 20px 50px rgba(201, 22, 25, 0.15);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     height: 100%;
     font-family: 'Inter', sans-serif;
     color: var(--light-text);
     background-color: var(--dark-bg);
     text-rendering: optimizeLegibility;
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
     /* Para un scroll suave al hacer click en los links */
 }

 .logo img {
     height: 50px !important;
 }

 /* cuando aparece */
 .logo.visible {
     opacity: 1;
     transform: translateY(0);
 }


 /* --- SCROLLBAR PERSONALIZADO --- */
 ::-webkit-scrollbar {
     width: 8px;
     height: 8px;
 }

 ::-webkit-scrollbar-track {
     background: #202020;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary-red);
     border-radius: 10px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: var(--dark-red);
 }

 /* --- PRELOADER --- */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
     z-index: 10000;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: opacity 1.8s ease-out 1.5s, visibility 1.8s ease-out 1.5s;
 }

 #preloader.hidden {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     display: none;
     /* Fallback fuerte */
 }

 #animated-logo {
     width: 90%;
     max-width: 600px;
 }

 #animated-logo text {
     font-size: 80px;
     font-weight: 900;
     stroke: var(--light-text);
     stroke-width: 1.5;
     fill: transparent;
     stroke-dasharray: 2000;
     stroke-dashoffset: 2000;
     animation: draw-and-fill-preloader 3.5s ease-in-out forwards;
 }

 #animated-logo .logo-border {
     stroke: var(--light-text);
     stroke-width: 2;
     fill: transparent;
     stroke-dasharray: 2500;
     stroke-dashoffset: 2500;
     animation: draw-border-preloader 3.0s ease-in-out forwards;
 }

 @keyframes draw-border-preloader {
     to {
         stroke-dashoffset: 0;
     }
 }

 @keyframes draw-and-fill-preloader {
     to {
         stroke-dashoffset: 0;
         fill: var(--light-text);
     }
 }

 /* --- WHATSAPP FLOTANTE --- */
 #whatsapp-flotante {
     position: fixed;
     bottom: 25px;
     left: 25px;
     z-index: 1001;
     width: 60px;
     height: 60px;
     background-color: var(--whatsapp-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease;
     animation: pulse-whatsapp 2s infinite;
     text-decoration: none;
 }

 #whatsapp-flotante:hover {
     transform: scale(1.1);
     animation: none;
 }

 #whatsapp-flotante i {
     font-size: 32px;
     color: white;
 }

 @keyframes pulse-whatsapp {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

 /* --- ESTRUCTURA Y NAVEGACIÓN DE PÁGINA --- */
 #fullpage-container {
     height: 100%;
     scroll-snap-type: y mandatory;
     overflow-y: scroll;
     scroll-behavior: smooth;
 }

 .page {
     position: relative;
     width: 100%;
     min-height: 100vh;
     height: auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: clamp(80px, 10vh, 120px) 5% 8vh 5%;
     text-align: center;
     overflow: visible;
     scroll-snap-align: start;
     scroll-snap-stop: always;
 }

 .page-content {
     max-width: 1600px;
     width: 100%;
     position: relative;
     z-index: 2;
     margin: 0 auto;
 }

 /* --- MENÚ DE NAVEGACIÓN LATERAL (DESKTOP) --- */
 #page-nav {
     display: none;
 }

 @media (min-width: 1025px) {

     html,
     body {
         overflow: hidden;
     }

     #fullpage-container {
         overflow-y: auto;
         height: 100vh;
     }
 }

 /* --- PREMIUM SPLIT LAYOUT (EDITORIAL STYLE) --- */
 .premium-split-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
     text-align: left;
     width: 100%;
     margin-top: 30px;
 }

 .split-content {
     position: relative;
     padding-top: 20px;
 }

 .content-sticky-wrapper {
     position: sticky;
     top: 15vh;
     padding-right: 20px;
 }

 .premium-split-layout h2 {
     font-size: clamp(2rem, 3vw, 2.8rem);
     /* Reduced for 13" screens */
     line-height: 1.1;
     margin-bottom: 25px;
     color: var(--dark-text);
     font-weight: 800;
 }

 .premium-split-layout .subtitle {
     font-size: 1rem;
     /* Slightly smaller */
     color: #555;
     line-height: 1.6;
     max-width: 95%;
     font-weight: 400;
 }

 /* Nosotros Vertical Stack */
 .about-us-features-vertical {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 /* Beneficios 2-Col Grid */
 .benefits-grid-2col {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
 }

 /* Mobile / Tablet Responsive */
 @media (max-width: 1024px) {
     .premium-split-layout {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .content-sticky-wrapper {
         position: static;
         padding-right: 0;
         text-align: center;
         margin-bottom: 20px;
     }

     .premium-split-layout h2,
     .premium-split-layout .subtitle {
         text-align: center;
         max-width: 100%;
         padding: 0 15px;
         /* Added mobile padding */
     }

     .premium-split-layout {
         gap: 60px;
         /* Increased gap for better separation */
     }

     .benefits-grid-2col {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .benefits-grid-2col {
         grid-template-columns: 1fr;
     }
 }

 /* --- DISTINCTIVE SECTIONS STYLING (THE REINVENTION V2) --- */

 /* GLOBAL: Title Size Adjustment */
 .premium-split-layout h2 {
     font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
     /* Reduced from 3.5rem */
     line-height: 1.1;
     margin-bottom: 25px;
     color: var(--dark-text);
     font-weight: 800;
 }

 /* NOSOTROS: Powerful Redesign */
 #nosotros {
     background-color: #ffffff;
     background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
     background-size: 30px 30px;
     color: var(--dark-text);
     padding: 120px 0 !important;
     justify-content: flex-start !important;
 }

 .about-impact-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .about-impact-header h2 {
     font-size: clamp(2.2rem, 4.5vw, 3.2rem) !important;
     background: linear-gradient(to right, #111 20%, var(--primary-red) 100%);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
     font-weight: 800;
 }

 .about-premium-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     max-width: 1100px;
     margin: 0 auto 50px auto;
 }

 .about-footer-description {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
 }

 .about-footer-description p {
     font-size: 1.1rem;
     color: #555;
     line-height: 1.6;
     font-weight: 400;
 }

 @media (max-width: 1024px) {
     .about-premium-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .about-impact-header h2 {
         font-size: 2rem !important;
     }
 }

 @media (max-width: 768px) {
     .about-premium-grid {
         grid-template-columns: 1fr;
     }

     #nosotros .page-content {
         padding: 80px 20px;
     }
 }

 /* BENEFICIOS: Interactive Accordion + Visuals */
 .benefits-interactive-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
 }

 .benefit-accordion-item {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.06);
     border-radius: 12px;
     padding: 0 25px;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     overflow: hidden;
     position: relative;
     /* Initial State */
     max-height: 85px;
     /* Adjust based on header height */
 }

 .benefit-accordion-item.active {
     background: #fff;
     border-color: rgba(227, 6, 19, 0.2);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     max-height: 300px;
     /* Allow expansion */
 }

 .accordion-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 22px 0;
     width: 100%;
 }

 .accordion-header .icon i {
     font-size: 1.8rem;
     color: #333;
     transition: color 0.3s ease;
     display: flex;
     align-items: center;
 }

 .accordion-header h3 {
     flex-grow: 1;
     margin: 0;
     margin-left: 20px;
     font-size: 1.2rem;
     font-weight: 700;
     color: #333;
     transition: color 0.3s ease;
 }

 .accordion-arrow {
     color: #ccc;
     font-size: 1.5rem;
     transition: transform 0.4s ease, color 0.3s ease;
     transform: rotate(0deg);
 }

 .benefit-accordion-item.active .accordion-arrow {
     transform: rotate(180deg);
 }

 .accordion-content {
     opacity: 0;
     transform: translateY(-10px);
     transition: all 0.4s ease;
     padding-bottom: 0;
     visibility: hidden;
 }

 .benefit-accordion-item.active .accordion-content {
     opacity: 1;
     transform: translateY(0);
     padding-bottom: 25px;
     visibility: visible;
 }

 .accordion-content p {
     margin: 0;
     padding-left: 45px;
     color: #666;
     font-size: 0.95rem;
     line-height: 1.6;
 }

 /* Hover/Active States Highlight */
 .benefit-accordion-item:hover .accordion-header .icon i,
 .benefit-accordion-item.active .accordion-header .icon i,
 .benefit-accordion-item:hover .accordion-header h3,
 .benefit-accordion-item.active .accordion-header h3,
 .benefit-accordion-item:hover .accordion-arrow,
 .benefit-accordion-item.active .accordion-arrow {
     color: var(--primary-red);
 }

 /* Beneficios Image Support */
 .beneficios-visual {
     margin-top: 15px;
     margin-bottom: 25px;
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     width: 100%;
     min-height: 250px;
     /* Ensure enough space for text */
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .beneficios-visual img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 1;
     transition: transform 0.6s ease;
 }

 .beneficios-visual:hover img {
     transform: scale(1.05);
 }

 .beneficios-text-overlay {
     position: relative;
     z-index: 2;
     padding: 40px;
     text-align: center;
     color: #fff;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
     /* Gradient for text readability at bottom */
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     /* Text at bottom */
     align-items: center;
     padding-bottom: 60px;
 }

 .beneficios-text-overlay h2 {
     color: #fff;
     margin-bottom: 15px;
     font-size: clamp(1.8rem, 3vw, 2.5rem);
 }

 .beneficios-text-overlay .subtitle {
     color: #ffffff !important;
     opacity: 1 !important;
     margin: 0;
     max-width: 90%;
     font-weight: 500;
 }



 /* Ensure Beneficios layout stability: Fixed Height + Sticky */
 #beneficios .premium-split-layout {
     align-items: stretch;
     /* Stretch needed for sticky track! */
 }

 #beneficios .split-content {
     height: auto;
     /* Will auto-fill the stretch */
     display: block;
 }

 #beneficios .content-sticky-wrapper {
     width: 100%;
     height: auto;
     position: sticky;
     top: 100px;
     /* Sticky offset */
 }

 /* Fixed visual height */
 #beneficios .beneficios-visual {
     height: 550px;
     /* Fixed height! Does not grow. */
     min-height: 550px;
     margin: 0;
 }

 @media (max-width: 1024px) {
     .beneficios-visual {
         display: none;
         /* Hide illustrative image on mobile to save space */
     }
 }



 .benefits-grid-2col .benefit-item h3 {
     color: #ffffff !important;
     font-size: 1.75rem;
     margin-bottom: 12px;
     font-weight: 800;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .benefits-grid-2col .benefit-item p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1.05rem;
     line-height: 1.6;
     font-weight: 400;
 }

 .benefits-grid-2col .benefit-item .icon {
     font-size: 3.5rem;
     margin-bottom: 30px;
     color: #ffffff;
     display: block;
     filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
     transition: transform 0.5s ease;
 }

 .benefits-grid-2col .benefit-item:hover .icon {
     transform: scale(1.1) translateZ(20px);
 }

 /* Dark Text override explicitly for Nosotros context if needed */
 #nosotros .premium-split-layout h2 {
     color: #000;
 }

 #nosotros .premium-split-layout .subtitle {
     color: #444;
 }

 @media (min-width: 1025px) {
     #page-nav {
         display: block;
         position: fixed;
         top: 50%;
         right: 30px;
         transform: translateY(-50%);
         z-index: 100;
     }

     #page-nav ul {
         list-style: none;
         padding: 0;
         margin: 0;
         display: flex;
         flex-direction: column;
         align-items: flex-end;
     }

     #page-nav li {
         margin: 10px 0;
     }

     #page-nav a {
         display: flex;
         align-items: center;
         text-decoration: none;
         color: var(--muted-text-dark);
         transition: color 0.3s;
     }

     #page-nav a:hover,
     #page-nav li.active a {
         color: var(--light-text);
     }

     #page-nav .nav-label {
         font-size: 0.8rem;
         font-weight: bold;
         text-transform: uppercase;
         margin-right: 15px;
         opacity: 0;
         transition: opacity 0.4s ease;
         max-width: 0;
         overflow: hidden;
         white-space: nowrap;
     }

     #page-nav a:hover .nav-label,
     #page-nav li.active a .nav-label {
         opacity: 1;
         max-width: 100px;
     }

     #page-nav .dot {
         width: 12px;
         height: 12px;
         border-radius: 50%;
         transition: all 0.3s;
         border: 2px solid var(--muted-text-dark);
         flex-shrink: 0;
     }

     #page-nav li.active a .dot {
         background-color: var(--primary-orange);
         border-color: var(--primary-orange);
         transform: scale(1.3);
     }

     body.on-light-bg #page-nav a,
     body.on-light-bg #page-nav li.active a {
         color: var(--dark-text);
     }

     body.on-light-bg #page-nav .dot {
         border-color: var(--muted-text-light);
     }

     body.on-light-bg #page-nav li.active a .dot {
         background-color: var(--primary-red);
         border-color: var(--primary-red);
     }
 }

 /* --- ICONOS --- */
 .icon {
     font-size: 24px;
 }

 .feature-icon,
 .benefit-item .icon,
 .spec-item .icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .feature-icon i {
     font-size: 40px;
 }

 .benefit-item .icon i {
     font-size: 48px;
 }

 .benefits-list i {
     font-size: 20px;
     color: var(--primary-red);
     flex-shrink: 0;
 }

 .testimonial-nav i {
     color: white;
     font-size: 24px;
 }

 .discover-arrow i {
     font-size: 24px;
 }

 /* --- ANIMACIONES DE ENTRADA --- */
 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .page.active .reveal {
     opacity: 1;
     transform: translateY(0);
 }

 .h2-animate span {
     opacity: 0;
     transform: translateY(100%);
     display: inline-block;
     transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2, 1, 0.8, 1);
 }

 .page.active .h2-animate span {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* --- ESTILOS GENERALES Y ANTI-CORTE DE TEXTO (TIPOGRAFÍA AJUSTADA) --- */
 ul {
     list-style: none;
     padding: 0;
 }

 h2,
 h3,
 p {
     overflow-wrap: break-word;
     word-wrap: break-word;
     hyphens: auto;
     letter-spacing: 0.3px;
 }

 h2 {
     font-family: 'Exo 2', sans-serif;
     font-size: clamp(2.2rem, 4vw, 3.6rem);
     text-transform: uppercase;
     margin-bottom: 20px;
     font-weight: 800;
     line-height: 1.15;
     letter-spacing: 0.5px;
 }

 h3 {
     font-family: 'Exo 2', sans-serif;
     font-weight: 700;
 }

 p.subtitle {
     font-size: clamp(1rem, 1.3vw, 1.2rem);
     line-height: 1.8;
     max-width: 800px;
     margin: 20px auto 40px auto;
     letter-spacing: 0.4px;
     opacity: 0.95;
 }

 .highlight {
     color: var(--primary-red);
     text-shadow: 0 0 20px rgba(201, 22, 25, 0.2);
 }

 .highlight-red {
     color: var(--primary-red);
 }

 /* --- BOTONES --- */
 /* Base */
 .cta-button {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     position: relative;
     font-family: 'Exo 2', sans-serif;
     font-size: 1.1rem;
     font-weight: 700;
     padding: 18px 40px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     text-decoration: none;
     border-radius: 5px;
     border: none;
     cursor: pointer;
 }

 /* --- BOTÓN ROJO --- */
 .cta-button.red {
     background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
     color: white;
     transform-origin: center;
     z-index: 3;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     font-family: 'Exo 2', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     padding: 16px 32px;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 8px;
     border: none;
     box-shadow: 0 4px 16px rgba(201, 22, 25, 0.3),
         0 2px 8px rgba(0, 0, 0, 0.1);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     letter-spacing: 0.8px;
 }

 .cta-button.red:hover {
     transform: translateY(-3px) scale(1.02);
     box-shadow: 0 8px 24px rgba(201, 22, 25, 0.4),
         0 4px 12px rgba(0, 0, 0, 0.15);
 }

 /* --- BOTÓN BLANCO --- */
 .cta-button.white {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 2px solid var(--primary-red);
     color: var(--primary-red);
     transform-origin: center;
     z-index: 3;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     font-family: 'Exo 2', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     padding: 16px 32px;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 8px;
     box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2),
         0 2px 8px rgba(0, 0, 0, 0.05);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     letter-spacing: 0.8px;
 }

 .cta-button.white:hover {
     background: rgba(255, 255, 255, 1);
     color: var(--dark-red);
     transform: translateY(-3px) scale(1.02);
     box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3),
         0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Tamaño pequeño */
 .cta-button.small {
     padding: 12px 28px;
     font-size: 0.9rem;
 }



 @keyframes pulse-glow-red {

     0%,
     100% {
         box-shadow: 0 0 5px 0px rgba(229, 9, 20, 0.4);
     }

     50% {
         box-shadow: 0 0 20px 5px rgba(229, 9, 20, 0.7);
     }
 }

 /* --- PAG 1: INTRO (VIDEO) --- */
 #inicio {
     background-color: #000;
 }

 #inicio .page-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .section-logo-img {
     max-width: 280px;
     height: auto;
     margin-bottom: 20px;
 }

 /* --- TIENDAS / PARTNERS SECTION (WHITE THEME) --- */
 #tiendas {
     background-color: #ffffff !important;
     color: var(--dark-text) !important;
 }

 #tiendas .h2-animate {
     color: var(--dark-text) !important;
 }

 #tiendas .subtitle {
     color: #444 !important;
 }

 #tiendas .partner-features li {
     color: var(--dark-text) !important;
 }

 #tiendas .premium-split-layout {
     gap: 80px;
 }

 .partner-visual-composition {
     position: relative;
     width: 100%;
     max-width: 500px;
     margin: 0 auto;
     z-index: 1;
     display: flex;
     align-items: flex-end;
     justify-content: center;
 }

 .visual-backdrop {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 90%;
     height: 90%;
     background: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
     border-radius: 50%;
     filter: blur(40px);
     z-index: -1;
 }

 .chef-img {
     width: 100%;
     height: auto;
 }

 .partner-inline-logo {
     display: block;
     margin: 20px 0 30px 0;
     max-width: 200px;
 }

 .partner-inline-logo img {
     width: 100%;
     height: auto;
 }

 .section-overline {
     display: block;
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 2px;
     color: var(--primary-red);
     margin-bottom: 15px;
     text-transform: uppercase;
 }

 .partner-features {
     list-style: none;
     margin: 30px 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .partner-features li {
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .partner-features li i {
     color: var(--primary-red);
     font-size: 1.4rem;
 }

 /* Mobile adjustments for Tiendas */
 @media (max-width: 1024px) {
     #tiendas .premium-split-layout {
         display: flex;
         flex-direction: column-reverse;
         gap: 50px;
     }

     .partner-inline-logo {
         margin: 15px auto 25px auto;
         max-width: 160px;
     }

     #tiendas .partner-content {
         text-align: center;
     }

     #tiendas .partner-features {
         align-items: center;
     }
 }

 #intro-video-wrapper {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: 0;
 }

 #intro-video-wrapper::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(0, 0, 0, 0.65) 0%,
             rgba(0, 0, 0, 0.25) 50%,
             rgba(0, 0, 0, 0.7) 100%);
     z-index: 1;
     animation: pulse-overlay 8s ease-in-out infinite;
 }

 @keyframes pulse-overlay {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.95;
     }
 }

 #intro-video {
     object-fit: cover;
     width: 100%;
     height: 100%;
     transform: scale(1.1);
     /* Start slightly zoomed for the Ken Burns effect */
     animation: ken-burns-zoom 20s ease-in-out infinite alternate;
 }

 @keyframes ken-burns-zoom {
     0% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }

 .discover-down {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.75rem;
     letter-spacing: 4px;
     text-transform: uppercase;
     font-weight: 500;
     z-index: 3;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .discover-down:hover {
     transform: translateX(-50%) translateY(-5px);
     color: rgba(255, 255, 255, 1);
 }

 .discover-arrow {
     width: 36px;
     height: 36px;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: bounce-arrow 2.5s infinite ease-in-out, pulse-glow 2s infinite ease-in-out;
     backdrop-filter: blur(10px);
     background: rgba(255, 255, 255, 0.1);
     box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
         inset 0 0 10px rgba(255, 255, 255, 0.1);
 }

 @keyframes pulse-glow {

     0%,
     100% {
         box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
             inset 0 0 10px rgba(255, 255, 255, 0.1);
     }

     50% {
         box-shadow: 0 0 40px rgba(255, 255, 255, 0.6),
             inset 0 0 15px rgba(255, 255, 255, 0.2);
     }
 }

 @keyframes bounce-arrow {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-8px);
     }

     60% {
         transform: translateY(-4px);
     }
 }

 /* --- PAG 2: NOSOTROS --- */
 #nosotros {
     background-color: #fcfcfc;
     color: var(--dark-text);
     position: relative;
     overflow: hidden;
     padding: 120px 0;
     z-index: 1;
     text-align: center;
 }

 #nosotros::before {
     content: '';
     display: block;
     position: absolute;
     top: -15%;
     right: -10%;
     width: 700px;
     height: 700px;
     background: radial-gradient(circle, rgba(255, 87, 34, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
     z-index: -1;
     pointer-events: none;
 }

 #nosotros::after {
     content: '';
     display: block;
     position: absolute;
     bottom: -10%;
     left: -5%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(201, 22, 25, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
     z-index: -1;
     pointer-events: none;
 }

 .about-us-features {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     margin-top: 60px;
     text-align: left;
 }

 @media (max-width: 1024px) and (min-width: 601px) {
     .about-us-features {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }
 }

 @media (max-width: 600px) {
     .about-us-features {
         grid-template-columns: 1fr;
         gap: 30px;
     }
 }

 .feature-card {
     padding: 45px 40px;
     position: relative;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     background: #ffffff;
     border-radius: 24px;
     border: 1px solid rgba(0, 0, 0, 0.03);
     box-shadow: var(--card-shadow);
     overflow: hidden;
     z-index: 1;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     height: 100%;
 }

 .feature-card:hover {
     transform: translateY(-12px);
     box-shadow: var(--card-shadow-hover);
     background-color: var(--primary-red);
     border-color: var(--primary-red);
 }

 .feature-icon {
     font-size: 42px;
     margin-bottom: 25px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 72px;
     height: 72px;
     border-radius: 20px;
     background: rgba(255, 87, 34, 0.06);
     color: var(--primary-orange);
     transition: all 0.4s ease;
     -webkit-text-fill-color: initial;
     background-clip: border-box;
 }

 .feature-card:hover .feature-icon {
     transform: scale(1.1) rotate(5deg);
     background: rgba(255, 255, 255, 0.2);
     color: #ffffff;
     box-shadow: none;
 }

 .feature-card h3 {
     font-family: 'Exo 2', sans-serif;
     font-weight: 800;
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: var(--dark-text);
     letter-spacing: -0.5px;
     transition: color 0.3s ease;
 }

 .feature-card p {
     font-size: 1.05rem;
     color: #666;
     line-height: 1.65;
     transition: color 0.4s ease;
     margin: 0;
 }

 .feature-card:hover h3 {
     color: #ffffff;
 }

 .feature-card:hover p {
     color: rgba(255, 255, 255, 0.9);
 }

 /* ================================================= */
 /* --- PAG 3: PRODUCTOS (DISEÑO REFORZADO 100VH) --- */
 /* ================================================= */
 #productos {
     background-color: #f8f8f8;
     color: var(--dark-text);
     min-height: 100vh;
     height: auto;
 }

 #productos .page-content {
     display: flex;
     flex-direction: column;
     height: 100%;
     width: 100%;
 }

 /* ========================================= */
 /* --- SECCIÓN PRODUCTOS: CONCEPTO ABIERTO --- */
 /* ========================================= */

 #productos .page-content {
     display: flex;
     flex-direction: column;
 }

 .productos-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 25px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     padding-bottom: 15px;
     width: 100%;
 }

 .productos-header h2 {
     display: none;
 }

 #productos-categories-list-desktop {
     display: flex;
     gap: 35px;
 }

 .category-card {
     padding: 8px 0;
     background: none;
     border: none;
     border-bottom: 3px solid transparent;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .category-card .category-card-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 0;
 }

 .category-card .category-card-header i {
     font-size: 22px;
     color: #AAAAAA;
     transition: color 0.3s ease;
 }

 .category-card h4 {
     font-size: 0.80rem;
     font-weight: 700;
     color: #888888;
     margin: 0;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     transition: color 0.3s ease;
 }

 .category-card p {
     display: none;
 }

 .category-card:hover h4,
 .category-card.active h4 {
     color: #222222;
 }

 .category-card:hover i,
 .category-card.active i {
     color: var(--primary-red);
 }

 .category-card.active {
     border-bottom-color: var(--primary-red);
 }

 /* --- LAYOUT ABIERTO --- */
 .productos-container-desktop {
     display: grid;
     grid-template-columns: 140px 1fr;
     gap: 40px;
     height: auto;
     min-height: 650px;
     padding: 10px 0;
     margin-top: 10px;
 }

 #product-gallery-side {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     height: 100%;
     max-height: 600px;
 }

 /* --- DISPLAY AREA --- */
 #productos-main-panel-desktop {
     display: block;
     height: 100%;
 }

 #product-display-wrapper {
     display: grid;
     grid-template-columns: 35% 1fr;
     gap: 40px;
     background: #fff;
     border-radius: 35px;
     padding: 40px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
     border: 1px solid rgba(0, 0, 0, 0.02);
     height: 100%;
     min-height: 550px;
     max-height: 600px;
     overflow: hidden;
     transition: all 0.4s ease;
 }

 #product-display-wrapper:hover {
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
 }

 .display-image-container {
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #fcfcfc;
     border-radius: 20px;
     padding: 15px;
     max-height: 450px;
 }

 .display-image-container img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
 }

 .display-details-container {
     text-align: left;
     overflow-y: auto;
     padding-right: 20px;
     padding-left: 10px;
     padding-bottom: 40px;
     position: relative;
 }

 .display-details-container::-webkit-scrollbar {
     width: 6px;
 }

 .display-details-container::-webkit-scrollbar-track {
     background: #f0f0f0;
     border-radius: 10px;
 }

 .display-details-container::-webkit-scrollbar-thumb {
     background: #ccc;
     border-radius: 10px;
 }

 .display-details-container h3 {
     font-size: clamp(1.8rem, 2.2vw, 2.2rem);
     margin-bottom: 15px;
     color: var(--dark-text);
 }

 .display-details-container .description {
     margin: 15px 0 25px;
     line-height: 1.6;
     color: var(--muted-text-light);
     font-size: 1.05rem;
     margin-bottom: 25px;
 }

 .product-price {
     font-size: 1.1rem;
     font-weight: bold;
     color: var(--primary-red);
     margin: 15px 0 20px;
 }

 .product-tabs {
     display: flex;
     border-bottom: 1px solid var(--border-color-light);
     margin: 25px 0 20px;
 }

 .tab-btn {
     background: none;
     border: none;
     padding: 12px 0;
     margin-right: 25px;
     font-size: 1rem;
     font-weight: 700;
     color: #AAAAAA;
     border-bottom: 3px solid transparent;
     transition: all 0.3s;
     cursor: pointer;
 }

 .tab-btn.active {
     color: var(--primary-red);
     border-bottom-color: var(--primary-red);
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
     animation: fadeIn 0.5s;
 }

 .specs-list {
     list-style: none;
     padding: 0;
 }

 .spec-item {
     display: flex;
     align-items: center;
     padding: 14px 0;
     border-bottom: 1px solid var(--border-color-light);
 }

 .spec-item:last-child {
     border-bottom: none;
 }

 .spec-item i {
     color: var(--primary-red);
     margin-right: 18px;
     font-size: 24px;
     flex-shrink: 0;
     width: 30px;
     text-align: center;
 }

 .spec-item .spec-key {
     font-weight: bold;
     color: #333333;
     margin-right: 8px;
 }

 .features-list {
     padding-left: 20px;
     list-style: disc;
 }

 .features-list li {
     margin-bottom: 8px;
     line-height: 1.6;
 }

 .scroll-indicator {
     position: absolute;
     bottom: 10px;
     left: 50%;
     transform: translateX(-50%);
     color: var(--primary-red);
     font-size: 36px;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
 }

 .scroll-indicator.visible {
     opacity: 1;
     animation: bounceDown 2s infinite;
 }

 #product-carousel-wrapper {
     flex: 1;
     width: 100%;
     overflow: hidden;
     position: relative;
     background: rgba(255, 255, 255, 0.4);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 20px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     padding: 20px 10px;
     display: flex;
     flex-direction: column;
 }

 #product-carousel-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     height: 100%;
     overflow-y: auto;
     overflow-x: hidden;
     scroll-behavior: smooth;
     scrollbar-width: none;
     -ms-overflow-style: none;
     align-items: center;
     padding: 5px 0;
 }

 #product-carousel-list::-webkit-scrollbar {
     display: none;
 }

 .carousel-item {
     flex-shrink: 0;
     width: 90px;
     height: 90px;
     background: #fff;
     border-radius: 12px;
     border: 2px solid var(--border-color-light);
     padding: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
     cursor: pointer;
 }

 .carousel-item.active {
     border-color: var(--primary-red);
     box-shadow: 0 0 15px rgba(229, 9, 20, 0.15);
     transform: scale(1.05);
 }

 .carousel-item img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
 }

 .carousel-nav-btn {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: #fff;
     border: 1px solid rgba(0, 0, 0, 0.05);
     color: var(--primary-red);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .carousel-nav-btn:hover {
     background: var(--primary-red);
     color: #fff;
     transform: scale(1.1);
 }

 /* Legacy styles removed */

 /* --- PAG 4: BENEFICIOS --- */
 #beneficios {
     background-color: #f8f9fa;
     color: var(--dark-text);
     padding: 120px 0 !important;
     position: relative;
     overflow: visible;
     justify-content: center !important;
 }

 #beneficios h2::before {
     display: none;
 }

 #beneficios::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
     background-size: 24px 24px;
     z-index: 0;
 }

 #beneficios .page-content {
     position: relative;
     z-index: 2;

 }

 #beneficios .subtitle {
     color: #666;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }


 /* --- PAG: TIENDAS (PARTNER SPOTLIGHT) --- */
 /* --- PAG: TIENDAS (EXPANSIVE LAYOUT) --- */
 #tiendas {
     background-color: #ffffff;
     background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
     background-size: 50px 50px;
     position: relative;
     overflow: visible;
     padding: 120px 0 !important;
 }

 .stores-open-layout {
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 100px;
     align-items: start;
     text-align: left;
 }

 .stores-branding-side {
     position: relative;
 }

 .stores-branding-side h2 {
     font-size: clamp(2rem, 4vw, 3rem) !important;
     margin-bottom: 20px;
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -1px;
 }

 .stores-branding-side .subtitle {
     font-size: 1.25rem !important;
     color: #555;
     margin-bottom: 40px;
     max-width: 95%;
 }

 /* Mini features under subtitle */
 .stores-features-inline {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .store-feature-item-mini {
     display: flex;
     gap: 15px;
     align-items: start;
 }

 .store-feature-item-mini i {
     font-size: 24px;
     color: var(--primary-red);
     margin-top: 2px;
 }

 .store-feature-item-mini h4 {
     font-size: 1.05rem;
     margin-bottom: 5px;
     font-weight: 800;
     color: var(--dark-text);
 }

 .store-feature-item-mini p {
     font-size: 0.9rem;
     color: #666;
     margin: 0;
     line-height: 1.4;
 }

 /* --- Main Partner Spotlight (Right Side) --- */
 .stores-partner-side {
     display: flex;
     align-items: center;
 }

 .main-partner-spotlight {
     background: #fdfdfd;
     padding: 40px;
     border-radius: 30px;
     border: 1px solid rgba(0, 0, 0, 0.06);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
     position: relative;
     transition: all 0.4s ease;
     width: 100%;
 }

 .main-partner-spotlight:hover {
     border-color: var(--primary-red);
     box-shadow: 0 30px 60px rgba(227, 6, 19, 0.08);
 }

 .partner-card-header {
     display: flex;
     align-items: center;
     gap: 25px;
     margin-bottom: 25px;
 }

 .partner-logo-box {
     background: #fff;
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .partner-logo-box img {
     height: 70px;
     width: auto;
 }

 .partner-title-group h3 {
     font-size: 1.8rem;
     margin: 0;
     color: var(--dark-text);
     font-weight: 800;
 }

 .partner-title-group p {
     margin: 0;
     font-size: 0.85rem;
     color: var(--primary-red);
     font-weight: 700;
     letter-spacing: 1px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .partner-description {
     color: #666;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .partner-badges-row {
     display: flex;
     gap: 20px;
 }

 .partner-badges-row span {
     font-size: 0.85rem;
     font-weight: 700;
     color: #444;
     background: rgba(0, 0, 0, 0.04);
     padding: 8px 15px;
     border-radius: 50px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .partner-badges-row span i {
     color: var(--primary-red);
 }

 .partner-action-inline {
     margin-top: 30px;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     padding-top: 25px;
 }

 /* Small button variant */
 .cta-button.small {
     padding: 10px 24px !important;
     font-size: 0.85rem !important;
     border-radius: 12px !important;
 }

 .cta-button.red-glow {
     background: var(--primary-red);
     color: #fff;
     padding: 18px 35px;
     border-radius: 15px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 10px 30px rgba(201, 22, 25, 0.4);
     transition: all 0.4s ease;
     display: inline-flex;
     align-items: center;
     gap: 12px;
 }

 .cta-button.red-glow:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(201, 22, 25, 0.6);
     background: #fff;
     color: var(--primary-red);
 }

 @media (max-width: 1024px) {
     .partner-grid {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 40px;
     }

     .partner-details {
         text-align: center;
     }

     .partner-perks {
         justify-content: center;
     }
 }


 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 60px;
 }

 @media (max-width: 1024px) {
     .benefits-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .benefits-grid {
         grid-template-columns: 1fr;
     }
 }

 .benefit-item {
     background: #ffffff;
     padding: 50px 35px;
     border-radius: 20px;
     text-align: center;
     border: 1px solid rgba(0, 0, 0, 0.04);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     height: 100%;
 }

 .benefit-item::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
     transform: scaleX(0);
     transform-origin: center;
     transition: transform 0.4s ease;
 }

 .benefit-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border-color: transparent;
 }

 .benefit-item:hover::after {
     transform: scaleX(1);
 }

 .benefit-item i {
     font-size: 56px;
     margin-bottom: 25px;
     display: inline-block;
     background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
     filter: drop-shadow(0 5px 15px rgba(201, 22, 25, 0.2));
 }

 .benefit-item:hover i {
     transform: scale(1.15) rotate(-5deg);
     filter: drop-shadow(0 8px 20px rgba(201, 22, 25, 0.3));
 }

 .benefit-item h3 {
     font-family: 'Exo 2', sans-serif;
     font-weight: 800;
     font-size: 1.4rem;
     margin-bottom: 15px;
     color: var(--dark-text);
     letter-spacing: 0.5px;
 }

 .benefit-item p {
     font-size: 1.05rem;
     color: var(--muted-text-light);
     line-height: 1.6;
     margin: 0;
 }

 #inicio .section-logo-wrapper.reveal {
     transition-delay: 0.2s;
 }

 #inicio .h2-animate.reveal-simple {
     transition-delay: 0.5s;
 }

 #inicio .subtitle.reveal-simple {
     transition-delay: 0.8s;
 }

 /* Nosotros Sequential delays */
 #nosotros .h2-animate.reveal-simple {
     transition-delay: 0.2s;
 }

 #nosotros .subtitle.reveal-simple {
     transition-delay: 0.5s;
 }

 #nosotros .about-us-features.reveal-simple {
     transition-delay: 0.8s;
 }

 #inicio h2 {
     color: white;
     margin-bottom: 30px;
     font-size: clamp(3rem, 6vw, 4.5rem);
     font-weight: 800;
     line-height: .95;
     letter-spacing: -2px;
 }

 .reveal-simple {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
 }

 .reveal-simple.active {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes hero-reveal-up {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes hero-text-glow {

     0%,
     100% {
         text-shadow: 0 6px 24px rgba(0, 0, 0, 0.8),
             0 3px 12px rgba(0, 0, 0, 0.6),
             0 0 40px rgba(201, 22, 25, 0.3);
     }

     50% {
         text-shadow: 0 6px 24px rgba(0, 0, 0, 0.8),
             0 3px 12px rgba(0, 0, 0, 0.6),
             0 0 60px rgba(201, 22, 25, 0.5);
     }
 }

 #inicio .subtitle {
     color: rgba(255, 255, 255, 1);
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
     max-width: 900px;
     font-size: clamp(1.2rem, 1.8vw, 1.45rem);
     opacity: 0;
     animation: hero-reveal-up .8s ease-out forwards 0.8s;
 }

 #inicio .highlight {
     background: linear-gradient(135deg, #ff3333, var(--primary-red), var(--dark-red));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-shadow: none;
     filter: drop-shadow(0 3px 8px rgba(255, 51, 51, 0.5));
     animation: gradient-shift 4s ease infinite;
     background-size: 200% 200%;
 }

 @keyframes gradient-shift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 /* --- PAG 5: TESTIMONIOS --- */
 #emprendedor {
     color: var(--light-text);
     padding: 0;
     height: 100vh;
     overflow: hidden;
     position: relative;
 }

 .testimonial-slider-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .testimonial-slide-fullscreen {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 1.5s ease-in-out;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: left;
 }

 .testimonial-slide-fullscreen.active {
     opacity: 1;
     visibility: visible;
 }

 .testimonial-slide-fullscreen::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(2px);
     z-index: 1;
 }

 .testimonial-content-wrapper {
     z-index: 2;
     max-width: 950px;
     padding: 55px;
     display: flex;
     align-items: center;
     gap: 50px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     background: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
     position: relative;
     transition: all 0.4s ease;
 }

 .testimonial-content-wrapper:hover {
     background: rgba(0, 0, 0, 0.35);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.15);
 }

 .testimonial-avatar {
     flex-shrink: 0;
 }

 .testimonial-avatar img {
     width: 180px;
     height: 180px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid var(--primary-red);
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
 }

 .testimonial-quote {
     font-size: clamp(1.4rem, 1.8vw, 1.8rem);
     line-height: 1.5;
     font-weight: bold;
     margin-bottom: 25px;
     font-family: 'Exo 2', sans-serif;
 }

 .testimonial-client .name {
     font-size: 1.7rem;
     font-weight: 700;
 }

 .testimonial-client .business {
     color: var(--primary-red);
     font-weight: bold;
     font-size: 1.15rem;
 }

 .testimonial-nav {
     position: absolute;
     bottom: 50px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 3;
     display: flex;
     gap: 15px;
 }

 .testimonial-nav button {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     width: 50px;
     height: 50px;
     transition: all 0.3s;
     cursor: pointer;
 }

 .testimonial-nav button:hover {
     background: var(--primary-red);
 }

 .play-testimonial-btn {
     position: absolute;
     bottom: -30px;
     right: 50px;
     transform-origin: center;
     z-index: 3;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     font-family: 'Exo 2', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     padding: 16px 32px;
     color: var(--light-text);
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 5px;
     border: none;
     background: var(--primary-red);
     box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
     animation: pulse-play-btn 2.5s infinite;
     transition: all 0.3s ease;
 }

 .play-testimonial-btn:hover {
     background: var(--dark-red);
     transform: scale(1.05) translateY(-5px);
     animation: none;
 }

 .play-testimonial-btn i {
     font-size: 26px;
     color: white;
 }

 @keyframes pulse-play-btn {
     0% {
         box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(229, 9, 20, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
     }
 }

 /* --- VIDEO POPUP --- */
 #video-popup {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 10001;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.4s ease, visibility 0.4s ease;
     backdrop-filter: blur(10px);
 }

 #video-popup.show {
     opacity: 1;
     visibility: visible;
 }

 #video-popup-content {
     position: relative;
     width: 90%;
     max-width: 1100px;
     aspect-ratio: 16 / 9;
     transform: scale(0.8);
     transition: transform 0.4s ease;
 }

 #video-popup.show #video-popup-content {
     transform: scale(1);
 }

 #popup-video-embed {
     width: 100%;
     height: 100%;
 }

 #video-popup iframe {
     width: 100%;
     height: 100%;
     border: 2px solid var(--primary-red);
     border-radius: 10px;
 }

 #close-popup-btn {
     position: absolute;
     top: -50px;
     right: 0;
     background: var(--primary-red);
     color: white;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     font-size: 24px;
     cursor: pointer;
 }

 /* --- PAG 4: BENEFICIOS --- */
 #beneficios {
     background-color: #ffffff;
     color: var(--dark-text);
 }


 #beneficios .page-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 30px 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-height: 100vh;
 }

 .benefits-impact-header {
     text-align: center;
     margin-bottom: 10px;
 }

 .benefits-impact-header h2 {
     font-size: clamp(2rem, 4vw, 2.6rem) !important;
     margin-bottom: 12px;
 }

 .benefits-premium-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 20px;
 }

 .benefit-premium-card {
     background: #fff;
     padding: 30px 25px;
     border-radius: 20px;
     text-align: left;
     border: 1px solid rgba(0, 0, 0, 0.04);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
     transition: all 0.4s ease;
     position: relative;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .benefit-premium-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(227, 6, 19, 0.08);
     border-color: rgba(227, 6, 19, 0.1);
 }

 .card-icon-wrapper {
     width: 60px;
     height: 60px;
     background: #fdfdfd;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     transition: all 0.4s ease;
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .benefit-premium-card:hover .card-icon-wrapper {
     background: var(--primary-red);
     transform: scale(1.1);
     /* Only grow, no rotation */
 }

 .card-icon-wrapper i {
     font-size: 28px;
     color: var(--primary-red);
     transition: color 0.4s;
 }

 .benefit-premium-card:hover i {
     color: #fff;
 }

 .benefit-premium-card h3 {
     font-size: 1.25rem;
     font-weight: 800;
     color: #111;
     margin-bottom: 12px;
     line-height: 1.2;
 }

 .benefit-premium-card p {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.5;
 }

 .certificaciones-impact-section {
     background: #fdfdfd;
     border-radius: 30px;
     padding: 20px;
     text-align: center;
     border: 1px solid rgba(0, 0, 0, 0.03);
 }

 .cert-header {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin: 15px;
 }

 .cert-header i {
     font-size: 1.4rem;
     color: var(--primary-red);
 }

 .cert-header h3 {
     font-size: 1.4rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .cert-logos-wrapper {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 50px;
     align-items: center;
 }

 .cert-img-impact {
     height: 50px;
     filter: grayscale(1);
     opacity: 0.5;
     transition: all 0.4s;
 }

 .cert-img-impact:hover {
     filter: grayscale(0);
     opacity: 1;
     transform: scale(1.1);
 }

 /* --- PAG 6: KITCHEN MASTER ACADEMY (IMPACT GRID) --- */
 #tutoriales {
     background-color: #f8f9fa;
     color: var(--dark-text);
     position: relative;
     overflow: hidden;
 }

 #tutoriales .page-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-height: 100vh;
 }

 .academy-full-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .academy-full-header h2 {
     font-size: clamp(2rem, 4vw, 2.6rem) !important;
     margin-bottom: 10px;
 }

 .academy-grid-impact {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-bottom: 40px;
 }

 .academy-card {
     background: #fff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     border: 1px solid rgba(0, 0, 0, 0.03);
     cursor: pointer;
 }

 .academy-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .card-thumb {
     position: relative;
     width: 100%;
     aspect-ratio: 16/9;
     overflow: hidden;
 }

 .card-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .academy-card:hover .card-thumb img {
     transform: scale(1.1);
 }

 .play-indicator {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0.8);
     width: 60px;
     height: 60px;
     background: var(--primary-red);
     border-radius: 50%;
     color: #fff;
     font-size: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: all 0.3s ease;
     box-shadow: 0 0 20px rgba(227, 6, 19, 0.4);
 }

 .academy-card:hover .play-indicator {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
 }

 .card-body {
     padding: 20px;
     text-align: center;
 }

 .card-body h3 {
     font-size: 1.25rem;
     font-weight: 800;
     color: #111;
     margin-bottom: 8px;
 }

 .card-body p {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.4;
 }

 .academy-footer-resources {
     display: flex;
     justify-content: center;
     margin-top: 20px;
 }

 .resource-pill-group {
     display: flex;
     gap: 15px;
     background: #fff;
     padding: 8px;
     border-radius: 50px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(0, 0, 0, 0.03);
 }

 .resource-pill {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 20px;
     background: #f8f9fa;
     color: #333;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.9rem;
     transition: all 0.3s;
 }

 .resource-pill i {
     color: var(--primary-red);
     font-size: 1.2rem;
 }

 .resource-pill:hover {
     background: var(--primary-red);
     color: #fff;
     transform: translateY(-2px);
 }

 .resource-pill:hover i {
     color: #fff;
 }

 @media (max-width: 1024px) {
     #tutoriales .page-content {
         padding: 100px 20px 40px 20px;
         height: auto;
     }

     #beneficios .page-content {
         padding: 100px 20px 40px 20px;
         height: auto;
     }

     .academy-grid-impact {
         grid-template-columns: repeat(2, 1fr);
     }

     .benefits-premium-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .academy-grid-impact {
         grid-template-columns: 1fr;
     }

     .academy-full-header h2 {
         font-size: 1.8rem !important;
     }

     #tutoriales .page-content {
         padding: 60px 20px;
     }

     #beneficios .page-content {
         padding: 60px 20px;
     }

     .academy-player-container {
         padding: 15px;
         border-radius: 20px;
     }

     #video-player-info h3 {
         font-size: 1.5rem;
     }
 }

 @media (max-width: 600px) {
     .benefits-premium-grid {
         grid-template-columns: 1fr;
     }

     .benefits-impact-header h2 {
         font-size: 2rem !important;
     }

     .cert-logos-wrapper {
         gap: 30px;
     }

     .cert-img-impact {
         height: 40px;
     }
 }


 /* --- PAG: UNETE (HIGH IMPACT CTA) --- */
 #unete {
     background-color: #111;
     position: relative;
     overflow: hidden;
     padding: 100px 0;
 }

 #unete::before {
     content: '';
     position: absolute;
     width: 150%;
     height: 150%;
     top: -25%;
     left: -25%;
     background: radial-gradient(circle at center, rgba(227, 6, 19, 0.15) 0%, transparent 50%);
     z-index: 1;
 }

 .join-revolution-card {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1.5fr 1fr;
     background: #ffffff;
     border-radius: 40px;
     overflow: hidden;
     max-width: 1100px;
     margin: 0 auto;
     box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
 }

 .join-content {
     padding: 60px 80px;
     text-align: left;
     background: #ffffff;
 }

 .join-content .brand-icon img {
     height: 35px;
     margin-bottom: 30px;
     filter: brightness(0);
     /* Make black if needed or keep original */
     opacity: 0.9;
 }

 .join-content h2 {
     font-size: clamp(2rem, 5vw, 3rem) !important;
     color: #111 !important;
     margin-bottom: 20px;
     line-height: 1.1;
 }

 .join-content .subtitle {
     color: #555 !important;
     font-size: 1.05rem;
     margin-bottom: 40px;
     max-width: 100%;
 }

 .join-stats {
     background: var(--primary-red);
     padding: 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 40px;
     position: relative;
 }

 .stat-box {
     color: #fff;
     text-align: center;
 }

 .stat-num {
     display: block;
     font-size: 3rem;
     font-weight: 900;
     line-height: 1;
     margin-bottom: 5px;
     letter-spacing: -1px;
 }

 .stat-label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-weight: 700;
     opacity: 0.9;
 }

 .join-actions .cta-button.red-btn {
     background: var(--primary-red);
     color: #fff;
     padding: 18px 40px;
     font-size: 1rem;
     border-radius: 10px;
     box-shadow: 0 10px 20px rgba(201, 22, 25, 0.2);
 }

 .join-actions .cta-button.red-btn:hover {
     background: var(--dark-red);
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(201, 22, 25, 0.3);
 }

 @media (max-width: 1024px) {
     .join-revolution-card {
         grid-template-columns: 1fr;
     }

     .join-content {
         padding: 40px;
         text-align: center;
     }

     .join-stats {
         flex-direction: row;
         padding: 40px;
         flex-wrap: wrap;
         gap: 20px;
         justify-content: center;
     }

     .stat-num {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 600px) {
     .join-stats {
         flex-direction: column;
     }
 }

 /* === MENÚ MÓVIL === */
 #mobile-menu-toggle {
     display: none;
     position: fixed;
     top: 25px;
     right: 25px;
     z-index: 1002;
     background-color: var(--primary-red);
     color: white;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 10px;
     font-size: 28px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     justify-content: center;
     align-items: center;
     cursor: pointer;
 }

 #mobile-nav {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(10px);
     z-index: 10000;
     transform: translateX(-100%);
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 #mobile-nav.active {
     transform: translateX(0);
 }

 #mobile-menu-close {
     position: absolute;
     top: 25px;
     right: 25px;
     background: none;
     border: none;
     color: white;
     font-size: 36px;
     cursor: pointer;
 }

 #mobile-nav ul {
     list-style: none;
     padding: 0;
     text-align: center;
 }

 #mobile-nav li {
     margin: 25px 0;
 }

 #mobile-nav a {
     color: var(--light-text);
     text-decoration: none;
     font-family: 'Exo 2', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     text-transform: uppercase;
     transition: color 0.3s, text-shadow 0.3s;
 }

 #mobile-nav a:hover {
     color: var(--primary-orange);
     text-shadow: var(--glow);
 }

 /* --- RESPONSIVE DESIGN --- */
 @media (max-width: 1024px) {

     html,
     body {
         overflow-y: scroll;
         cursor: auto;
         scroll-snap-type: none;
     }

     #fullpage-container {
         height: auto;
         overflow-y: visible;
     }

     .page {
         height: auto;
         min-height: 100vh;
         padding: 120px 25px 80px 25px;
         overflow: visible;
     }

     #productos {
         height: auto;
     }

     #mobile-menu-toggle,
     #mobile-nav {
         display: flex;
     }

     .productos-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
         text-align: left;
     }

     #productos .productos-header {
         padding: 0;
     }

     #tutoriales h2,
     #tutoriales p.subtitle {
         padding: 0;
         text-align: left;
     }

     .h2-animate {
         line-height: 1.2;
     }



     .productos-container-desktop {
         display: none;
     }

     /* Productos Móvil */
     #product-categories {
         display: flex;
         flex-wrap: nowrap;
         overflow-x: auto;
         gap: 10px;
         justify-content: flex-start;
         -webkit-overflow-scrolling: touch;
         padding: 0 0 15px 0;
         margin: 0 0 30px 0;
     }

     #product-categories::-webkit-scrollbar {
         height: 5px;
     }

     #product-categories::-webkit-scrollbar-track {
         background: #e0e0e0;
         border-radius: 10px;
     }

     #product-categories::-webkit-scrollbar-thumb {
         background: var(--primary-red);
         border-radius: 10px;
     }

     .category-btn {
         background: rgba(255, 255, 255, 0.8);
         border: 1px solid var(--border-color-light);
         color: var(--muted-text-light);
         padding: 12px 25px;
         font-weight: 700;
         border-radius: 50px;
         transition: all 0.3s;
         font-size: 1rem;
         text-transform: uppercase;
         flex-shrink: 0;
         cursor: pointer;
     }

     .category-btn:hover {
         background-color: white;
         color: var(--dark-text);
     }

     .category-btn.active {
         background-color: var(--primary-red);
         color: var(--light-text);
         box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
         border-color: var(--primary-red);
     }

     #mobile-product-list {
         display: block;
         width: 100%;
         padding: 0px;
     }

     .product-card-mobile {
         background: white;
         border-radius: 15px;
         border: 1px solid var(--border-color-light);
         margin-bottom: 20px;
         overflow: hidden;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     }

     .product-card-mobile-header {
         display: flex;
         gap: 15px;
         align-items: center;
         padding: 15px;
     }

     .product-card-mobile-img {
         width: 80px;
         height: 80px;
         background: white;
         border: 1px solid var(--border-color-light);
         border-radius: 10px;
         padding: 5px;
         flex-shrink: 0;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .product-card-mobile-img img {
         max-width: 100%;
         max-height: 100%;
         object-fit: contain;
     }

     .product-card-mobile-title {
         font-weight: 700;
         font-size: 1.2rem;
         color: var(--dark-text);
     }

     .details-toggle-btn {
         margin-left: auto;
         background: var(--primary-red);
         color: white;
         border: none;
         border-radius: 50%;
         width: 40px;
         height: 40px;
         flex-shrink: 0;
         font-size: 24px;
         transition: transform 0.3s ease;
         cursor: pointer;
     }

     .product-card-mobile.active .details-toggle-btn {
         transform: rotate(45deg);
     }

     .product-details-mobile {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.5s ease-out;
     }

     .product-card-mobile.active .product-details-mobile {
         max-height: 2000px;
     }

     .product-details-mobile-content {
         padding: 0 20px 20px 20px;
         text-align: left;
         padding-bottom: 40px;
     }

     .product-details-mobile-content .description {
         text-align: center;
         margin-bottom: 20px;
         color: var(--muted-text-light);
     }

     .product-details-mobile-content h3 {
         font-size: 1.4rem;
     }

     .product-details-mobile-content .product-tabs {
         justify-content: center;
     }



     /* === BLOQUE DE TESTIMONIOS MÓVIL === */
     #clientes {
         justify-content: center;
         padding-left: 15px;
         padding-right: 15px;
     }

     .testimonial-content-wrapper {
         flex-direction: column;
         text-align: center;
         gap: 25px;
         padding: 25px;
     }

     .testimonial-avatar img {
         width: 140px;
         height: 140px;
     }

     .testimonial-quote {
         font-size: 1.2rem;
     }

     .play-testimonial-btn {
         position: static;
         transform: none;
         margin-top: 25px;
         padding: 14px 28px;
         font-size: 1rem;
     }

     .testimonial-nav {
         position: static;
         width: 0;
         height: 0;
     }

     #testimonial-prev,
     #testimonial-next {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         z-index: 5;
         width: 44px;
         height: 44px;
     }

     #testimonial-prev {
         left: -130px;
         top: -130px !important;
     }

     #testimonial-next {
         right: -130px;
         top: -130px !important;
     }

     #unete .page-content {
         padding: 30px;
     }

     #close-popup-btn {
         top: 10px;
         right: 10px;
     }
 }

 @media (max-width: 480px) {
     h2 {
         font-size: clamp(1.8rem, 10vw, 2.2rem);
     }

     p.subtitle {
         font-size: 0.9rem;
     }

     .category-btn {
         padding: 10px 20px;
         font-size: 0.9rem;
     }

     .contact-buttons-wrapper {
         flex-direction: column;
         align-items: stretch;
     }

     .cta-button {
         justify-content: center;
     }

     .cta-button.small {
         padding: 14px 28px;
         font-size: 1rem;
     }

     #whatsapp-flotante {
         width: 50px;
         height: 50px;
         bottom: 20px;
         right: 20px;
     }

     #whatsapp-flotante i {
         font-size: 28px;
     }

     #testimonial-prev {
         left: -178px !important;
         top: -150px !important;
     }

     #testimonial-next {
         left: 145px;
         top: -150px !important;
     }

     #testimonial-prev {
         width: 38px;
         height: 38px;
         left: 5px;
     }

     #testimonial-next {
         width: 38px;
         height: 38px;
         right: 5px;
     }
 }

 /* --- ESTILOS PARA EL POPUP DE CONFIRMACIÓN PERSONALIZADO --- */
 #custom-confirm-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(10, 10, 10, 0.85);
     backdrop-filter: blur(8px);
     z-index: 10002;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 #custom-confirm-overlay.visible {
     opacity: 1;
     visibility: visible;
 }

 #custom-confirm-box {
     background: var(--dark-bg);
     color: var(--light-text);
     padding: 30px;
     border-radius: 15px;
     border: 1px solid var(--border-color-dark);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     text-align: center;
     max-width: 400px;
     width: 90%;
     transform: scale(0.9);
     transition: transform 0.3s ease;
 }

 #custom-confirm-overlay.visible #custom-confirm-box {
     transform: scale(1);
 }

 #custom-confirm-box h4 {
     font-family: 'Exo 2', sans-serif;
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 #custom-confirm-box h4 .mdi {
     color: var(--primary-red);
     font-size: 1.3em;
     vertical-align: middle;
     margin-right: 5px;
 }

 #custom-confirm-message {
     margin-bottom: 25px;
     line-height: 1.6;
     color: var(--muted-text-dark);
 }

 #custom-confirm-buttons {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .confirm-btn {
     border: none;
     padding: 10px 25px;
     border-radius: 5px;
     font-family: 'Exo 2', sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 #confirm-btn-yes {
     background-color: var(--primary-red);
     color: white;
 }

 #confirm-btn-yes:hover {
     background-color: var(--dark-red);
     transform: translateY(-2px);
 }

 #confirm-btn-no {
     background-color: #333;
     color: white;
 }

 #confirm-btn-no:hover {
     background-color: #444;
 }

 /* --- ESTILOS PARA EL CARRITO FLOTANTE (REFEACTORIZADO) --- */
 #carrito-container {
     position: fixed;
     bottom: 25px;
     right: 25px;
     z-index: 1100;
     width: 380px;
     pointer-events: none;
 }

 @media (max-width: 480px) {
     #carrito-container {
         width: calc(100% - 40px);
         right: 5px;
         bottom: 20px;
     }
 }

 #carrito-flotante,
 #carrito-minimizado-btn {
     pointer-events: auto;
 }

 #carrito-flotante {
     width: 100%;
     max-height: 80vh;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(201, 22, 25, 0.2);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
         0 2px 8px rgba(0, 0, 0, 0.06),
         inset 0 1px 0 rgba(255, 255, 255, 0.5);
     display: flex;
     flex-direction: column;
     color: var(--dark-text);
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
         opacity 0.4s ease-out,
         visibility 0.4s,
         border 0.3s;
     transform-origin: bottom left;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px) scale(0.95);
 }

 /* Wrapper interno para garantizar el scroll sin perder header/footer */
 #cart-content-wrapper {
     display: flex;
     flex-direction: column;
     height: 100%;
     min-height: 0;
     overflow: hidden;
 }

 #carrito-container.visible #carrito-flotante {
     opacity: 1;
     visibility: visible;
     transform: translateY(0) scale(1);
 }

 /* MODIFICACIÓN: Animación para el borde rojo del carrito */
 @keyframes attention-pulse-red {
     0% {
         box-shadow: 0 0 0 0px var(--primary-red);
     }

     100% {
         box-shadow: 0 0 0 15px rgba(229, 9, 20, 0);
     }
 }

 #carrito-flotante.just-added {
     border: 2px solid var(--primary-red);
     animation: attention-pulse-red 1s ease-out;
 }

 /* --- BOTÓN MINIMIZADO --- */
 #carrito-minimizado-btn {
     position: absolute;
     bottom: 0;
     right: 0;
     left: auto;
     width: 65px;
     height: 65px;
     background-color: var(--primary-red);
     color: white;
     border-radius: 50%;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
     font-size: 28px;
     opacity: 0;
     visibility: hidden;
     transform: scale(0.8);
     transition: all 0.4s ease;
     animation: pulse-red-btn 2.5s infinite;
 }

 #carrito-container.minimized #carrito-minimizado-btn {
     opacity: 1;
     visibility: visible;
     transform: scale(1);
 }

 #carrito-container.minimized #carrito-flotante {
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px) scale(0.95);
     pointer-events: none;
 }

 #carrito-item-count {
     position: absolute;
     top: -2px;
     right: -2px;
     background-color: var(--primary-orange);
     color: white;
     font-size: 12px;
     font-weight: bold;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 2px solid white;
 }

 @keyframes pulse-red-btn {
     0% {
         box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(229, 9, 20, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
     }
 }

 /* --- ESTILOS INTERNOS DEL CARRITO (TEMA BLANCO) --- */
 .carrito-header {
     padding: 15px 20px;
     border-bottom: 1px solid var(--border-color-light);
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: #f9f9f9;
     border-top-left-radius: 15px;
     border-top-right-radius: 15px;
     flex-shrink: 0;
     /* Cabecera fija: No se encoge al hacer scroll */
 }

 .carrito-header h3 {
     font-family: 'Exo 2', sans-serif;
     margin: 0;
     font-size: 1.2rem;
     color: var(--dark-text);
 }

 .carrito-header h3 .mdi {
     color: var(--primary-red);
 }

 #cerrar-carrito,
 .vaciar-carrito-btn {
     background: none;
     border: none;
     color: var(--muted-text-light);
     font-size: 24px;
     cursor: pointer;
     transition: color 0.3s, transform 0.3s;
 }

 #cerrar-carrito:hover,
 .vaciar-carrito-btn:hover {
     color: var(--primary-red);
     transform: scale(1.1);
 }

 .vaciar-carrito-btn {
     font-size: 20px;
     margin-right: 10px;
 }

 .carrito-body {
     padding: 10px;
     overflow-y: auto;
     flex-grow: 1;
     min-height: 0;
     /* Crucial para que el scroll funcione dentro de Flexbox */
     overscroll-behavior: contain;
     /* Evita que el scroll afecte a la página de fondo */
 }

 .carrito-body::-webkit-scrollbar {
     width: 6px;
 }

 .carrito-body::-webkit-scrollbar-track {
     background: #f0f0f0;
 }

 .carrito-body::-webkit-scrollbar-thumb {
     background: var(--primary-red);
     border-radius: 10px;
 }

 .carrito-item {
     display: grid;
     grid-template-columns: 1fr auto auto;
     gap: 15px;
     align-items: center;
     padding: 12px 10px;
     border-bottom: 1px solid var(--border-color-light);
 }

 .carrito-item:last-child {
     border-bottom: none;
 }

 .carrito-item-nombre {
     font-weight: bold;
     font-size: 0.95rem;
 }

 .carrito-item-subtotal {
     font-size: 0.9rem;
     color: var(--muted-text-light);
 }

 .carrito-item input.item-cantidad {
     width: 50px;
     background-color: #f0f0f0;
     border: 1px solid #ddd;
     color: var(--dark-text);
     border-radius: 5px;
     padding: 5px;
     text-align: center;
 }

 .carrito-item .delete-btn {
     color: #aaa;
     text-decoration: none;
     font-size: 20px;
     transition: color 0.3s;
     background: none;
     border: none;
     cursor: pointer;
 }

 .carrito-item .delete-btn:hover {
     color: var(--primary-red);
 }

 .carrito-empty-msg {
     padding: 40px 20px;
     text-align: center;
     color: var(--muted-text-light);
 }

 .carrito-footer {
     padding: 20px;
     border-top: 1px solid var(--border-color-light);
     background-color: #f9f9f9;
     border-bottom-left-radius: 15px;
     border-bottom-right-radius: 15px;
     flex-shrink: 0;
     /* Footer fijo: Siempre visible al final */
 }

 .carrito-total-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 8px;
     font-size: 1rem;
 }

 .coupon-row {
     background-color: #fff0f1;
     color: var(--dark-red);
     font-weight: bold;
     padding: 8px 12px;
     border-radius: 5px;
     margin: 10px 0;
     border: 1px dashed var(--primary-red);
     align-items: center;
     font-size: 0.9rem;
 }

 .coupon-row::before {
     content: "\F051E";
     font-family: "Material Design Icons";
     margin-right: 8px;
     font-weight: normal;
     font-size: 1.2em;
 }

 .carrito-total-row.grand-total {
     font-size: 1.3rem;
     font-weight: bold;
     color: var(--primary-red);
     margin-top: 10px;
 }

 .carrito-acciones {
     margin-top: 15px;
     display: grid;
     grid-template-columns: auto 1fr;
     gap: 10px;
     align-items: center;
 }

 .carrito-acciones .btn {
     padding: 10px;
     text-align: center;
     border-radius: 5px;
     text-decoration: none;
     font-weight: bold;
     transition: all 0.3s;
     font-family: 'Exo 2', sans-serif;
     text-transform: uppercase;
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .btn-update {
     background-color: #6c757d;
     color: white;
     border: none;
     cursor: pointer;
     width: 42px;
     height: 42px;
     padding: 0;
     font-size: 1.4rem;
 }

 .btn-update:hover {
     background-color: #5a6268;
 }

 .btn-whatsapp {
     background-color: var(--whatsapp-green);
     color: white;
     gap: 8px;
 }

 .btn-whatsapp:hover {
     background-color: #128C7E;
     transform: scale(1.05);
 }

 @media (max-width: 480px) {
     #carrito-container {
         width: calc(100% - 40px);
         left: 20px;
         bottom: 20px;
     }

     #carrito-flotante {
         max-height: 60vh;
     }

     #carrito-minimizado-btn {
         width: 60px;
         height: 60px;
         font-size: 26px;
     }
 }

 /* ==== CSS extraído desde index.php ==== */

 /* Anti-flicker + scroll container */
 html,
 body {
     height: 100%;
     overflow: hidden;
 }

 #fullpage-container {
     height: 100vh;
     overflow-y: auto;
     opacity: 1;
     will-change: scroll-position, opacity;
 }

 :focus-visible {
     outline: 2px solid #e74c3c;
     outline-offset: 2px;
 }

 /* ===================== NAVBAR DESKTOP ===================== */
 #desktop-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     height: 70px;
     z-index: 1200;
     display: none;
     /* móvil oculto */
 }

 #desktop-header .inner {
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 28px;
     gap: 20px;
     background: transparent;
     transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
 }

 #desktop-header.scrolled .inner {
     background: var(--primary-red);
     backdrop-filter: none;
     -webkit-backdrop-filter: none;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 #desktop-header.scrolled .brand-title,
 #desktop-header.scrolled nav.primary a,
 #desktop-header.scrolled .cta-top,
 #desktop-header.scrolled .cta-button {
     color: #fff !important;
     border-color: rgba(255, 255, 255, 0.5);
 }

 #desktop-header.scrolled nav.primary a:after {
     background: #fff;
 }

 /* Estilo HERO (inicio) — texto blanco con sombra para máxima legibilidad */
 #desktop-header.hero .inner {
     background: transparent;
     backdrop-filter: none;
     box-shadow: none;
 }

 #desktop-header.hero .brand-title,
 #desktop-header.hero nav.primary a,
 #desktop-header.hero .cta-top,
 #desktop-header.hero .cta-button {
     color: #fff;
     text-shadow: 0 1px 2px rgba(0, 0, 0, .60);
     border-color: #fff;
 }

 #desktop-header.hero nav.primary a:after {
     background: #fff;
     height: 1px;
 }

 #desktop-header.hero .cta-top:hover,
 #desktop-header.hero .cta-button:hover {
     background: #fff;
     color: #e74c3c;
     text-shadow: none;
 }

 #desktop-header .brand {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 #desktop-header .brand img {
     height: 38px;
     width: auto;
     display: block;
 }

 #desktop-header .brand-title {
     font-weight: 900;
     letter-spacing: .5px;
 }

 #desktop-header nav.primary a {
     margin: 0 26px;
     padding: 14px 0;
     text-decoration: none;
     color: #1d1d1f;
     font-weight: 800;
     /* Ultra-bold Apple-style */
     position: relative;
     letter-spacing: 2px;
     text-transform: uppercase;
     font-size: 11px;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     opacity: 0.95;
 }

 #desktop-header nav.primary a:hover {
     color: var(--primary-red);
     transform: translateY(-2px);
     opacity: 1;
 }

 #desktop-header nav.primary a:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0px;
     width: 0;
     height: 2px;
     background: var(--primary-red);
     transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 #desktop-header nav.primary a:hover:after,
 #desktop-header nav.primary a[aria-current="page"]:after {
     width: 100%;
 }

 #desktop-header nav.primary a[aria-current="page"] {
     color: var(--primary-red);
     opacity: 1;
 }

 #desktop-header .cta-top {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 14px;
     border-radius: 12px;
     border: 2px solid #fff;
     color: #fff;
     text-decoration: none;
     font-weight: 900;
     letter-spacing: .4px;
     text-transform: uppercase;
     font-size: 12px;
     transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 /* Catalog Button specifically */
 #desktop-header .cta-button.red {
     background: var(--primary-red);
     border: 2px solid #fff;
     color: #fff;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 18px;
     border-radius: 12px;
     font-weight: 800;
     text-transform: uppercase;
     font-size: 11px;
     letter-spacing: 1px;
     transition: all 0.4s var(--ease-out-expo);
 }

 #desktop-header .cta-button.red i {
     font-size: 16px;
     transition: transform 0.4s var(--ease-out-expo);
 }

 #desktop-header .cta-button.red:hover {
     background: #fff;
     color: var(--primary-red) !important;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 #desktop-header .cta-button.red:hover i {
     animation: bounce-download 0.8s infinite alternate;
 }

 @keyframes bounce-download {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-3px);
     }
 }

 #desktop-header .cta-top:hover {
     background: #fff;
     color: var(--primary-red);
     transform: translateY(-1px);
 }

 @media (min-width: 1025px) {
     #desktop-header {
         display: block;
     }
 }

 /* Eliminado por duplicidad y redundancia con los estilos de arriba */

 /* Pulso al agregar */
 #carrito-flotante.just-added {
     animation: pulse 700ms ease-out;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(231, 76, 60, .5)
     }

     100% {
         box-shadow: 0 0 0 20px rgba(231, 76, 60, 0)
     }
 }

 /* ===================== BANNER CHEF (solo desktop, pegado al carrito) ===================== */
 #chef-promo-flotante {
     position: absolute;
     /* anclado al #carrito-container */
     top: calc(100% + 12px);
     /* debajo del botón */
     left: 200px;
     /* 200px hacia la derecha */
     transform: translateY(8px);
     /* animamos SOLO Y para que no se pierda el offset X */

     /* el resto de estilos que ya tienes se mantienen */
     display: none;
     align-items: center;
     gap: 12px;
     padding: 12px 14px;
     max-width: 320px;
     border-radius: 14px;
     background: rgba(255, 255, 255, .95);
     backdrop-filter: blur(8px);
     box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
     opacity: 0;
     transform: translateY(8px);
     transition: opacity .2s ease, transform .2s ease, left .2s ease, top .2s ease;
     z-index: 1110;
     /* asegura que no quede debajo del carrito */
 }

 #chef-promo-flotante.show {
     display: flex;
     opacity: 1;
     transform: translateY(0);
 }

 #chef-promo-flotante img {
     width: 56px;
     height: 56px;
     object-fit: cover;
     border-radius: 50%;
 }

 #chef-promo-flotante .chef-text p {
     margin: 0;
     line-height: 1.25;
     color: #333;
     font-size: .92rem;
 }

 #chef-promo-flotante .chef-text strong {
     color: #e74c3c;
 }

 #close-chef-promo {
     position: absolute;
     top: 6px;
     right: 6px;
     border: 0;
     background: transparent;
     color: #888;
     cursor: pointer;
 }

 #close-chef-promo:hover {
     color: #333;
 }

 @media (max-width:1024px) {
     #chef-promo-flotante {
         display: none !important;
     }
 }

 /* solo desktop */

 /* ============ Otros ============ */
 @media (min-width:1025px) {

     html,
     body {
         overflow: hidden;
     }

     #fullpage-container {
         overflow-y: auto;
         height: 100vh;
     }
 }

 /* --- TUTORIAL PLAYLIST SIDEBAR ITEMS --- */
 .playlist-sidebar-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 12px;
     border-radius: 15px;
     background: rgba(255, 255, 255, 0.5);
     border: 1px solid transparent;
     cursor: pointer;
     transition: all 0.3s ease;
     flex-shrink: 0;
     /* Prevent squashing in flex container */
 }

 .playlist-sidebar-item:hover {
     background: #fff;
     transform: translateX(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .playlist-sidebar-item.active {
     background: #fff;
     border-color: var(--primary-red);
     box-shadow: 0 5px 15px rgba(227, 6, 19, 0.15);
 }

 .playlist-sidebar-item img {
     width: 80px;
     height: 55px;
     /* approx 16:9 thumbnail ratio */
     object-fit: cover;
     border-radius: 8px;
     flex-shrink: 0;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .playlist-sidebar-item h4 {
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--dark-text);
     margin: 0;
     line-height: 1.3;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .playlist-sidebar-item.active h4 {
     color: var(--primary-red);
 }

 /* --- SAFETY FIX: MOBILE MENU TOGGLE VISIBILITY --- */
 #mobile-menu-toggle {
     position: fixed;
     top: 25px;
     right: 25px;
     z-index: 1200;
     background: var(--primary-red);
     color: white;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     cursor: pointer;
     font-size: 26px;
     transition: transform 0.3s ease;
 }

 #mobile-menu-toggle:hover {
     transform: scale(1.1);
 }

 @media (min-width: 1025px) {
     #mobile-menu-toggle {
         display: none;
     }
 }

 /* Ensure Mobile Nav is on top when active */
 #mobile-nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(16, 16, 16, 0.98);
     backdrop-filter: blur(10px);
     z-index: 1199;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s ease;
 }

 #mobile-nav.active {
     opacity: 1;
     visibility: visible;
 }

 #mobile-nav ul {
     display: flex;
     flex-direction: column;
     gap: 25px;
     text-align: center;
 }

 #mobile-nav a {
     font-size: 1.5rem;
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 #mobile-menu-close {
     position: absolute;
     top: 30px;
     right: 30px;
     background: none;
     border: none;
     color: #fff;
     font-size: 32px;
     cursor: pointer;
 }

 /* ==========================================================================
    LAPTOP / COMPACT DESKTOP OPTIMIZATIONS (1025px - 1440px)
    Fixes layout issues on 13" MacBooks and 1366x768 Windows laptops
    ========================================================================== */
 @media (min-width: 1025px) and (max-width: 1440px) {

     /* --- Global Scaling (Simula zoom del navegador al 80%) --- */
     body {
         zoom: 0.8;
     }

     /* Fix: Compensar altura para evitar franja negra inferior al usar zoom 
       Cálculo: 100vh / 0.8 = 125vh 
    */
     #fullpage-container,
     .page {
         height: 125vh !important;
         min-height: 125vh !important;
         justify-content: center !important;
     }

     /* Fix: Anclar tarjeta de "Obtén tu cotización" junto al botón de carrito
       Override de JS positioning que falla con zoom
    */
     #chef-promo-flotante {
         position: fixed !important;
         top: auto !important;
         bottom: 30px !important;
         left: auto !important;
         right: 100px !important;
         /* 25px (margen) + 65px (botón) + 10px (gap) */
         transform: none !important;
     }

     #nosotros {
         justify-content: center !important;
         padding-top: 0 !important;
     }

     #nosotros .page-content {
         margin-top: 100px !important;
     }

     #beneficios {
         justify-content: center !important;
         padding-top: 0 !important;
     }

     #beneficios .page-content {
         margin-top: 230px !important;
     }

     /* Fix: Centrar contenido de productos verticalmente */
     #productos .page-content {
         justify-content: center !important;
     }

     h2 {
         font-size: 2.2rem !important;
         /* Reduced from clamp logic */
         margin-bottom: 20px !important;
     }

     p.subtitle {
         font-size: 1rem !important;
         max-width: 700px !important;
         margin-bottom: 30px !important;
     }

     /* --- #Inicio (Hero) Compact --- */
     #inicio .page-content {
         padding-top: 100px !important;
     }

     #inicio h2 {
         font-size: 3.2rem !important;
     }

     .section-logo-img {
         max-width: 200px !important;
         margin-bottom: 15px !important;
     }

     /* --- #Nosotros & #Beneficios Compact --- */
     .premium-split-layout {
         gap: 40px !important;
         margin-top: 20px !important;
     }

     .content-sticky-wrapper {
         top: 100px !important;
     }

     /* Vertical Grid Compact */
     .about-us-features-vertical {
         gap: 20px !important;
     }

     .about-us-features-vertical .feature-card {
         padding: 25px !important;
         gap: 15px !important;
     }

     .about-us-features-vertical .feature-card h3 {
         font-size: 1.25rem !important;
     }

     .about-us-features-vertical .feature-card .feature-icon {
         font-size: 2.5rem !important;
         width: 50px !important;
         height: 50px !important;
     }

     /* Beneficios Visual Compact */
     .beneficios-visual {
         min-height: 400px !important;
         height: 400px !important;
     }

     .benefit-accordion-item {
         padding: 0 20px !important;
     }

     .accordion-header {
         padding: 15px 0 !important;
     }

     /* --- #Productos Compact Grid --- */
     .productos-container-desktop {
         gap: 20px !important;
         /* Tighter columns */
         grid-template-columns: 130px 1fr !important;
         min-height: 500px !important;
     }

     #product-carousel-list {
         gap: 10px !important;
     }

     .carousel-item {
         width: 80px !important;
         height: 80px !important;
         padding: 5px !important;
     }

     /* Product Display Panel Compact */
     #product-display-wrapper {
         padding: 25px !important;
         gap: 25px !important;
         min-height: 450px !important;
         border-radius: 25px !important;
     }

     .display-image-container {
         padding: 10px !important;
         height: auto !important;
         display: flex !important;
         align-items: center !important;
         justify-content: center !important;
     }

     .display-image-container img {
         max-height: 100% !important;
         max-width: 100% !important;
         object-fit: contain !important;
     }

     .display-details-container h3 {
         font-size: 1.8rem !important;
         margin-bottom: 10px !important;
     }

     .product-price {
         font-size: 1rem !important;
         margin: 10px 0 15px !important;
     }

     .cta-button.small {
         padding: 10px 20px !important;
         font-size: 0.85rem !important;
     }

     /* Tabs Compact */
     .tab-btn {
         padding: 8px 0 !important;
         margin-right: 15px !important;
         font-size: 0.9rem !important;
     }

     .spec-item {
         padding: 8px 0 !important;
         font-size: 0.9rem !important;
     }

     /* --- #Testimonios Compact --- */
     .testimonial-content-wrapper {
         padding: 35px !important;
         max-width: 850px !important;
         gap: 30px !important;
     }

     .testimonial-avatar img {
         width: 140px !important;
         height: 140px !important;
     }

     .testimonial-quote {
         font-size: 1.3rem !important;
         margin-bottom: 15px !important;
     }

     /* --- #Tutoriales Compact --- */
     .tutoriales-container-desktop {
         grid-template-columns: 240px 1fr !important;
         gap: 25px !important;
     }

     .playlist-sidebar-item {
         padding: 8px !important;
         gap: 10px !important;
     }

     .playlist-sidebar-item img {
         width: 70px !important;
         height: 45px !important;
     }

     .playlist-sidebar-item h4 {
         font-size: 0.85rem !important;
     }
 }