/* ==========================================================================
   SONQOCAT - HERO & NOSOTROS SECTION STYLES
   ========================================================================== */

:root {
    --color-teal: #00BFA5;
    --color-pink: #B8007C;
    --color-pink-hover: #960065;
    --color-white: #FFFFFF;
    --color-text-dark: #333333;
    --font-main: 'Galano Grotesque', 'GalanoGrotesque', 'Outfit', 'Poppins', system-ui, sans-serif;
    --navbar-height: 80px;

    /* SISTEMA DE TIPOGRAFÍA FLUIDA CON CLAMP (64px, 48px, 36px) */
    --font-hero-title: clamp(2.5rem, 5vw, 4rem);      /* Max 64px, Min 40px */
    --font-title-lg: clamp(2rem, 4vw, 3rem);          /* Max 48px, Min 32px */
    --font-title-sm: clamp(1.625rem, 3.2vw, 2.25rem); /* Max 36px, Min 26px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-main);
    background-color: #FFFFFF;
}

/* NAVBAR */
.navbar {
    background-color: var(--color-teal);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background-color: rgba(0, 191, 165, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 68px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.85;
}

/* HERO SECTION - DESKTOP & TABLET DEFAULT BACKGROUND */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--navbar-height));
    background: url('../images/hero_bg.png') no-repeat center top / cover;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-content {
    max-width: 550px;
    color: var(--color-white);
    text-align: left;
}

.hero-title {
    font-size: var(--font-hero-title);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn-productos {
    display: inline-block;
    background-color: var(--color-pink);
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-productos:hover {
    background-color: var(--color-pink-hover);
    transform: translateY(-2px);
}

/* NOSOTROS SECTION */
.nosotros-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.nosotros-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.nosotros-title {
    color: var(--color-teal);
    font-size: var(--font-title-lg);
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.nosotros-intro {
    max-width: 960px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.65;
    color: #4A4A4A;
    font-weight: 400;
}

.nosotros-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nosotros-card-content {
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 35px 0 0 35px;
}

.nosotros-card-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.nosotros-card-text {
    font-size: 1.08rem;
    line-height: 1.65;
    opacity: 0.95;
    font-weight: 400;
}

.nosotros-card-image {
    width: 100%;
    height: 100%;
    display: block;
}

.nosotros-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 35px 35px 0;
}

/* SECCIÓN: ¿POR QUÉ DEBERÍAS ELEGIRNOS? */
.elegirnos-section {
    padding: 70px 0 50px 0;
    background-color: #FFFFFF;
}

.elegirnos-title {
    color: var(--color-teal);
    font-size: var(--font-title-sm);
    font-weight: 800;
    text-align: center;
    margin-bottom: 55px;
}

.elegirnos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.elegirnos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.elegirnos-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.icon-bg-teal {
    background-color: var(--color-teal);
}

.icon-bg-pink {
    background-color: var(--color-pink);
}

.elegirnos-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.elegirnos-label {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
}

.label-teal {
    color: var(--color-teal);
}

.label-pink {
    color: var(--color-pink);
}

/* ==========================================================================
   SECCIÓN PRODUCTOS - ESTILOS FONDO CON IMÁGENES DE CURVA
   ========================================================================== */
.productos-section {
    position: relative;
    width: 100%;
}

/* Mascota flotante arriba con patas/carrito reposando en la curva */
.productos-mascot {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 435px;
    margin: 0 auto -215px auto;
}

.productos-mascot img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
}

.productos-bg-wrapper {
    position: relative;
    width: 100%;
}

/* Curva superior como background-image */
.productos-curve-top {
    width: 100%;
    height: clamp(100px, 14vw, 200px);
    background: url('../images/image 20.jpg') no-repeat center bottom / 100% 100%;
    margin-bottom: -1px;
}

/* Centro con color sólido */
.productos-center {
    background-color: #0FBCAF;
    padding-bottom: 40px;
}

/* Contenido dentro del área turquesa sin tapar textos */
.productos-inner {
    position: relative;
    z-index: 5;
    max-width: 1140px;
    margin: -30px auto 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--color-white);
}

/* Curva inferior como background-image */
.productos-curve-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    height: clamp(80px, 12vw, 180px);
    background: url('../images/image 21.jpg') no-repeat center top / 100% 100%;
    margin-top: -1px;
}

.productos-title {
    font-size: var(--font-title-lg);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-white);
}

.productos-description {
    max-width: 760px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: var(--color-white);
}

/* Grid de showcase Perlada vs Granulada (Sobresaliendo ampliamente sobre la curva inferior) */
.productos-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto -230px auto;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}

.productos-showcase-item {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.showcase-group-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 36px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

.img-perlada {
    max-width: 540px;
}

.img-granulada {
    max-width: 600px;
}

.showcase-group-img:hover {
    transform: translateY(-8px);
}

/* Clases utilitarias para mostrar/ocultar por dispositivo */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* RESPONSIVE DESIGN */

/* TABLETS Y LAPTOPS (Entre 601px y 1024px) */
@media (max-width: 1024px) and (min-width: 601px) {
    .hero-container {
        padding: 0 40px;
    }

    .nosotros-card-title {
        font-size: 1.8rem;
    }

    .nosotros-card-content {
        padding: 40px 30px;
    }

    .elegirnos-icon {
        width: 110px;
        height: 110px;
    }

    .elegirnos-label {
        font-size: 1rem;
    }

    /* PRODUCTOS LAPTOP (1024px y menor) */
    .productos-section {
        margin-top: 40px;
    }

    .productos-mascot {
        max-width: 320px;
        margin: 0 auto -140px auto;
    }

    .productos-curve-top {
        height: clamp(100px, 15vw, 180px);
    }

    .productos-inner {
        margin-top: -20px;
    }

    .productos-showcase {
        max-width: 900px;
        gap: 20px;
        margin: 20px auto -150px auto;
    }

    .img-perlada {
        max-width: 390px;
    }

    .img-granulada {
        max-width: 440px;
    }
}

/* ==========================================================================
   SECCIÓN CLIENTE FINAL - ARENA PERLADA
   ========================================================================== */
.cliente-final-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 70px 20px 90px 20px;
    position: relative;
    overflow: hidden;
}

.cliente-final-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.cliente-final-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 40px;
}

.cliente-final-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cliente-final-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* 40px a 64px */
    font-weight: 800;
    color: var(--color-pink);
    line-height: 1.05;
    margin: 0;
    font-family: var(--font-main);
}

.cliente-final-badge {
    background-color: var(--color-pink);
    color: #FFFFFF;
    font-size: clamp(2.25rem, 3.8vw, 3rem); /* 36px a 48px */
    font-weight: 700;
    padding: 8px 36px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.3px;
}

.cliente-final-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.promo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.promo-text {
    font-size: clamp(2rem, 3vw, 2rem); /* 32px */
    font-weight: 400; /* Sin negrita */
    color: #333333;
    line-height: 1.2;
    margin: 0;
}

.btn-informacion {
    background-color: #FFC425;
    color: #B8007C;
    font-size: clamp(1.5rem, 2.5vw, 2rem); /* 24px a 32px */
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 196, 37, 0.35);
}

.btn-informacion:hover {
    background-color: #ffb800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 196, 37, 0.45);
}

.cliente-final-waves {
    width: 65px;
    height: auto;
    flex-shrink: 0;
}

.cliente-final-waves img {
    width: 100%;
    height: auto;
    display: block;
}

/* Center Visuals */
.cliente-final-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 25px 0 35px 0;
}

.cliente-final-mascot {
    flex: 0 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cliente-final-mascot img {
    width: 100%;
    max-width: 290px;
    height: auto;
    object-fit: contain;
    display: block;
}

.cliente-final-products {
    flex: 0 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cliente-final-products img {
    width: 100%;
    max-width: 385px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Bottom Aromas Bar (2 columnas: 30% texto, 70% imagen centrada) */
.cliente-final-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
}

.aromas-label {
    flex: 0 0 30%;
    width: 30%;
    font-size: clamp(2rem, 3.5vw, 2.625rem); /* 32px a 42px */
    font-weight: 800;
    color: var(--color-teal);
    line-height: 1.1;
    white-space: nowrap;
}

.aromas-bar {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aromas-bar img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   SECCIÓN MORADA CON CURVAS
   ========================================================================== */
.seccion-morada {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.morada-bg-wrapper {
    position: relative;
    width: 100%;
}

.morada-curve-top {
    width: 100%;
    height: clamp(80px, 12vw, 180px);
    background: url('../images/fondo_morado.png') no-repeat center bottom / 100% 100%;
    margin-bottom: -1px;
}

.morada-center {
    background-color: #B02787;
    padding: 30px 20px 40px 20px;
    color: #FFFFFF;
    text-align: left;
}

.morada-inner {
    position: relative;
    z-index: 5;
    max-width: 1140px;
    margin: 0 auto;
}

/* Modificadores de color para la sección morada */
.title-morado {
    color: #FFFFFF;
}

.badge-morado {
    background-color: #FFFFFF;
    color: #B02787;
}

.text-morado {
    color: #FFFFFF;
}

.btn-morado {
    background-color: #FFC425;
    color: #B02787;
}

.garra-white {
    filter: brightness(0) invert(1);
}

.label-morado {
    color: #FFFFFF;
}

.aromas-granulada-bar {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aromas-granulada-bar img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.morada-curve-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    height: clamp(80px, 12vw, 180px);
    background: url('../images/fondo_morado_2.png') no-repeat center top / 100% 100%;
    margin-top: -1px;
}

/* ==========================================================================
   SECCIÓN CATÁLOGO ARENA PERLADA (GRID 2x2)
   ========================================================================== */
.arena-perlada-grid-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 60px 20px 80px 20px;
}

.arena-perlada-grid-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ENCABEZADOS Y BADGES MAYORISTA */
.catalogo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    text-align: center;
}

.mayorista-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mayorista-pill.pill-pink {
    background-color: rgba(184, 0, 124, 0.08);
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
}

.mayorista-pill.pill-white {
    background-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.perlada-grid-main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 0;
    font-family: var(--font-main);
}

.perlada-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: end;
}

.perlada-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.perlada-grid-img-wrapper {
    width: 100%;
    max-width: 310px;
    height: 310px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
}

.perlada-grid-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.perlada-grid-card:hover .perlada-grid-img-wrapper img {
    transform: translateY(-6px);
}

.perlada-grid-weight {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 16px;
}

.btn-comprar {
    background-color: var(--color-pink);
    color: #FFFFFF;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(184, 0, 124, 0.3);
}

.btn-comprar:hover {
    background-color: var(--color-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 0, 124, 0.4);
}

/* ==========================================================================
   SECCIÓN TURQUESA CON CURVAS
   ========================================================================== */
.seccion-turquesa {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.turquesa-bg-wrapper {
    position: relative;
    width: 100%;
}

.turquesa-curve-top {
    width: 100%;
    height: clamp(80px, 12vw, 180px);
    background: url('../images/image 20.jpg') no-repeat center bottom / 100% 100%;
    margin-bottom: -1px;
}

.turquesa-center {
    background-color: #0FBCAF;
    padding: 30px 20px 40px 20px;
    color: #FFFFFF;
    text-align: left;
}

.turquesa-inner {
    position: relative;
    z-index: 5;
    max-width: 1140px;
    margin: 0 auto;
}

.title-turquesa {
    color: #FFFFFF;
}

.badge-turquesa {
    background-color: #FFFFFF;
    color: #0FBCAF;
}

.text-turquesa {
    color: #FFFFFF;
}

.btn-turquesa {
    background-color: #FFC425;
    color: #B8007C;
}

.label-turquesa {
    color: #FFFFFF;
}

/* Catálogo Arena Granulada en turquesa */
.granulada-grid-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: center;
    font-family: var(--font-main);
}

.granulada-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    max-width: 850px;
    margin: 0 auto;
    align-items: end;
}

.granulada-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.granulada-grid-card.card-centered {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 440px;
    width: 100%;
}

.granulada-grid-card.card-centered .granulada-grid-img-wrapper {
    max-width: 360px;
    height: 360px;
}

.granulada-grid-img-wrapper {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
}

.granulada-grid-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.granulada-grid-card:hover .granulada-grid-img-wrapper img {
    transform: translateY(-6px);
}

.granulada-grid-weight {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.btn-comprar-white {
    background-color: #FFFFFF;
    color: #0FBCAF;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 800;
    padding: 12px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-comprar-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.turquesa-curve-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    height: clamp(80px, 12vw, 180px);
    background: url('../images/image 21.jpg') no-repeat center top / 100% 100%;
    margin-top: -1px;
}

/* ==========================================================================
   SECCIÓN FINAL CON MASCOTA SOBRESALIENDO
   ========================================================================== */
.seccion-final-mascota-wrapper {
    width: 100%;
    position: relative;
    z-index: 20;
    margin-top: -230px;
    padding-top: 0;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, transparent 230px, #FFFFFF 230px);
}

.mascota-overlapping-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    z-index: 25;
    text-align: center;
    pointer-events: none;
}

.mascota-overlapping-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

/* ==========================================================================
   SECCIÓN CANALES DE ATENCIÓN
   ========================================================================== */
.canales-container {
    max-width: 960px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.canales-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 40px;
    font-family: var(--font-main);
}

.canales-cards {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.canal-card {
    position: relative;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.canal-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    align-items: stretch;
    width: 100%;
}

.canal-cliente-final .canal-card-inner {
    background-color: var(--color-pink);
}

.canal-mayorista .canal-card-inner {
    background-color: var(--color-teal);
}

.canal-content {
    padding: 40px 35px 50px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.canal-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    font-family: var(--font-main);
}

.canal-desc {
    font-size: 32px;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 15px;
    opacity: 0.95;
}

.canal-btn {
    font-size: 36px;
    font-weight: 800;
    padding: 12px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
    font-family: var(--font-main);
}

.btn-floating-left {
    position: absolute;
    bottom: -26px;
    left: 25%;
    transform: translateX(-50%);
    z-index: 15;
    white-space: nowrap;
}

.btn-floating-right {
    position: absolute;
    bottom: -26px;
    left: 75%;
    transform: translateX(-50%);
    z-index: 15;
    white-space: nowrap;
}

.btn-turquoise {
    background-color: var(--color-teal);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(0, 191, 165, 0.45);
}

.btn-turquoise:hover {
    background-color: #00a892;
    transform: translateX(-50%) translateY(-3px);
}

.btn-magenta {
    background-color: var(--color-pink);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(184, 0, 124, 0.45);
}

.btn-magenta:hover {
    background-color: var(--color-pink-hover);
    transform: translateX(-50%) translateY(-3px);
}

.canal-img-box {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.canal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   SECCIÓN DELIVERY A DOMICILIO
   ========================================================================== */
.delivery-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.delivery-container {
    max-width: 1040px;
    margin: 0 auto;
}

.delivery-card {
    width: 100%;
    background: url('../images/fondo-plaza.png') no-repeat center center / cover;
    border-radius: 30px;
    padding: 50px 40px 60px 40px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.delivery-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFC425;
    margin-bottom: 12px;
    font-family: var(--font-main);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.delivery-subtitle {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 35px;
    line-height: 1.35;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Box Magenta con Distritos */
.distritos-box {
    background-color: rgba(184, 0, 124, 0.88);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 35px 30px;
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.distritos-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
}

.distritos-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distritos-col li {
    color: #FFFFFF;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.distritos-col .dot {
    color: #FFC425;
    font-size: 1.4rem;
    margin-right: 8px;
    line-height: 1;
}

/* ==========================================================================
   SECCIÓN FINAL: MINIBAN SOBRESALIENDO
   ========================================================================== */
.miniban-section {
    width: 100%;
    position: relative;
    z-index: 25;
    margin-top: -120px;
    padding-bottom: 60px;
    text-align: center;
}

.miniban-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

.miniban-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

/* ==========================================================================
   BANNER NOTA DE COBERTURA FINAL
   ========================================================================== */
.cobertura-nota-section {
    width: 100%;
    padding: 10px 20px 60px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.cobertura-nota-container {
    max-width: 900px;
    margin: 0 auto;
}

.cobertura-nota-pill {
    background-color: var(--color-teal);
    color: #FFFFFF;
    font-size: clamp(1.05rem, 2vw, 1.8rem);
    font-weight: 400;
    padding: 18px 45px;
    border-radius: 50px;
    display: inline-block;
    width: 100%;
    max-width: 860px;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(15, 188, 175, 0.25);
    font-family: var(--font-main);
}

.cobertura-nota-pill strong {
    font-weight: 800;
}

/* NAVBAR RESPONSIVE (Hasta 768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-wrapper {
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background-color: var(--color-teal);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .nav-wrapper.active {
        max-height: 320px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
    }
}

/* CELULARES (Hasta 600px) */
@media (max-width: 600px) {

    /* HERO MÓVIL */
    .hero {
        background: url('../images/Rectangle 74.png') no-repeat center center / cover;
        padding-top: 40px;
        align-items: flex-start;
        min-height: calc(100vh - var(--navbar-height));
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .btn-productos {
        font-size: 1.1rem;
        padding: 12px 36px;
    }

    /* NOSOTROS MÓVIL */
    .nosotros-section {
        padding: 50px 0;
    }

    .nosotros-intro {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .nosotros-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nosotros-card-content {
        padding: 35px 24px;
        border-radius: 35px 35px 0 0;
    }

    .nosotros-card-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .nosotros-card-text {
        font-size: 0.98rem;
    }

    .nosotros-card-image img {
        border-radius: 0 0 35px 35px;
    }

    /* ELEGIRNOS MÓVIL (2 columnas y el 5to centrado abajo) */
    .elegirnos-section {
        padding: 40px 0 10px 0;
    }

    .elegirnos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }

    .elegirnos-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .elegirnos-icon {
        width: 120px;
        height: 120px;
        padding: 24px;
        margin-bottom: 12px;
    }

    .elegirnos-label {
        font-size: 1.05rem;
    }

    /* PRODUCTOS MÓVIL (CELULAR <= 600px CON IMÁGENES DEDICADAS GROUP 6 Y GROUP 7) */
    .productos-section {
        margin-top: 0px;
    }

    .productos-mascot {
        max-width: 240px;
        margin: 0 auto -100px auto;
    }

    .productos-curve-top {
        height: 90px;
        background: url('../images/image 20-celular.png') no-repeat center bottom / 100% 100%;
    }

    .productos-inner {
        margin-top: -15px;
    }

    .productos-curve-bottom {
        height: 70px;
        background: url('../images/image 21-celular.png') no-repeat center top / 100% 100%;
    }

    .productos-description {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .productos-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px auto 10px auto;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .img-perlada, .img-granulada {
        max-width: 280px;
    }

    /* CLIENTE FINAL MÓVIL */
    .cliente-final-section {
        padding: 20px 15px 30px 15px;
    }

    .cliente-final-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .cliente-final-header-left {
        align-items: center;
        gap: 8px;
    }

    .cliente-final-header-right {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .promo-box {
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .btn-informacion {
        padding: 12px 30px;
    }

    .cliente-final-waves {
        display: none !important;
    }

    .cliente-final-center {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 25px 0;
    }

    .cliente-final-mascot {
        flex: 1;
        max-width: 38%;
        margin: 0;
    }

    .cliente-final-mascot img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .cliente-final-products {
        flex: 1;
        max-width: 38%;
        margin: 0;
    }

    .cliente-final-products img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .cliente-final-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }

    .aromas-label {
        flex: 0 0 100%;
        width: 100%;
        font-size: 2rem; /* 32px en celular */
        white-space: normal;
        text-align: center;
    }

    .aromas-bar {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* SECCIÓN MORADA MÓVIL */
    .seccion-morada {
        margin-top: 10px;
    }

    .morada-curve-top {
        height: 70px;
    }

    .morada-curve-bottom {
        height: 70px;
    }

    .aromas-granulada-bar {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    /* CATÁLOGO ARENA PERLADA MÓVIL */
    .arena-perlada-grid-section {
        padding: 40px 15px 50px 15px;
    }

    .catalogo-header {
        margin-bottom: 25px;
        gap: 8px;
    }

    .mayorista-pill {
        padding: 6px 20px;
        font-size: 0.88rem;
        letter-spacing: 1px;
    }

    .perlada-grid-main-title {
        margin-bottom: 0;
    }

    .perlada-grid {
        gap: 35px 15px;
    }

    .perlada-grid-img-wrapper {
        max-width: 180px;
        height: 190px;
        margin-bottom: 10px;
    }

    .perlada-grid-weight {
        margin-bottom: 10px;
    }

    .btn-comprar {
        padding: 10px 20px;
    }

    /* SECCIÓN TURQUESA MÓVIL */
    .seccion-turquesa {
        margin-top: 10px;
    }

    .turquesa-curve-top {
        height: 70px;
        background: url('../images/image 20-celular.png') no-repeat center bottom / 100% 100%;
    }

    .turquesa-curve-bottom {
        height: 70px;
        background: url('../images/image 21-celular.png') no-repeat center top / 100% 100%;
    }

    /* CATÁLOGO ARENA GRANULADA MÓVIL */
    .granulada-grid-title {
        margin-bottom: 0;
    }

    .granulada-grid {
        gap: 30px 15px;
    }

    .granulada-grid-img-wrapper {
        max-width: 180px;
        height: 190px;
        margin-bottom: 10px;
    }

    .granulada-grid-card.card-centered .granulada-grid-img-wrapper {
        max-width: 215px;
        height: 225px;
    }

    .granulada-grid-weight {
        margin-bottom: 10px;
    }

    .btn-comprar-white {
        padding: 10px 19px;
    }

    /* SECCIÓN FINAL MÓVIL */
    .seccion-final-mascota-wrapper {
        margin-top: -140px;
        padding-bottom: 50px;
        background: linear-gradient(to bottom, transparent 140px, #FFFFFF 140px);
    }

    .mascota-overlapping-container {
        max-width: 250px;
        margin: 0 auto;
    }

    .mascota-overlapping-img {
        max-width: 240px;
    }

    /* CANALES MÓVIL */
    .canales-main-title {
        margin-bottom: 25px;
    }

    .canales-cards {
        gap: 45px;
    }

    .canal-card-inner {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .canal-cliente-final .canal-content {
        order: 1;
    }

    .canal-cliente-final .canal-img-box {
        order: 2;
    }

    .canal-mayorista .canal-img-box {
        order: 1;
    }

    .canal-mayorista .canal-content {
        order: 2;
    }

    .canal-content {
        padding: 25px 20px 35px 20px;
        align-items: center;
        text-align: center;
    }

    .canal-title {
        font-size: 40px;
    }

    .canal-desc {
        font-size: 32px;
    }

    .canal-img-box {
        min-height: 180px;
        max-height: 230px;
    }

    .canal-btn {
        font-size: 36px;
        padding: 10px 24px;
    }

    .btn-floating-left {
        left: 50%;
        transform: translateX(-50%);
        bottom: -22px;
        white-space: nowrap;
    }

    .btn-floating-right {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -22px;
        white-space: nowrap;
    }

    /* DELIVERY MÓVIL */
    .delivery-section {
        padding: 40px 15px;
    }

    .delivery-card {
        padding: 35px 20px 40px 20px;
        border-radius: 20px;
    }

    .delivery-title {
        font-size: 40px;
    }

    .delivery-subtitle {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .distritos-box {
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .distritos-group {
        background-color: rgba(184, 0, 124, 0.88);
        backdrop-filter: blur(4px);
        border-radius: 18px;
        padding: 25px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .distritos-col li {
        font-size: 0.95rem;
        white-space: normal;
    }

    /* MINIBAN MÓVIL */
    .miniban-section {
        margin-top: -65px;
        padding-bottom: 30px;
    }

    .miniban-container {
        max-width: 360px;
    }

    .miniban-img {
        max-width: 340px;
    }

    /* COBERTURA NOTA MÓVIL */
    .cobertura-nota-section {
        padding: 5px 15px 40px 15px;
    }

    .cobertura-nota-pill {
        padding: 14px 22px;
        font-size: 0.95rem;
        border-radius: 30px;
    }
}

/* ==========================================================================
   EFECTOS DE ENTRADA, SALIDA Y SCROLL ANIMADO (IMPACTO VISUAL PREMIUM)
   ========================================================================== */

/* Base de revelación en Scroll (Transición más pausada, elegante e impactante) */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-down {
    transform: translateY(-60px);
}

.reveal-left {
    transform: translateX(-75px);
}

.reveal-right {
    transform: translateX(75px);
}

.reveal-zoom {
    transform: scale(0.78);
}

.reveal-flip {
    transform: perspective(800px) rotateX(25deg) translateY(50px);
}

/* Estado visible al hacer Scroll */
.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
}

/* Retardos de animación (Delays suavizados) */
.delay-100 { transition-delay: 0.2s; }
.delay-200 { transition-delay: 0.4s; }
.delay-300 { transition-delay: 0.6s; }
.delay-400 { transition-delay: 0.8s; }
.delay-500 { transition-delay: 1.0s; }

/* Animación en cascada (Stagger Children más pausado) */
.stagger-container .stagger-item {
    opacity: 0;
    transform: translateY(45px) scale(0.90);
    transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-container.is-visible .stagger-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stagger-container.is-visible .stagger-item:nth-child(1) { transition-delay: 0.15s; }
.stagger-container.is-visible .stagger-item:nth-child(2) { transition-delay: 0.32s; }
.stagger-container.is-visible .stagger-item:nth-child(3) { transition-delay: 0.49s; }
.stagger-container.is-visible .stagger-item:nth-child(4) { transition-delay: 0.66s; }
.stagger-container.is-visible .stagger-item:nth-child(5) { transition-delay: 0.83s; }
.stagger-container.is-visible .stagger-item:nth-child(6) { transition-delay: 1.00s; }

/* ANIMACIONES CONTINUAS DE MASCOTAS (FLOAT & BOBBING) */
@keyframes floatMascot {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(1.2deg);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes pulseYellowGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 196, 37, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 28px rgba(255, 196, 37, 0.65);
        transform: scale(1.025);
    }
}

@keyframes pulsePinkGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(184, 0, 124, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(184, 0, 124, 0.55);
    }
}

/* Aplicación de animaciones flotantes */
.productos-mascot.is-visible img,
.cliente-final-mascot.is-visible img,
.mascota-overlapping-container.is-visible img {
    animation: floatMascot 4.5s ease-in-out infinite alternate;
}

.miniban-container.is-visible img {
    animation: floatGentle 5s ease-in-out infinite alternate;
}

/* Pulsación brillante en botones principales */
.btn-informacion {
    animation: pulseYellowGlow 3s ease-in-out infinite;
}

.btn-productos, .btn-comprar {
    animation: pulsePinkGlow 3.5s ease-in-out infinite;
}

/* EFECTOS INTERACTIVOS (HOVER & FOCUS) */
.elegirnos-item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.elegirnos-item:hover {
    transform: translateY(-10px);
}

.elegirnos-icon {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, filter 0.35s ease;
}

.elegirnos-item:hover .elegirnos-icon {
    transform: scale(1.12) rotate(4deg);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.perlada-grid-card, .granulada-grid-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.perlada-grid-card:hover, .granulada-grid-card:hover {
    transform: translateY(-10px);
}

.perlada-grid-card:hover .perlada-grid-img-wrapper img,
.granulada-grid-card:hover .granulada-grid-img-wrapper img {
    transform: translateY(-12px) scale(1.04);
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
}

.canal-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.canal-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.delivery-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.cobertura-nota-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cobertura-nota-pill:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 28px rgba(15, 188, 175, 0.4);
}

/* BOTÓN FLOTANTE "VOLVER ARRIBA" (BACK TO TOP) */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-pink) 0%, #960065 100%);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px) scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, background-color 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(184, 0, 124, 0.45);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(184, 0, 124, 0.7);
    background: linear-gradient(135deg, #d60090 0%, var(--color-pink) 100%);
}

.back-to-top i {
    transition: transform 0.2s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* BARRA DE PROGRESO DE SCROLL EN LA PARTE SUPERIOR */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC425 0%, var(--color-pink) 50%, var(--color-teal) 100%);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 1px 6px rgba(255, 196, 37, 0.6);
}

/* RESPONSIVE SCROLL REVEAL OPTIMIZATIONS */
@media (max-width: 600px) {
    .reveal-left, .reveal-right {
        transform: translateY(40px); /* En móviles, transformar desde abajo para evitar overflow horizontal */
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

/* FIN DEL ARCHIVO */


