/* ============================================
   EMOZIONI - STYLESHEET
   Versión: 1.0.0
   Última actualización: Noviembre 2025
   
   Estructura:
   1. Variables y Fuentes
   2. Reset y Estilos Globales
   3. Header y Navegación
   4. Hero Section
   5. Secciones Generales
   6. Productos
   7. Testimonios
   8. Formulario Bento Grid
   9. Footer
   10. Modales
   11. Responsive
   
   Animaciones:
   - meshGradient (15s)
   - meshGradientOverlay (13s)
   - liquidGlass (8s)
   - liquidShine (6s)
   - pulse (4s)
   - marqueeFooter (20-45s)
============================================ */

/* --- 1. VARIABLES Y FUENTES --- */
@font-face {
    font-family: 'Avenir';
    src: url('../../rsc/font/Avenir.ttc') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vendetta';
    src: url('../../rsc/font/Vendetta.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: 'Avenir', sans-serif;
    --font-display: 'Vendetta', cursive;
    --color-primary: #2e86a6;
    --color-primary-neon: #29D5FF;
    --color-secondary: #444243;
    --color-text: #333;
    --color-background: #FFFFFF;
    --color-light-gray: #f4f4f4;
    --header-height: 80px;
}

/* --- 2. RESET Y ESTILOS GLOBALES --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.philosophy-content p,
.feature p,
.product-card p,
.contact-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    font-weight: normal;
    letter-spacing: 0.06em;
}

.section-title {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    text-shadow: 4px 4px 0px var(--color-secondary), 8px 8px 15px rgba(0, 0, 0, 0.3);
}

/* --- 3. HEADER Y NAVEGACIÓN --- */
.main-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    height: calc(var(--header-height) - 10px);
    background-color: rgba(255, 255, 255, 0.49);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
}

.main-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    gap: 2rem;
}

.nav-section {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 2rem;
    justify-content: flex-start;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: var(--color-primary);
}

.logo img {
    height: 65px;
    display: block;
}

.logo-mobile,
.main-nav .nav-links,
.mobile-nav-toggle {
    display: none;
}

.nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-links li {
    list-style: none;
    text-align: center;
    border-bottom: 1px solid rgba(86, 171, 207, 0.2);
    padding-bottom: 1rem;
}

.nav-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nav-links a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.cta-button {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    mix-blend-mode: screen;
    color: var(--color-background);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(86, 171, 207, 0.4);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.mobile-nav-toggle.active .hamburger {
    background: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

.nav-open .hamburger {
    background: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg);
}

.nav-open .hamburger::after {
    transform: rotate(-45deg);
}

/* --- 4. HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
}

.hero-title,
.hero-titlee {
    font-family: var(--font-display);
    font-size: 5rem;
    color: white;
    -webkit-text-stroke: 1px rgba(35, 34, 34, 0.3);
    margin-bottom: 1rem;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.9rem;
    margin-bottom: 2rem;
}

/* --- 5. SECCIONES GENERALES --- */
section {
    padding: 4rem 1rem;
}

.featured-products-section,
.philosophy-section,
.testimonials-section,
.contact-section {
    max-width: 100%;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
    background-color: #fffdfdff;
    background-image: url('../../rsc/img/stardust.png');
    background-repeat: repeat;
    background-size: auto;
}

/* --- 8. FILOSOFÍA --- */

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    margin-top: 1.5rem;
    font-size: 1.6rem;
}

.philosophy-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    max-width: 300px;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.featured-products-section {
    position: relative;
    overflow: hidden;
}

.featured-products-section .product-grid,
.philosophy-section .philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-stamps-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.product-stamp {
    position: absolute;
    opacity: 0.9;
    filter: blur(1px);
    mix-blend-mode: multiply;
}

.product-stamp-1 {
    width: 45vw;
    max-width: 550px;
    top: 5%;
    left: -1%;
    transform: rotate(-25deg);
}

.product-stamp-2 {
    width: 35vw;
    max-width: 400px;
    top: 35%;
    right: -1%;
    transform: rotate(18deg);
    fill-opacity: 0.8;
}

.product-stamp-4 {
    width: 50vw;
    max-width: 600px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    filter: blur(2px);
}

.product-stamp-3 {
    width: 55vw;
    max-width: 750px;
    top: 40%;
    left: -6%;
    transform: rotate(30deg);
}

.product-stamp-5 {
    width: 40vw;
    max-width: 480px;
    bottom: 5%;
    right: -.5%;
    transform: rotate(-20deg);
}

.featured-products-section .section-title,
.featured-products-section .product-grid {
    position: relative;
    z-index: 2;
}

/* --- 6. PRODUCTOS DESTACADOS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(86, 171, 207, 0.15),
        0 0 0 1px rgba(86, 171, 207, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 20px;
    background: radial-gradient(ellipse at center,
            rgba(86, 171, 207, 0.25) 0%,
            rgba(86, 171, 207, 0.1) 40%,
            transparent 70%);
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(86, 171, 207, 0.3),
        0 0 0 1px rgba(86, 171, 207, 0.1),
        0 0 60px rgba(41, 213, 255, 0.15);
}

.product-card:hover::before {
    opacity: 1;
    width: 90%;
    height: 25px;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.product-card p {
    margin: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
}

.cta-button-secondary {
    display: inline-block;
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

/* --- 6. TESTIMONIOS --- */
.testimonials-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-stamps-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stamp-bg {
    position: absolute;
    opacity: 0.9;
    width: 60vw;
    max-width: 700px;
    filter: blur(1px);
    mix-blend-mode: screen;
}

.stamp-bg-1 {
    top: 10%;
    left: -6%;
    transform: rotate(-20deg);
}

.stamp-bg-2 {
    bottom: 10%;
    right: -6%;
    transform: rotate(15deg);
}

.stamp-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem;
    /* Tono gris con efecto relieve */
    background: linear-gradient(145deg,
            rgba(240, 240, 240, 0.9) 0%,
            rgba(220, 220, 220, 0.8) 100%);
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(10px) saturate(100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    /* Efecto de relieve (Neumorphism/Embossed) */
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.8),
        inset 2px 2px 5px rgba(255, 255, 255, 0.5),
        inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 320px;
    z-index: 1;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.27) 0%,
            rgba(255, 255, 255, 0.16) 30%,
            transparent 70%);
    animation: liquidGlass 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    animation: liquidShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidGlass {

    0%,
    100% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-5%, 15%) scale(1.05);
        opacity: 0.7;
    }

    75% {
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes liquidShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.testimonial-item.testimonial-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonial-item:first-child {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-video-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    color: white;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-secondary);
}

.testimonial-content footer {
    font-weight: 200;
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-top: 0.75rem;
    font-size: 1.4rem;
    text-align: right;
    font-kerning: auto;
    letter-spacing: 0.05em;
}

.stars {
    margin-bottom: 0.5rem;
    text-align: center;
}

.stars-img {
    height: 60px;
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

/* Responsive adjustments for testimonials */
@media (max-width: 992px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem;
    }

    .testimonial-video-wrapper {
        width: 100%;
        height: 300px;
    }

    .testimonial-content {
        align-items: center;
    }

    .testimonial-content footer {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        gap: 4rem;
    }

    .testimonial-item {
        padding: 1rem;
    }

    .testimonial-video-wrapper {
        height: 250px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    .stars-img {
        height: 60px;
    }
}


.contact-subtitle {
    text-align: center;
    margin: 0 1rem 1rem 1rem;
    font-size: 1.8rem;
    font-weight: bolder;
}

.contact-notice {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.1rem;
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    animation: pulse 4s ease-in-out infinite;
}

/* --- 8. FORMULARIO BENTO GRID MODULAR --- */
@keyframes meshGradient {

    0%,
    100% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%;
    }

    25% {
        background-position: 15% 10%, 90% 15%, 85% 90%, 10% 85%, 0% 0%;
    }

    50% {
        background-position: 25% 20%, 80% 25%, 75% 80%, 20% 75%, 0% 0%;
    }

    75% {
        background-position: 10% 25%, 75% 10%, 90% 75%, 25% 90%, 0% 0%;
    }
}

@keyframes meshGradientOverlay {

    0%,
    100% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.6;
    }

    33% {
        transform: translate(8%, 10%) rotate(15deg);
        opacity: 0.7;
    }

    66% {
        transform: translate(-8%, 5%) rotate(-15deg);
        opacity: 0.65;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 171, 207, 0.7),
            0 5px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px 10px rgba(86, 171, 207, 0.8),
            0 0 60px 15px rgba(86, 171, 207, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 171, 207, 0.7),
            0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.bento-grid-modular {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: masonry;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem 10px;
    /* Ligero espacio a los costados */
    position: relative;
    z-index: 1;
    background: transparent;
}

.bento-card {
    background:
        radial-gradient(at 0% 0%, rgba(238, 250, 255, 0.65) 0%, transparent 40%),
        radial-gradient(at 100% 0%, rgba(41, 213, 255, 0.55) 0%, transparent 40%),
        radial-gradient(at 100% 100%, rgba(86, 171, 207, 0.6) 0%, transparent 40%),
        radial-gradient(at 0% 100%, rgba(41, 213, 255, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, rgba(3, 91, 116, 0.33) 0%, rgba(235, 235, 235, 0.42) 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
    animation: meshGradient 15s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-blend-mode: overlay;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(86, 171, 207, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    will-change: background-position;
    mix-blend-mode: soft-light;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(86, 171, 207, 0.41) 0%, transparent 40%);
    background-blend-mode: screen;

    animation: meshGradientOverlay 13s ease-in-out infinite;
    opacity: 0.4;
    pointer-events: none;
    will-change: transform, opacity;
}

.bento-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: .5rem;
    text-shadow:
        0 2px 12px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-full {
    grid-column: span 6;
    grid-row: span 1;
}

.submit-btn-bento {
    position: relative;
    align-items: center;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-neon) 100%);
    border: none;
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(41, 213, 255, 0.4),
        0 10px 30px rgba(86, 171, 207, 0.3);
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 1.3rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.4em;
    padding: 1.8rem 3.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-primary);
    flex: 1;
    overflow: hidden;
}

.submit-btn-bento::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.submit-btn-bento:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(41, 213, 255, 0.5),
        0 15px 40px rgba(86, 171, 207, 0.4);
}

.submit-btn-bento:hover::before {
    left: 100%;
}

.submit-btn-bento:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn-bento span {
    position: relative;
    z-index: 1;
}

.form-footer-section {
    width: 100%;
    max-width: 1100px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    padding: 0 1rem;
}

.total-display {
    background: transparent;
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    padding: 1rem 2rem;
    box-shadow:
        0 20px 60px rgba(86, 171, 207, 0.37),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    flex: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.total-display:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 70px rgba(86, 171, 207, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--color-primary-neon);
}

.total-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-secondary);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.bento-card input,
.bento-card select,
.bento-card textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(25px) saturate(100%);
    -webkit-backdrop-filter: blur(25px) saturate(100%);
    background-blend-mode: screen;
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.17),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.bento-card input:last-child,
.bento-card select:last-child,
.bento-card textarea:last-child {
    margin-bottom: 0;
}

.bento-card input::placeholder,
.bento-card select option:first-child,
.bento-card textarea::placeholder {
    color: rgba(68, 66, 67, 0.7);
    font-weight: 300;
}

.bento-card select {
    color: var(--color-secondary);
    cursor: pointer;
}

.bento-card select option {
    background-color: rgba(255, 255, 255, 0.98);
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(245, 245, 245, 0.98) 100%);
    color: #2c2c2c;
    padding: 0.8rem;
    font-weight: 500;
}

.bento-card select option:hover,
.bento-card select option:checked {
    background-color: rgba(86, 171, 207, 0.15);
    background-image: linear-gradient(135deg,
            rgba(86, 171, 207, 0.2) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    color: #1a1a1a;
}

.bento-card input:focus,
.bento-card select:focus,
.bento-card textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 20px rgba(41, 213, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(86, 171, 207, 0.15);
    transform: translateY(-2px);
    background-blend-mode: screen;
}

.bento-card .extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.bento-card .extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg,
            rgba(86, 171, 207, 0.12) 0%,
            rgba(41, 213, 255, 0.08) 100%);
    border-radius: 14px;
    border: 1.5px solid rgba(86, 171, 207, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    box-shadow: 0 2px 8px rgba(41, 213, 255, 0.15),
        0 0 0 1px rgba(86, 171, 207, 0.1) inset;
    background-blend-mode: screen;
}

.bento-card .extra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(41, 213, 255, 0.3) 50%,
            transparent 100%);
    transition: left 0.5s ease;
}

.bento-card .extra-item:hover {
    background: linear-gradient(135deg,
            rgba(86, 171, 207, 0.2) 0%,
            rgba(41, 213, 255, 0.15) 100%);
    border-color: rgba(41, 213, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 213, 255, 0.25),
        0 0 0 1px rgba(41, 213, 255, 0.2) inset,
        0 1px 3px rgba(86, 171, 207, 0.3) inset;
}

.bento-card .extra-item:hover::before {
    left: 100%;
}

.bento-card .extra-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.bento-card .extra-item .toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: linear-gradient(135deg,
            rgba(68, 66, 67, 0.6) 0%,
            rgba(68, 66, 67, 0.4) 100%);
    border-radius: 13px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset;
    flex-shrink: 0;
}

.bento-card .extra-item .toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.bento-card .extra-item input[type="checkbox"]:checked~.toggle-switch {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-neon) 100%);
    border-color: var(--color-primary-neon);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset,
        0 0 12px rgba(41, 213, 255, 0.4);
}

.bento-card .extra-item input[type="checkbox"]:checked~.toggle-switch .toggle-slider {
    transform: translateX(22px);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(41, 213, 255, 0.5),
        0 0 0 2px rgba(41, 213, 255, 0.3);
}

.bento-card .extra-item .extra-label {
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.bento-card .extra-item input[type="checkbox"]:checked~.extra-label {
    color: var(--color-primary-neon);
    text-shadow: 0 0 10px rgba(41, 213, 255, 0.3);
}



/* --- 8a. RESPONSIVE BENTO GRID --- */

@media (max-width: 1400px) {
    .bento-grid-modular {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 4;
    }

    .bento-full {
        grid-column: span 4;
    }
}

@media (max-width: 1024px) {
    .bento-grid-modular {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bento-large {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-wide,
    .bento-full {
        grid-column: span 2;
    }

    .bento-card .extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid-modular {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .bento-large,
    .bento-wide,
    .bento-full {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .bento-card-title {
        font-size: 1.5rem;
    }

    .form-footer-section {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .total-display {
        padding: 1.5rem 2rem;
    }

    .total-amount {
        font-size: 3rem;
    }

    .submit-btn-bento {
        font-size: 1.1rem;
        padding: 1.4rem 2rem;
    }
}

/* --- 10. FOOTER --- */
.main-footer {
    background-color: var(--color-secondary);
    color: #f4f4f4;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 -10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(139, 137, 137, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-logo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.8;
    filter: brightness(0.9) contrast(1);
    box-shadow: inset 0 0 80px rgba(62, 62, 62, 0.54);
}

.footer-logo-marquee {
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: rotate(-5deg);
    width: 120%;
    margin-left: -10%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-5deg);
}

.footer-logo-track {
    display: flex;
    animation: marqueeFooter 40s linear infinite;
    white-space: nowrap;
    padding: .5rem 0;
}

.footer-logo-track:nth-child(1) {
    animation-duration: 35s;
    opacity: 0.8;
}

.footer-logo-track:nth-child(2) {
    animation-duration: 45s;
    animation-direction: reverse;
    opacity: 0.9;
}

.footer-logo-track:nth-child(3) {
    animation-duration: 28s;
    opacity: 0.85;
}

.footer-logo-track:nth-child(4) {
    animation-duration: 40s;
    animation-direction: reverse;
    opacity: 0.95;
}

.footer-logo-track:nth-child(5) {
    animation-duration: 37s;
    opacity: 0.8;
}

.footer-logo-track:nth-child(6) {
    animation-duration: 20s;
    animation-direction: reverse;
    opacity: 0.9;
}

.footer-marquee-logo {
    height: 74px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 15px rgba(224, 223, 223, 0.5));
}

@keyframes marqueeFooter {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffffff;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
    z-index: 2;
    justify-items: center;
    width: 100%;
    max-width: 1400px;
}


.footer-column {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.footer-nav,
.footer-contact,
.footer-social-column {
    background: rgba(153, 150, 152, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
    position: relative;
    transform: translateZ(0);
}

.footer-nav::before,
.footer-contact::before,
.footer-social-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.footer-nav:hover,
.footer-contact:hover,
.footer-social-column:hover {
    background: rgba(68, 66, 67, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-8px) scale(1.02);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #e9e7e7ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--color-primary-neon);
}

.footer-column p {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 auto;
    text-align: center;
}

.footer-social-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-social-column h4 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    min-height: 2rem;
}

.footer-social-center {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.footer-social-link {
    position: relative;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.footer-social-link svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: fill 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.footer-social-link:hover {
    transform: translateY(-5px);
}

.footer-social-link:hover svg {
    fill: var(--color-primary-neon);
    filter: drop-shadow(0 0 8px var(--color-primary-neon)) drop-shadow(0 0 15px var(--color-primary-neon));
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #edececff;
    font-size: 0.9rem;
    padding-top: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal-links a {
    color: #ffffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--color-primary-neon);
}

/* --- 11. PÁGINAS LEGALES --- */
.legal-page {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    background-color: #f4f4f4;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
    color: #444;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--color-secondary);
}

.job-listing {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-primary);
}

.job-listing h3 {
    color: var(--color-primary);
    margin-top: 0;
}

.legal-back {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    overflow: hidden;
}

body.modal-open,
body.success-modal-open {
    overflow: hidden;
}

body.modal-open #product-modal {
    opacity: 1;
    visibility: visible;
}

body.success-modal-open #success-modal {
    opacity: 1;
    visibility: visible;
}

body.modal-open .modal-content,
body.success-modal-open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-secondary);
}

.modal-left {
    flex-basis: 50%;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-right {
    flex-basis: 50%;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.modal-right h4 {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.modal-includes {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
    flex-grow: 0;
    width: 100%;
    max-width: 350px;
}

.modal-includes li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    text-align: left;
}

.modal-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.modal-price {
    font-size: 2rem;
    font-style: normal;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.modal-cta {
    display: inline-block;
}

.success-modal-content {
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    display: block;
    padding: 3rem;
    overflow-y: auto;
}

.success-modal-body {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem auto;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.success-modal-body h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-modal-body p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.payment-info {
    margin-top: 2rem;
    width: 100%;
}

.payment-info h4 {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.payment-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* --- AJUSTES SECCIÓN DE CONTACTO --- */
.contact-section {
    padding-left: 0;
    padding-right: 0;
}

.contact-section .section-title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-section .contact-subtitle {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* --- 12. ACCESIBILIDAD --- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- 13. RESPONSIVE DESIGN COMPLETO --- */

/* Extra Large Desktop (1920px+) */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .section-title {
        font-size: 6rem;
    }
}

/* Large Desktop → Desktop (1400px - 1200px) */
@media (max-width: 1400px) {
    .section-title {
        font-size: 4.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

/* Desktop → Laptop (1200px - 1024px) */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .section-title {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .main-header {
        width: calc(100% - 1rem);
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Laptop → Tablet (1024px - 768px) */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }

    .section-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .philosophy-features {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .feature {
        max-width: 500px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 1.8rem;
    }

    /* Header responsive */
    .nav-left {
        gap: 1.5rem;
    }

    .logo img {
        height: 55px;
    }
}

/* Tablet → Mobile Large (768px - 576px) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        text-shadow: 3px 3px 0px var(--color-secondary), 6px 6px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .philosophy-content p,
    .feature p,
    .product-card p,
    .contact-subtitle {
        font-size: 1.05rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }

    .contact-notice {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    /* Bento inputs responsive */
    .bento-card input,
    .bento-card select,
    .bento-card textarea {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-marquee-logo {
        height: 60px;
    }

    /* Modal responsive */
    .modal-content {
        flex-direction: column;
        max-height: 80vh;
    }

    .modal-left,
    .modal-right {
        flex-basis: auto;
    }

    .modal-left {
        max-height: 250px;
    }

    .modal-title {
        font-size: 2.2rem;
    }

    .modal-price {
        font-size: 1.6rem;
    }
}

/* Mobile Large → Mobile (576px - 480px) */
@media (max-width: 576px) {
    html {
        font-size: 13px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-header {
        top: 0.5rem;
        width: calc(100% - 1rem);
        height: 60px;
        border-radius: 30px;
        padding: 0 1rem;
    }

    /* Mostrar navegación móvil */
    .nav-left,
    .nav-right {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .mobile-nav-toggle {
        display: block;
    }

    /* Mostrar nav-links en móvil (pero oculto por defecto con transform) */
    .main-nav .nav-links {
        display: flex;
    }

    .main-nav {
        grid-template-columns: auto 1fr auto;
        padding: 0 0.5rem;
    }

    .logo-mobile img {
        height: 45px;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }

    .contact-notice {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .bento-card {
        padding: 1.2rem;
    }

    .bento-card-title {
        font-size: 1.3rem;
    }

    .bento-card input,
    .bento-card select,
    .bento-card textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .total-amount {
        font-size: 2.5rem;
    }

    .submit-btn-bento {
        font-size: 1rem;
        padding: 1.2rem 1.8rem;
    }

    .product-card img {
        height: 200px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-content footer {
        font-size: 1.2rem;
    }

    .footer-column h4 {
        font-size: 1.4rem;
    }

    .footer-column a,
    .footer-column p {
        font-size: 0.9rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-description,
    .modal-includes li {
        font-size: 0.85rem;
    }

    .success-modal-body h3 {
        font-size: 1.6rem;
    }

    .success-modal-body p {
        font-size: 1rem;
    }
}

/* Mobile Small (480px - 375px) */
@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .bento-card {
        padding: 1rem;
    }

    .form-footer-section {
        gap: 1rem;
    }

    .total-display {
        padding: 1rem 1.5rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .submit-btn-bento {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile Extra Small (< 375px) */
@media (max-width: 375px) {
    html {
        font-size: 11px;
    }

    .main-header {
        height: 55px;
    }

    .logo-mobile img {
        height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .bento-card {
        padding: 0.8rem;
        border-radius: 16px;
    }

    .bento-card-title {
        font-size: 1.2rem;
    }

    .total-amount {
        font-size: 1.8rem;
    }
}