/* ================================
   FONT DECLARATIONS
   ================================ */

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-ExtralightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* ================================
   CSS VARIABLES
   ================================ */

:root {
    --primary-gold: #D4AF37;
    --dark-green: #2C5F41;
    --light-green: #7CB342;
    --warm-brown: #8B4513;
    --cream: #F5F5DC;
    --dark-text: #2C2C2C;
}

/* ================================
   BASE STYLES
   ================================ */

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

body {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
}

/* Prevenir overflow horizontal global */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Asegurar que las imágenes no causen overflow */
img, video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'GeneralSans', sans-serif;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.navbar-enalia {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    height: 150px;
    padding: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}

.container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.navbar-enalia.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
}

/* Páginas con plantilla Elementor (Lienzo Enalia): el main empieza bajo el header (navbar 150px) */
.site-main.elementor-page-template {
    margin-top: 150px;
}

/* Botón flotante “volver arriba” (insertado por main.js) */
.scroll-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: radial-gradient(
        circle at 30% 28%,
        #9ad65c 0%,
        var(--light-green) 45%,
        var(--dark-green) 120%
    );
    box-shadow:
        0 6px 20px rgba(44, 95, 65, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease,
        visibility 0.2s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-to-top i {
    font-size: 1.35rem;
    line-height: 1;
    filter: drop-shadow(0 1px 0 rgba(44, 95, 65, 0.35));
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(44, 95, 65, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.22),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.scroll-to-top:focus-visible {
    outline: 3px solid var(--cream);
    outline-offset: 3px;
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 16px;
        left: 16px;
        width: 52px;
        height: 52px;
    }

    .scroll-to-top i {
        font-size: 1.2rem;
    }
}

.navbar-brand-enalia {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
    padding-top: 10px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

.logo-enalia {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.navbar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-container {
    display: flex;
    max-width: 470px;
    width: 100%;
    height: 50px;
    position: relative;
}

.search-input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 25px;
    padding: 0 60px 0 20px;
    font-size: 16px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    outline: none;
    background: white;
}

.search-input::placeholder {
    color: #999;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 300;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #B1C17B;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: #8FA05E;
    transform: translateY(-50%) scale(1.05);
}

/* Navigation Section */
.nav-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-nav-enalia {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item-enalia {
    position: relative;
}

.nav-link-enalia {
    color: white !important;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    /* padding: 10px 0; */
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link-enalia:hover {
    color: #B1C17B !important;
}

.nav-link-enalia::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #B1C17B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-enalia:hover::after,
.nav-link-enalia.active::after {
    width: 100%;
}

.nav-link-enalia.active {
    color: #B1C17B !important;
}

/* Mobile Navigation */
.navbar-toggler-enalia {
    border: none;
    background: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    display: none;
}

.navbar-toggler-enalia:focus {
    box-shadow: none;
}

.navbar-toggler-enalia i {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.navbar-toggler-enalia .fa-times {
    transform: rotate(180deg);
}

.navbar-toggler-enalia .fa-bars {
    transform: rotate(0deg);
}

/* Corrección específica para el menú móvil */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw; /* Forzar ancho completo de viewport */
    margin-left: calc(-50vw + 50%); /* Centrar y expandir */
    background: rgba(0, 0, 0, 0.95);
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-15px);
    box-sizing: border-box;
}

.mobile-nav.show {
    max-height: 86vh; /* Cambiar a altura dinámica */
    opacity: 1;
    padding: 25px 20px;
    transform: translateY(0);
    overflow-y: auto; /* Permitir scroll si es necesario */
}

.mobile-nav.show .mobile-dropdown-enalia {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav .nav-link-enalia {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

.mobile-nav.show .nav-link-enalia {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.show .nav-link-enalia:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.show .nav-link-enalia:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.show .nav-link-enalia:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.show .mobile-dropdown-enalia:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.show .nav-link-enalia:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.show .nav-link-enalia:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.show .nav-link-enalia:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.show .nav-link-enalia:nth-child(8) { transition-delay: 0.45s; }

/* ================================
   HERO SECTIONS
   ================================ */

/* Hero Home */
.hero-section {
    height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 50px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 150px;
}

.hero-section-image {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 50px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -2;
}

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

/* Hero home: escritorio vs móvil (ACF) + YouTube */
.hero-home-desktop-only {
    display: block;
}

.hero-home-mobile-only {
    display: none;
}

.hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-youtube-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

/*
 * YouTube en #home: z-index negativo deja el iframe detrás del fondo del bloque
 * (no recibe clics). El “cover” gigante recorta la barra de controles.
 */
#home.hero-home--youtube {
    isolation: isolate;
}

#home.hero-home--youtube .hero-youtube {
    z-index: 1;
    overflow: hidden;
    pointer-events: auto;
}

#home.hero-home--youtube .hero-youtube-iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
    pointer-events: auto;
}

/* Overlay encima solo para oscurecer; no intercepta clics */
#home.hero-home--youtube .hero-overlay {
    z-index: 2;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    display: none;
}

.hero-content h1 {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Quiénes Somos */
.hero-quienes-somos {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/quienes-somos-banner.png') center/cover no-repeat;
}

.hero-overlay-quienes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content-quienes {
    position: relative;
    z-index: 2;
}

.hero-title-quienes {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 4rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    line-height: 1;
}

/* Hero Compromiso */
.hero-compromiso {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/compromiso-banner.png') center/cover no-repeat;
}

.hero-overlay-compromiso {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content-compromiso {
    position: relative;
    z-index: 2;
}

.hero-title-compromiso {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    line-height: 0.6;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.05em;
}

.hero-title-large {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 10px;
}

.hero-title-main {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
    color: #f7ffc0;
}

/* Estilos base mejorados */
.hero-title-large-somos {
    font-size: 4.8rem;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 20px;
    line-height: 1;
    font-weight: 440;
}

.hero-title-main-somos {
    font-size: 4rem;
    display: block;
    margin-bottom: 0px;
    color: #f7ffc0;
    line-height: 1.1;
}

.hero-title-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    display: block;
    opacity: 0.9;
}

.hero-title-brand {
    font-weight: 700;
}

/* ================================
   CONTENT SECTIONS - HOME
   ================================ */

/* About Section */
.about-section {
    background-color: #eaeaea;
    background-image: url('../images/background-beig.png');
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0px !important;
}

.about-section .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.about-section .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.about-section [class*="col-"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding-top: 60px;
    margin-top: 0 !important;
}

.about-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin-bottom: 30px;
    animation: growLine 1s ease-out 0.5s both;
}

.about-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.about-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
    padding-top: 60px;
    margin-top: 0 !important;
}

.about-map {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.about-map:hover {
    transform: scale(1.02);
}

.about-parallax {
    transition: transform 0.1s ease-out;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background-image: url('../images/background-compromiso.png');
    background-position: left center;
    background-size: 120%;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.commitment-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.commitment-line {
    width: 60px;
    height: 4px;
    background: white;
    margin-bottom: 30px;
}

.commitment-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.commitment-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5rem;
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background-image: url('../images/background-verde.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.brands-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.brands-line {
    width: 60px;
    height: 4px;
    background: white;
    margin-bottom: 30px;
}

.brands-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.brands-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.brands-text strong {
    font-weight: 700;
}

/* Texto WYSIWYG (ACF): párrafos generados por el editor */
.brands-text > p:first-child {
    margin-top: 0;
}

.brands-text > p:last-child {
    margin-bottom: 0;
}

.brands-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.brands-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.brands-image:hover {
    transform: scale(1.02);
}

/* Experiences Section */
.experiences-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.experiences-container {
    max-width: 1000px;
    margin: 0 auto;
}

.experiences-header {
    margin-bottom: 60px;
}

.experiences-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin: 0 auto 30px;
}

.experiences-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.experiences-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-text);
    opacity: 0.8;
}

.experience-card {
    height: 650px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-image {
    height: 50%;
    position: relative;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

a.experience-card-link {
    color: inherit;
}

a.experience-card-link:hover .experience-card-title {
    color: var(--dark-green);
}

.experience-image:hover img {
    transform: scale(1.05);
}

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

.experience-card-1 .experience-overlay {
    background: linear-gradient(135deg, rgba(124,179,66,0.7), rgba(220,20,60,0.7));
}

.experience-card-2 .experience-overlay {
    background: linear-gradient(135deg, rgba(222,184,135,0.7), rgba(218,165,32,0.7));
}

.experience-card-3 .experience-overlay {
    background: linear-gradient(135deg, rgba(220,20,60,0.7), rgba(178,34,34,0.7));
}

.experience-content {
    height: 50%;
    background: white;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.experience-card-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.experience-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.5;
}

/* Maestros Enalia Section */
.maestros-section {
    padding: 0;
    min-height: 500px;
}

.maestros-image-container {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.maestros-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.maestros-content-container {
    background: url('../images/background-rojo.png') center/cover no-repeat;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.maestros-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 40px;
}

.maestros-icon {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 15px;
}

.maestros-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.maestros-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.maestros-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* ================================
   CONTENT SECTIONS - QUIÉNES SOMOS
   ================================ */

/* Experiencia Section */
.experiencia-section {
    padding: 120px 0;
    background: #eaeaea;
    background-image: url('../images/background-beig.png');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

.experiencia-logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.experiencia-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.experiencia-logo:hover {
    transform: scale(1.05);
}

.experiencia-content {
    padding-left: 20px;
}

.experiencia-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

.experiencia-description:last-child {
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: white;
}

.timeline-header {
    margin-bottom: 60px;
}

.timeline-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin: 0 auto 30px;
}

.timeline-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 0;
    line-height: 1.2;
}

.timeline-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-carousel {
    overflow: hidden;
    position: relative;
}

.timeline-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.timeline-slide.active {
    display: block;
    opacity: 1;
}

.timeline-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.timeline-image-section {
    flex: 1;
    background: #f0f0f0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.timeline-year-overlay {
    position: absolute;
    top: 80px;
    left: -120px;
    border-radius: 8px;
    padding: 10px 60px;
    z-index: 2;
    transform: rotate(-90deg);
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(255, 255, 255, 0.3) 70%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(3px);
}

.timeline-year {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 7rem;
    color: white;
    line-height: 1;
    margin: 0;
    display: block;
    transform-origin: center center;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.timeline-content-section {
    flex: 1;
    padding: 40px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 20px 20px 0;
}

.timeline-slide-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.timeline-slide-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
}

.timeline-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.timeline-nav-btn {
    background: transparent;
    border: 2px solid #B1C17B;
    color: #B1C17B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-nav-btn:hover:not(:disabled) {
    background: #B1C17B;
    color: white;
}

.timeline-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.timeline-dots {
    display: flex;
    gap: 10px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(177,193,123,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.timeline-dot.active {
    background: #B1C17B;
}

/* Marca País Section */
.marca-pais-section {
    padding: 120px 0;
    background: #f8f8f8;
    background-image: url('../images/background-gris-colombia.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.marca-pais-header {
    margin-bottom: 60px;
}

.marca-pais-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.marca-pais-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 0;
    line-height: 1.2;
}

.marca-pais-content-left {
    padding-right: 20px;
}

.marca-pais-content-right {
    padding-left: 20px;
}

.marca-pais-mision {
    margin-bottom: 0;
}

.marca-pais-vision {
    margin-bottom: 0;
}

.marca-pais-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #B1C17B;
    margin-bottom: 25px;
    line-height: 1.3;
}

.marca-pais-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Valores Section */
.valores-section {
    padding: 120px 0;
    background: #97AC50;
    color: white;
    position: relative;
    overflow: hidden;
}

.valores-container {
    position: relative;
    z-index: 4;
}

.valores-copa-decorativa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.8;
}

.valores-copa {
    width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.valores-filigrana-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-image: url('../images/filigrana-left-valores.png');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.valores-filigrana-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    height: 100%;
    background-image: url('../images/filigrana-right-valores.png');
    background-position: right top;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.valores-line {
    width: 60px;
    height: 8px;
    background: white;
    margin-bottom: 30px;
}

.valores-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.valores-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 350px;
}

.valores-carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.valores-carousel {
    position: relative;
    overflow: hidden;
}

.valores-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.valores-slide.active {
    display: block;
    opacity: 1;
}

.valores-card {
    background: white;
    border-radius: 20px;
    padding: 48px 36px 36px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 60px;
    min-height: 280px;
}

.valores-card-image {
    margin-bottom: 25px;
    min-height: 183px;
    height: 183px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.valores-card-image img {
    max-width: 250px;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.valores-card-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.49rem;
    color: var(--dark-text);
    line-height: 1.4;
    margin: 0;
}

.valores-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #97AC50;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.valores-prev {
    left: 0;
}

.valores-next {
    right: 0;
}

.valores-nav-btn.enabled:hover,
.valores-nav-btn:not(.disabled):hover {
    background: rgba(151, 172, 80, 0.9);
    color: white;
    border-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.valores-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.valores-nav-btn.enabled {
    opacity: 1;
    cursor: pointer;
}

.valores-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.valores-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.valores-dot.active {
    background: white;
}

/* Planta Section */
.planta-section {
    padding: 50px 0 120px;
    background: rgb(253, 253, 253);
    position: relative;
    overflow: hidden;
}

.planta-filigrana-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-image: url('../images/planta-botella-left.webp');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.planta-filigrana-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-image: url('../images/planta-botella-right.webp');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.planta-section .container {
    position: relative;
    z-index: 2;
}

.planta-header {
    margin-bottom: 0;
}

.planta-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin: 0 auto 30px;
}

.planta-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.planta-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-text);
    opacity: 0.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contenido Planta Section */
.contenido-planta-section {
    padding: 0 0 120px;
    background: white;
    position: relative;
    z-index: 3;
}

.contenido-planta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
    padding-top: 60px;
}

.contenido-planta-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contenido-planta-description:last-child {
    margin-bottom: 0;
}

.contenido-planta-gallery {
    margin-top: -80px;
    position: relative;
    z-index: 4;
}

.contenido-planta-image-container {
    display: flex;
    flex-direction: column;
    height: 650px;
    gap: 15px;
}

.contenido-planta-row-top {
    display: flex;
    height: 68%;
    gap: 15px;
}

.contenido-planta-row-bottom {
    display: flex;
    height: 32%;
    gap: 15px;
}

.contenido-planta-col-large {
    flex: 0 0 68%;
}

.contenido-planta-col-small {
    flex: 0 0 32%;
}

.contenido-planta-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.contenido-planta-image-item {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.contenido-planta-image-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contenido-planta-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.contenido-planta-image-item:hover img {
    transform: scale(1.05);
}

/* Recorridos Section */
.recorridos-section {
    padding: 80px 0 120px;
    background: white;
}

.recorridos-header {
    margin-bottom: 50px;
}

.recorridos-line {
    width: 60px;
    height: 10px;
    background: #FFF;
    margin: 0 auto 30px;
}

.recorridos-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.recorridos-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Recorridos Planta Section */
.recorridos-planta-section {
    padding: 50px 0;
    background: #97AC50;
    color: white;
    position: relative;
    overflow: hidden;
}

.recorridos-filigrana-left {
    position: absolute;
    top: -25px;
    left: 0;
    width: 295px;
    height: 100%;
    background-image: url(../images/filigrana-left-recorridos.webp);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.5) contrast(1.2);
    opacity: 0.7;
}

.recorridos-planta-section .container {
    position: relative;
    z-index: 2;
}

.recorridos-planta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.recorridos-planta-text-white {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
}

.recorridos-planta-text-dark {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #2C2C2C;
    line-height: 1.4;
    margin-bottom: 0;
}

.recorridos-planta-gallery {
    position: relative;
}

.recorridos-planta-image-container {
    display: flex;
    flex-direction: column;
    height: 400px;
    gap: 12px;
}

.recorridos-planta-row-top {
    display: flex;
    height: 70%;
    gap: 12px;
}

.recorridos-planta-row-bottom {
    display: flex;
    height: 30%;
    gap: 12px;
}

.recorridos-planta-col-half {
    flex: 0 0 50%;
}

.recorridos-planta-image-item {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.recorridos-planta-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.recorridos-planta-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recorridos-planta-image-item:hover img {
    transform: scale(1.1);
}

/* Experiencia Final Section */
.experiencia-final-section {
    padding: 120px 0;
    background: white;
}

.experiencia-final-images {
    position: relative;
    height: 500px;
}

.experiencia-final-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.experiencia-final-image-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 55%;
    z-index: 2;
}

.experiencia-final-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experiencia-final-image-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 65%;
    z-index: 1;
}

.experiencia-final-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experiencia-final-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.experiencia-final-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.experiencia-final-highlight {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--dark-text);
    line-height: 1.5;
    margin-bottom: 40px;
}

.experiencia-final-green {
    color: #B1C17B;
    font-weight: 600;
}

.experiencia-final-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.experiencia-final-cta {
    margin-bottom: 0;
}

.experiencia-final-contact-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 1.95rem;
    color: #666666;
    margin-bottom: -20px;
}

.experiencia-final-phone {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #B1C17B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experiencia-final-phone:hover {
    color: #8FA05E;
    text-decoration: none;
}

/* ================================
   CONTENT SECTIONS - COMPROMISO
   ================================ */

/* RAIS Section */
.rais-section {
    padding: 0;
    background: linear-gradient(90deg, #f0f0f0 50%, white 50%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.rais-section .container {
    max-width: 100%;
    padding: 0;
}

.rais-section .row {
    margin: 0;
}

.rais-content {
    padding: 120px 60px 120px 8.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.rais-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.rais-title {
    font-family: 'GeneralSans', sans-serif;
    margin-bottom: 40px;
    line-height: 1.1;
}

.rais-title-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
}

.rais-title-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-text);
    display: block;
}

.rais-description-block {
    margin-bottom: 0px;
}

.rais-question {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.rais-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.rais-description-final {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.rais-section .col-lg-6:last-child {
    padding: 0 !important;
    background: url('../images/hojas-solas.png') center/cover no-repeat;
    background-color: white;
    min-height: 730px;
}

.rais-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 730px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.rais-logo-centered {
    width: auto;
    height: 400px;
    max-width: 80%;
    object-fit: contain;
    filter: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.rais-logo-centered:hover {
    transform: scale(1.05);
}

/* Pilares Section */
.pilares-section {
    padding: 30px 0;
    background: white;
}

.pilares-header {
    margin-bottom: 40px;
}

.pilares-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin-bottom: 0;
}

.pilares-icon-top {
    text-align: left;
}

.pilares-icon-bottom {
    text-align: right;
}

.pilares-leaf-icon-top {
    width: 60px;
    height: auto;
    opacity: 0.8;
    margin-left: 150px;
}

.pilares-leaf-icon-down {
    width: 260px;
    height: auto;
    opacity: 0.8;
}

.pilares-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pilar-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 0;
}

.pilar-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.pilar-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: none;
}

.pilar-content {
    flex: 1;
    padding-top: 5px;
}

.pilar-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    color: #B1C17B;
    margin-bottom: 8px;
}

.pilar-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--dark-text);
    line-height: 1.5;
    margin: 0;
}

/* Manos Plantas Section */
.manos-plantas-section {
    padding: 0;
    background: white;
    overflow: hidden;
}

.manos-plantas-image-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.manos-plantas-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: transparent;
}

.manos-plantas-image:hover {
    transform: scale(1.02);
}

/* Gestión Agua Section */
.gestion-agua-section {
    padding: 120px 0;
    background: white;
}

.gestion-agua-header {
    text-align: center;
    margin-bottom: 80px;
}

.text-left {
    text-align: left;
}

.gestion-agua-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin: 0 0 30px 0px;
}

.gestion-agua-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.2;
}

.gestion-agua-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
}

.gestion-agua-green-box {
    width: 160px;
    height: 160px;
    background: rgb(253, 253, 253, 0.45);
    border-radius: 15px;
    flex-shrink: 0;
    align-self: stretch;
}

.gestion-agua-number-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gestion-agua-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gestion-agua-number {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: #B1C17B;
    line-height: 1;
    margin: 0 0 10px 0;
    display: block;
}

.gestion-agua-grid {
    margin-top: 60px;
}

.gestion-agua-card {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    height: auto;
    transition: none;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gestion-agua-card-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.gestion-agua-card-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Innovación en Botellas Section */
.innovacion-botellas-section {
    padding: 0;
    background: white;
}

.innovacion-top-section {
    padding: 120px 0 60px;
    background: white;
}

.innovacion-title-container {
    padding-right: 40px;
}

.innovacion-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.innovacion-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin: 0;
}

.innovacion-description-container {
    padding-left: 40px;
    display: flex;
    align-items: center;
    height: 100%;
}

.innovacion-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.innovacion-bottom-section {
    padding: 60px 0 120px;
    background: url('../images/background-botellas2.png') center/contain no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.innovacion-circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid #B1C17B;
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
}

.innovacion-left-content {
    padding-top: 33.33%;
    position: relative;
    z-index: 2;
}

.innovacion-right-content {
    padding-top: 50%;
    position: relative;
    z-index: 2;
}

.innovacion-line-full {
    width: 100%;
    height: 4px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.innovacion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.innovacion-list-item {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.innovacion-list-item:before {
    content: '•';
    color: #666666;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.innovacion-list-item:last-child {
    margin-bottom: 0;
}

.innovacion-leaf-container {
    text-align: left;
    margin-top: 30px;
}

.innovacion-leaf {
    width: 140px;
    height: auto;
    opacity: 0.8;
}

/* Reciclaje de Botellas Section */
.reciclaje-botellas-section {
    padding: 0;
    background: #F0F0F0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.reciclaje-botellas-section .row {
    margin: 0;
}

.reciclaje-content {
    background: #f0f0f0;
    padding: 120px 60px 120px 8.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
    min-height: 700px;
}

.reciclaje-icon-container {
    margin-bottom: 40px;
}

.reciclaje-icon {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.reciclaje-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.reciclaje-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.reciclaje-image-container {
    height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.reciclaje-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reciclaje-image:hover {
    transform: scale(1.02);
}

/* Tómatelo en Serio Section */
.tomatelo-serio-section {
    padding: 0;
    background: white;
}

.tomatelo-header-section {
    padding: 120px 0 60px;
    background: white;
}

.tomatelo-line-thick {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin: 0 auto 30px;
}

.tomatelo-main-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin: 0;
}

.tomatelo-carousel-section {
    padding: 0 0 120px;
    background: white;
}

.tomatelo-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.tomatelo-carousel {
    position: relative;
    overflow: hidden;
}

.tomatelo-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tomatelo-slide.active {
    display: block;
    opacity: 1;
}

.tomatelo-slide .row {
    margin: 0;
    min-height: 600px;
}

.tomatelo-image-container {
    height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tomatelo-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tomatelo-slide-image:hover {
    transform: scale(1.02);
}

.tomatelo-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
    background: white;
}

.tomatelo-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tomatelo-slide-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 2.6rem;
    color: #B1C17B;
    line-height: 1.1;
    margin: 0;
}

.tomatelo-title-highlight {
    font-weight: 700;
    font-size: 2.6rem;
    color: #3E5609;
}

.tomatelo-title-icon {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.tomatelo-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tomatelo-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tomatelo-seals-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tomatelo-seal {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.tomatelo-navigation {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.tomatelo-nav-btn {
    width: 50px;
    height: 50px;
    background: #B1C17B;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tomatelo-nav-btn:hover:not(:disabled) {
    background: #8FA05E;
    transform: scale(1.1);
}

.tomatelo-nav-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* 5 Ideas Creativas Section */
.ideas-creativas-section {
    padding: 0;
    background: #F0F0F0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.ideas-creativas-section .row {
    margin: 0;
}

.ideas-content {
    background: #f0f0f0;
    padding: 120px 0 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 700px;
    min-height: 700px;
    position: relative;
}

.ideas-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    z-index: 1;
}

.ideas-content > * {
    position: relative;
    z-index: 2;
    max-width: 66.67%;
    margin-left: 25%;
}

.ideas-header-elements {
    display: block;
    margin-bottom: 40px;
    position: relative;
}

.ideas-leaf {
    position: absolute;
    left: -120px;
    top: 0;
    width: 80px;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

.ideas-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin-bottom: 30px;
}

.ideas-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.3;
    max-width: 100%;
}

.ideas-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
}

.ideas-description:last-child {
    margin-bottom: 0;
}

.ideas-visual-container {
    height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ideas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/fondo_carinoso.webp') center/cover no-repeat;
    z-index: 1;
}

.ideas-bottle-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.ideas-bottle {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.ideas-bottle:hover {
    transform: scale(1.05);
}

.ideas-decorative-leaf {
    position: absolute;
    bottom: 45px;
    right: 26%;
    z-index: 2;
}

.ideas-leaf-decoration {
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.ideas-leaf-decoration:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Ideas Carousel Section */
.ideas-carousel-section {
    padding: 60px 0 120px;
    background: white;
}

.ideas-carousel-container {
    position: relative;
    max-width: 900px;
    margin: -130px auto 0;
    z-index: 10;
}

.ideas-carousel {
    overflow: hidden;
    position: relative;
}

.ideas-carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ideas-carousel-slide.active {
    display: block;
    opacity: 1;
}

.ideas-carousel-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: white;
    min-height: 350px;
}

.ideas-carousel-image-section {
    flex: 1;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.ideas-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ideas-carousel-number {
    position: absolute;
    top: 140px;
    left: -50px;
    z-index: 2;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ideas-number-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.ideas-number-big {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    display: block;
    line-height: 1;
    transform: rotate(-90deg);
    transform-origin: center;
}

.ideas-carousel-content-section {
    flex: 1;
    padding: 40px;
    background: url('../images/background-carrusel-ideas.png') center/cover no-repeat;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.ideas-corner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.ideas-corner-image {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.ideas-carousel-content {
    position: relative;
    z-index: 1;
}

.ideas-carousel-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ideas-carousel-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.ideas-carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 15;
}

.ideas-carousel-nav-btn {
    background: none;
    border: none;
    color: #B1C17B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.ideas-carousel-nav-btn:hover:not(:disabled) {
    color: #8FA05E;
    transform: scale(1.2);
}

.ideas-carousel-nav-btn:disabled {
    color: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: #f0f0f0;
    color: var(--dark-text);
    padding: 0px 0 0;
    margin: 0;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-logo-container {
    margin-bottom: 30px;
}

.footer-logo-svg {
    width: 200px;
    height: auto;
    filter: brightness(0);
}

.footer-section {
    margin-top: 100px;
}

.footer-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.5;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-contact-icon {
    color: #B1C17B;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 18px;
}

.footer-contact-content h6 {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-content p {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.4;
}

.footer-contact-content .city {
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-section h5 {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dark-text);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dark-text);
    margin: 0;
}

.footer-social-container {
    text-align: right;
    margin-top: 0px;
}

.footer-social-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social-icons a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: #B1C17B;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none !important;
}

.footer-social-icons a:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.footer-privacy {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dark-text);
    text-decoration: none;
    cursor: pointer;
}

.footer-legal-section {
    border-top: 2px solid #c0c0c0;
    padding: 30px 0;
    text-align: center;
}

.footer-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-legal-main {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal-secondary {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0px;
    line-height: 1;
}

.footer-legal-secondary strong {
    font-weight: 700;
    color: #333;
}

.footer-legal-copyright {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 20px;
}

.footer-prohibition-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-prohibition-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-prohibition-image:hover {
    opacity: 1;
}

/* ================================
   UTILITY CLASSES & BUTTONS
   ================================ */

.section-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.btn-custom {
    background: var(--light-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-about {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
}

.btn-about:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
}

.btn-commitment {
    background: white;
    color: #B1C17B;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-commitment:hover {
    background: #B1C17B;
    color: white;
    border-color: #B1C17B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-brands {
    background: white;
    color: #B1C17B;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-brands:hover {
    background: #B1C17B;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-maestros {
    background: white;
    color: #B22222;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-maestros:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-innovation {
    background: white;
    color: #B1C17B;
    border: 2px solid white;
    padding: 20px 30px;
    border-radius: 30px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    max-width: 300px;
}

.btn-innovation:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Para desktop y tablet, ocultar el logo del hero */
@media (min-width: 769px) {
    .hero-logo-mobile {
        display: none;
    }
}

/* ================================
   RESPONSIVE DESIGN - 991px
   ================================ */

@media (max-width: 991px) {
    /* Navigation */
    .navbar-toggler-enalia {
        display: block;
    }
    
    .search-container {
        max-width: 400px;
    }

    .hero-title-large-somos {
        font-size: 3.5rem;
        letter-spacing: 15px;
        margin-bottom: 12px;
    }
    
    .hero-title-main-somos {
        font-size: 2.3rem;
    }
    
    /* Titles */
    .about-title,
    .commitment-title,
    .brands-title,
    .experiences-title,
    .marca-pais-title,
    .valores-title,
    .planta-title,
    .reconocimientos-title,
    .gestion-agua-title,
    .innovacion-title,
    .reciclaje-title,
    .tomatelo-main-title {
        font-size: 2.3rem;
    }

    .hero-title-quienes {
        font-size: 3rem;
    }
    
    .hero-title-large,
    .hero-title-main {
        font-size: 3.5rem;
    }
    
    .hero-title-subtitle {
        font-size: 2rem;
    }
    
    .rais-title-main {
        font-size: 3rem;
    }
    
    .gestion-agua-number {
        font-size: 3.5rem;
    }

    /* Layout adjustments */
    .marca-pais-content-left {
        padding-right: 10px;
        margin-bottom: 40px;
    }
    
    .marca-pais-content-right {
        padding-left: 10px;
    }
    
    .valores-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
        max-width: 400px;
    }

    .experiencia-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .contenido-planta-text {
        padding-right: 20px;
        margin-bottom: 40px;
        padding-top: 40px;
    }
    
    .contenido-planta-gallery {
        margin-top: -60px;
    }

    .recorridos-planta-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .recorridos-planta-text-white {
        font-size: 1rem;
    }
    
    .recorridos-planta-text-dark {
        font-size: 1.2rem;
    }

    .experiencia-final-content {
        padding-left: 20px;
        margin-top: 40px;
    }
    
    .experiencia-final-highlight {
        font-size: 1.2rem;
    }
    
    .experiencia-final-phone {
        font-size: 1.6rem;
    }

    .planta-title {
        font-size: 2.4rem;
    }
    
    .planta-subtitle {
        font-size: 1.1rem;
    }
    
    .planta-filigrana-left,
    .planta-filigrana-right {
        width: 200px;
    }
    
    /* Compromiso sections */
    .rais-section {
        background: #f0f0f0;
        padding: 80px 0;
    }
    
    .rais-section .col-lg-6:last-child {
        background: url('../images/hojas-solas.png') center/cover no-repeat;
        background-color: white;
        min-height: 400px;
    }
    
    .rais-content {
        padding: 0 20px 40px;
        text-align: center;
    }
    
    .rais-logo-container {
        height: 400px;
    }
    
    .rais-logo-centered {
        height: 300px;
    }
    
    .innovacion-title-container,
    .innovacion-description-container {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .innovacion-bottom-section {
        background-size: cover;
        min-height: 500px;
    }
    
    .innovacion-circle-decoration {
        width: 250px;
        height: 250px;
    }
    
    .reciclaje-botellas-section {
        min-height: auto;
    }
    
    .reciclaje-content {
        height: auto;
        min-height: 400px;
        padding: 80px 40px;
        text-align: center;
    }
    
    .reciclaje-image-container {
        height: 400px;
    }
    
    .reciclaje-description {
        max-width: 100%;
    }
    
    .tomatelo-slide .row {
        min-height: 500px;
    }
    
    .tomatelo-image-container {
        height: 500px;
    }
    
    .tomatelo-content {
        height: 500px;
        padding: 60px 40px;
    }
    
    .tomatelo-slide-title {
        font-size: 2rem;
    }
    
    .ideas-carousel-container {
        margin-top: -60px;
    }
    
    .ideas-carousel-card {
        min-height: 300px;
    }
    
    .ideas-carousel-image-section {
        min-height: 300px;
    }
    
    .ideas-carousel-content-section {
        padding: 30px;
    }
    
    .ideas-carousel-title {
        font-size: 1.6rem;
    }
    
    .ideas-number-big {
        font-size: 3rem;
    }
}

/* ================================
   RESPONSIVE DESIGN - 768px
   ================================ */

@media (max-width: 768px) {
    /* Hero sections */
    .hero-video {
        display: none;
    }

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

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

    #home.hero-home--has-mobile-img {
        background-image: none !important;
    }

    #home.hero-home--has-mobile-img .hero-home-mobile-only {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        z-index: -2;
    }

    #home.hero-home--image-desktop-only {
        background-image: none !important;
    }

    #home.hero-home--image-desktop-only .hero-home-main-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        z-index: -2;
    }

    .hero-section {
        height: 100vh;
        background: url('../images/background-home.png') center/contain no-repeat;
        margin-top: 0px;
    }

    /* #home: debe ir después de .hero-section para no perder el fallback ACF */
    #home.hero-home--mobile-fallback-bg.hero-section {
        background-image: var(--enalia-hero-mobile-fallback, url('../images/background-home.png'));
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    #home.hero-home--has-mobile-img.hero-section,
    #home.hero-home--has-mobile-img.hero-section-image,
    #home.hero-home--image-desktop-only.hero-section-image {
        background-image: none !important;
    }

    .hero-logo-mobile {
        display: block;
        text-align: center;
        margin-bottom: 30px;
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .hero-logo-img {
        width: 120px;
        height: auto;
        filter: brightness(0) invert(1);
        transition: transform 0.3s ease;
    }
    
    .hero-logo-img:hover {
        transform: scale(1.05);
    }

    .hero-content {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-quienes-somos {
        padding-top: 100px;
    }
    
    .hero-title-quienes {
        font-size: 2.5rem;
    }
    
    .hero-compromiso {
        padding-top: 100px;
    }
    
    .hero-title-large,
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-title-subtitle {
        font-size: 1.6rem;
    }

    .hero-title-large-somos {
        font-size: 2.8rem;
        letter-spacing: 10px;
        margin-bottom: 10px;
    }
    
    .hero-title-main-somos {
        font-size: 1.9rem;
    }

    /* Navigation */
    .navbar-enalia {
        height: auto;
        min-height: 100px;
        padding: 10px 0 0 0;
    }

    .site-main.elementor-page-template {
        margin-top: 100px;
    }
    
    .navbar-brand-enalia {
        padding-top: 20px;
        justify-content: center;
    }
    
    .logo-enalia {
        width: 80px;
        height: 60px;
    }
    
    .navbar-content {
        float: right;
        padding: 10px 0;
    }
    
    /* Ajustar el contenedor del menú para usar flexbox */
    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        width: 100%; /* Asegurar que ocupe todo el ancho */
    }
    
    /* La sección de búsqueda ahora ocupará todo el ancho disponible */
    .search-section {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%; /* Ocupar todo el ancho */
    }
    
    /* El search-container ahora se puede expandir más */
    .search-container {
        max-width: 350px; /* Aumentado significativamente de 200px */
        width: 100%;
        flex: 1; /* Permitir que crezca */
        margin-right: 15px; /* Espacio entre el search y el botón toggle */
    }
    
    /* La sección de navegación mantiene su posición */
    .nav-section {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-shrink: 0; /* No permitir que se encoja */
    }

    .search-input, .search-btn {
        height: 40px;
    }
    
    .navbar-toggler-enalia {
        display: block;
        margin-left: 10px;
    }

    /* Content sections */
    .about-section,
    .commitment-section,
    .brands-section,
    .experiences-section,
    .experiencia-section,
    .timeline-section,
    .marca-pais-section,
    .valores-section,
    .planta-section,
    .contenido-planta-section,
    .recorridos-section,
    .recorridos-planta-section,
    .experiencia-final-section,
    .rais-section,
    .pilares-section,
    .gestion-agua-section,
    .innovacion-botellas-section,
    .reciclaje-botellas-section,
    .tomatelo-serio-section,
    .ideas-creativas-section {
        padding: 80px 0;
    }

    .planta-section {
        padding: 80px 0 100px;
    }

    .contenido-planta-section {
        padding: 0 0 120px;
        background: white;
        position: relative;
        z-index: 3;
    }

    .recorridos-section {
        padding: 60px 0 100px;
    }

    /* Titles */
    .about-title,
    .commitment-title,
    .brands-title,
    .experiences-title,
    .marca-pais-title,
    .valores-title,
    .planta-title,
    .recorridos-title,
    .gestion-agua-title,
    .innovacion-title,
    .reciclaje-title,
    .tomatelo-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-content,
    .commitment-content,
    .brands-content {
        text-align: center;
        max-width: 100%;
    }
    
    .about-line,
    .commitment-line,
    .brands-line {
        margin: 0 auto 20px;
    }
    
    .about-map-container {
        height: 100%;
        min-height: 300px;
    }
    
    .about-text,
    .commitment-text,
    .brands-text {
        font-size: 1rem;
    }

    .commitment-section {
        background: url('../images/background-compromiso.png') center/cover no-repeat;
        min-height: 500px;
        display: flex;
        align-items: center;
    }

    .brands-section {
        background: url(../images/background-verde.png) left / cover no-repeat;
    }
    
    .brands-image-container {
        height: 400px;
        margin-top: 30px;
    }

    .experience-card {
        height: 450px;
        margin-bottom: 30px;
    }
    
    .experience-content {
        padding: 20px;
    }
    
    .experience-card-title {
        font-size: 1.2rem;
    }
    
    .experience-description {
        font-size: 0.9rem;
    }

    .maestros-section {
        min-height: auto;
    }
    
    .maestros-image-container {
        min-height: 300px;
    }
    
    .maestros-content-container {
        min-height: 400px;
    }
    
    .maestros-title {
        font-size: 2rem;
    }
    
    .maestros-content {
        padding: 30px 20px;
    }
    
    .maestros-icon {
        width: 180px;
        height: 180px;
    }

    /* Quiénes Somos sections */
    .experiencia-section {
        background-position: left top;
    }
    
    .experiencia-logo {
        max-height: 220px;
    }
    
    .experiencia-description {
        font-size: 1rem;
        text-align: center;
    }

    .timeline-card {
        flex-direction: column;
    }
    
    .timeline-image-section {
        min-height: 250px;
        border-radius: 20px 20px 0 0;
    }
    
    .timeline-year {
        font-size: 7rem; 
    }

    .timeline-year-overlay {
        top: 50%;
        left: -80px;
        transform: translate(0, -50%) rotate(-90deg);
        padding: 20px 40px;
    }
    
    .timeline-content-section {
        border-radius: 0 0 20px 20px;
        padding: 30px 20px;
    }
    
    .timeline-slide-title {
        font-size: 1.5rem;
    }
    
    .timeline-navigation {
        flex-direction: row;
        gap: 20px;
    }

    .marca-pais-section {
        background-size: 80%;
        background-position: center top;
    }
    
    .marca-pais-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .marca-pais-content-left,
    .marca-pais-content-right {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .marca-pais-line {
        margin: 0 auto 30px;
    }
    
    .marca-pais-subtitle {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .marca-pais-content-left {
        margin-bottom: 60px;
    }

    .valores-copa-decorativa {
        top: 15%;
        opacity: 0.4;
    }
    
    .valores-copa {
        width: 250px;
    }
    
    .valores-content {
        max-width: 100%;
    }
    
    .valores-description {
        max-width: 100%;
    }
    
    .valores-card {
        margin: 0 50px;
        padding: 40px 25px 30px;
        min-height: 250px;
    }
    
    .valores-nav-btn {
        width: 40px;
        height: 40px;
    }

    .planta-filigrana-left,
    .planta-filigrana-right {
        width: 150px;
        opacity: 0.8;
    }

    .contenido-planta-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
        padding-top: 60px;
    }
    
    .contenido-planta-image-container {
        height: 480px;
        gap: 10px;
    }
    
    .contenido-planta-row-top,
    .contenido-planta-row-bottom {
        gap: 12px;
    }

    .contenido-planta-gallery {
        margin-top: -40px;
    }
    
    .contenido-planta-image-grid {
        height: 300px;
        gap: 10px;
    }

    .recorridos-filigrana-left {
        width: 200px;
        opacity: 0.8;
    }
    
    .recorridos-planta-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .recorridos-planta-image-container {
        height: 300px;
        gap: 10px;
    }
    
    .recorridos-planta-row-top,
    .recorridos-planta-row-bottom {
        gap: 10px;
    }
    
    .recorridos-planta-text-white,
    .recorridos-planta-text-dark {
        font-size: 1rem;
    }

    .experiencia-final-content {
        padding-left: 0;
        text-align: center;
        margin-top: 50px;
    }
    
    .experiencia-final-images {
        height: 600px;
    }
    
    .experiencia-final-image-top {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 45%;
        margin-bottom: 20px;
        z-index: auto;
    }
    
    .experiencia-final-image-bottom {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 45%;
        z-index: auto;
    }
    
    .experiencia-final-description,
    .experiencia-final-highlight {
        font-size: 1rem;
    }
    
    .experiencia-final-phone {
        font-size: 1.5rem;
    }
    
    .experiencia-final-line {
        margin: 0 auto 30px;
    }

    /* Compromiso sections */
    .rais-section .col-lg-6:last-child {
        min-height: 300px;
    }
    
    .rais-logo-container {
        height: 300px;
    }
    
    .rais-logo-centered {
        height: 200px;
    }
    
    .rais-title-main {
        font-size: 2.5rem;
    }
    
    .rais-title-subtitle {
        font-size: 1.2rem;
    }
    
    .rais-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .rais-line {
        margin: 0 auto 30px;
    }
    
    .pilar-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .pilar-icon {
        align-self: center;
    }
    
    .manos-plantas-image-container {
        height: 250px;
    }
    
    .gestion-agua-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gestion-agua-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    
    .gestion-agua-green-box {
        width: 60px;
        min-height: 60px;
        align-self: center;
    }

    .gestion-agua-number {
        font-size: 3rem;
    }
    
    .gestion-agua-card-title {
        font-size: 1.1rem;
    }
    
    .gestion-agua-card-description {
        font-size: 0.95rem;
    }
    
    .innovacion-top-section {
        padding: 80px 0 40px;
    }
    
    .innovacion-bottom-section {
        padding: 40px 0 80px;
        min-height: 400px;
    }
    
    .innovacion-line {
        margin: 0 auto 30px;
    }
    
    .innovacion-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .innovacion-left-content {
        padding-top: 20px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .innovacion-right-content {
        padding-top: 20px;
        text-align: center;
    }
    
    .innovacion-circle-decoration {
        width: 200px;
        height: 200px;
    }
    
    .innovacion-leaf {
        width: 60px;
    }
    
    .reciclaje-botellas-section {
        padding: 0;
        display: block;
    }
    
    .reciclaje-content {
        height: auto;
        min-height: 300px;
        padding: 60px 30px;
        text-align: center;
        background: #f0f0f0;
    }
    
    .reciclaje-icon {
        width: 80px;
    }
    
    .reciclaje-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .reciclaje-image-container {
        height: 300px;
        margin-top: 0;
    }
    
    .reciclaje-botellas-section .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tomatelo-header-section {
        padding: 80px 0 40px;
    }
    
    .tomatelo-carousel-section {
        padding: 0 0 80px;
    }
    
    .tomatelo-slide .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .tomatelo-image-container {
        height: 300px;
        order: 1;
    }
    
    .tomatelo-content {
        height: auto;
        padding: 40px 30px;
        order: 2;
    }
    
    .tomatelo-title-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tomatelo-slide-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .tomatelo-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .tomatelo-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .tomatelo-seals-container {
        justify-content: center;
    }
    
    .tomatelo-seal {
        width: 60px;
    }
    
    .tomatelo-navigation {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
    }
    
    .tomatelo-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .ideas-creativas-section {
        padding: 0;
        display: block;
        min-height: auto;
    }
    
    .ideas-content {
        height: auto;
        min-height: 400px;
        padding: 60px 30px;
        text-align: center;
        background: #f0f0f0;
    }
    
    .ideas-content > * {
        max-width: 100%;
        margin-left: 0;
    }
    
    .ideas-leaf {
        position: relative;
        left: auto;
        display: inline-block;
        margin-bottom: 20px;
        width: 50px;
    }
    
    .ideas-header-elements {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    
    .ideas-visual-container {
        height: 400px;
    }
    
    .ideas-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .ideas-description {
        font-size: 0.95rem;
    }
    
    .ideas-bottle {
        width: 120px;
    }
    
    .ideas-decorative-leaf {
        bottom: 60px;
        right: 30%;
    }
    
    .ideas-leaf-decoration {
        width: 100px;
    }
    
    .ideas-carousel-section {
        padding: 40px 0 80px;
    }
    
    .ideas-carousel-container {
        margin-top: -40px;
    }
    
    .ideas-carousel-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .ideas-carousel-image-section {
        min-height: 250px;
        border-radius: 20px 20px 0 0;
    }
    
    .ideas-carousel-content-section {
        border-radius: 0 0 20px 20px;
        padding: 30px 25px;
    }
    
    .ideas-carousel-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .ideas-carousel-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .ideas-corner-image {
        width: 60px;
    }
    
    .ideas-carousel-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .ideas-carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        padding-bottom: 30px;
    }
    
    .footer-logo-svg {
        width: 150px;
    }
    
    .footer-section {
        margin-bottom: 100px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social-container {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-legal-section {
        padding: 25px 0;
    }
    
    .footer-legal-main {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-legal-secondary {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .footer-legal-copyright {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }
    
    .footer-prohibition-image {
        max-width: 150px;
    }
}

/* ================================
   RESPONSIVE DESIGN - 576px
   ================================ */

@media (max-width: 576px) {
    /* Search */
    .search-container {
        max-width: none; /* Eliminar restricción de ancho máximo */
        width: 100%;
        height: 35px;
        flex: 1; /* Usar todo el espacio disponible */
        margin-right: 10px; /* Espacio mínimo antes del toggle */
    }
    
    .search-input, .search-btn {
        height: 35px;
    }
    
    .search-input {
        font-size: 12px;
        padding: 0 50px 0 15px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Navigation */
    .navbar-enalia {
        min-height: 80px;
    }

    .site-main.elementor-page-template {
        margin-top: 80px;
    }
    
    .logo-enalia {
        width: 100px;
        height: auto;
    }
    
    .navbar-brand-enalia {
        padding-top: 0px;
        padding-left: 25px;
    }

    /* Asegurar que el navbar-content use flexbox correctamente */
    .navbar-content {
        float: none; /* Eliminar float */
        padding: 10px 0;
        width: 100%;
    }
    
    /* El menu-container debe usar flexbox horizontal en móvil pequeño */
    .menu-container {
        flex-direction: row; /* Cambiar a horizontal en móvil pequeño */
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
    
    /* Search section ocupa el espacio disponible */
    .search-section {
        flex: 1; /* Usar todo el espacio disponible */
        margin-right: 10px;
    }
    
    /* Nav section solo el espacio del botón */
    .nav-section {
        flex-shrink: 0;
    }

    /* Hero sections */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-title-quienes {
        font-size: 2rem;
    }
    
    .hero-title-large,
    .hero-title-main {
        font-size: 2.2rem;
    }
    
    .hero-title-subtitle {
        font-size: 1.4rem;
    }

    .hero-title-large-somos {
        font-size: 2.2rem;
        letter-spacing: 5px;
        margin-bottom: 8px;
    }
    
    .hero-title-main-somos {
        font-size: 1.6rem;
    }
    
    /* Asegurar que el contenedor del hero tenga padding adecuado */
    .hero-content-quienes {
        padding: 0 20px;
    }

    /* TÍTULOS PRINCIPALES - TODOS A 1.5EM */
    .about-title,
    .commitment-title,
    .brands-title,
    .experiences-title,
    .marca-pais-title,
    .valores-title,
    .planta-title,
    .recorridos-title,
    .gestion-agua-title,
    .innovacion-title,
    .reciclaje-title,
    .tomatelo-main-title,
    .timeline-title {
        font-size: 1.5em;
    }
    
    .about-map-container {
        height: 280px;
    }

    .about-content {
        padding-top: 0px;
        margin-top: 0;
    }

    .btn-about {
        margin-bottom: 60px;
    }

    .experiencia-content {
        margin-bottom: 60px;
    }

    .commitment-section {
        padding: 60px 0;
        background: url('../images/background-compromiso.png') center/cover no-repeat;
        min-height: 400px;
        display: flex;
        align-items: center;
    }

    .timeline-year {
        font-size: 7rem;
    }

    .timeline-year-overlay {
        left: -90px;
        padding: 15px 30px;
    }
        
    .timeline-nav-btn {
        width: 40px;
        height: 40px;
    }

    .valores-copa {
        width: 180px;
    }

    .valores-line {
        margin: 0 auto 40px;
    }

    .experiencia-section {
        padding: 0px 0;
    }

    .valores-card {
        margin: 0 30px; /* Menos margen lateral */
        padding: 30px 20px 25px;
        min-height: 300px; /* Más altura total */
    }
    
    .valores-card-image {
        height: 180px; /* AUMENTADO de 120px a 180px */
        margin-bottom: 20px;
    }
    
    .valores-card-image img {
        max-width: 220px; /* AUMENTADO de 100px a 160px */
        max-height: 220px; /* AUMENTADO de 100px a 160px */
        object-fit: contain; /* Mantener proporciones */
    }

    /* Ajustar texto si es necesario */
    .valores-card-text {
        font-size: 1.2rem; /* Slightly smaller text to fit */
        line-height: 1.3;
    }

    .planta-filigrana-left,
    .planta-filigrana-right {
        width: 120px;
        opacity: 0.6;
    }

    .contenido-planta-image-container {
        /* display: grid !important; */
        display: 0;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        gap: 20px;
        height: auto !important;
        flex-direction: unset;
    }
    
    /* Las filas ahora actúan como contenedores simples */
    .contenido-planta-row-top,
    .contenido-planta-row-bottom {
        display: contents; /* Esto hace que actúen transparentes */
        flex-direction: column;
        height: auto;
        gap: 0;
    }
        
    .contenido-planta-col-large,
    .contenido-planta-col-small {
        flex: 1;
    }

    /* Cada imagen ocupa una fila completa del grid */
    .contenido-planta-image-item {
        width: 100%;
        height: 200px;
        grid-column: 1;
        /* Los grid-row se asignan automáticamente */
    }
        
    /* Sin margen negativo problemático */
    .contenido-planta-gallery {
        margin-top: 0 !important;
        display: none;
    }

    .contenido-planta-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 600px;
    }

    .recorridos-filigrana-left {
        width: 150px;
        opacity: 0.6;
    }
    
    /* Cambiar contenedor principal a grid simple */
    .recorridos-planta-grid .image-container {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        gap: 20px;
        height: auto !important;
        flex-direction: unset;
    }
    
    /* Las filas ahora actúan como contenedores transparentes */
    .recorridos-planta-row-top,
    .recorridos-planta-row-bottom {
        display: contents; /* Esto hace que actúen transparentes */
        flex-direction: column;
        height: auto;
        gap: 0;
    }

    .rais-content {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    /* Cada imagen ocupa una fila completa del grid */
    .recorridos-planta-image-item {
        width: 100%;
        height: 100%;
        grid-column: 1;
        border-radius: 10px;
    }
    
    /* Las columnas también transparentes */
    .recorridos-planta-col-half {
        display: contents;
        flex: unset;
    }

    .experiencia-final-images {
        height: 500px;
    }
    
    .experiencia-final-phone {
        font-size: 1.3rem;
    }

    /* Compromiso sections */
    .rais-title-main {
        font-size: 2rem;
    }

    .gestion-agua-line {
        width: 60px;
        height: 10px;
        background: #B1C17B;
        margin: 0 auto;
    }
    
    .gestion-agua-card {
        padding: 25px 15px;
    }
    
    .gestion-agua-green-box {
        width: 50px;
        height: 50px;
    }
    
    .gestion-agua-number {
        font-size: 2.5rem;
    }
    
    .gestion-agua-card-title {
        font-size: 1.1rem;
    }
    
    .gestion-agua-card-description {
        font-size: 0.95rem;
    }

    /* Sección superior - Solo título */
    .innovacion-top-section {
        padding: 0px 0 30px;
    }
    
    /* Sección inferior - Dividir en dos áreas claras */
    .innovacion-bottom-section {
        padding: 0;
        background-size: contain;
        background-position: center top;
        min-height: auto;
        display: block; /* Cambiar de flex a block */
    }
    
    /* Área dedicada SOLO para mostrar las botellas */
    .innovacion-botellas-display {
        height: 300px; /* Espacio fijo para mostrar botellas */
        background: url('../images/background-botellas.png') center/contain no-repeat;
        width: 100%;
        margin-bottom: 40px;
        position: relative;
    }
    
    /* Área de contenido DEBAJO de las botellas */
    .innovacion-content-area {
        background: white;
        padding: 40px 20px;
        text-align: center;
    }
    
    /* Resetear contenido izquierdo y derecho */
    .innovacion-right-content {
        padding-top: 0 !important;
        margin-bottom: 30px;
        position: static;
        z-index: auto;
    }

    .innovacion-left-content{
        padding-top: 650px !important;
        margin-bottom: 30px;
        position: static;
        z-index: auto;
    }

    .pilares-section {
        padding: 20px 0 0 0;
    }
    
    .pilares-leaf-icon-top {
        width: 60px;
        height: auto;
        opacity: 0.8;
        margin-left: 15px;
    }

    .pilares-leaf-icon-down {
        width: 120px;
        height: auto;
        opacity: 0.8;
    }

    .pilares-line {
        width: 60px;
        height: 12px;
        background: #B1C17B;
        margin: 0 auto;
    }

    .innovacion-botellas-section {
        padding: 0 0 0 0;
    }


    /* Ocultar círculo decorativo en móvil */
    .innovacion-circle-decoration {
        display: none;
    }
    
    /* Ajustar hojas */
    .innovacion-leaf {
        width: 40px;
        margin: 20px auto;
        display: block;
    }
    
    .innovacion-bottom-section {
        background-size: 80%;
        min-height: 300px;
    }
    
    .innovacion-circle-decoration {
        width: 150px;
        height: 150px;
    }
    
    .reciclaje-content {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .reciclaje-description {
        font-size: 0.95rem;
    }
    
    .reciclaje-icon {
        width: 150px;
    }
    
    .reciclaje-image-container {
        height: 250px;
    }

    .tomatelo-serio-section {
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }

    .tomatelo-title-container {
        flex-direction: row;
        text-align: center;
        gap: 15px;
        margin: 0 auto;
    }

    .tomatelo-slide-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .tomatelo-content {
        padding: 30px 20px;
    }
    
    .tomatelo-slide-title {
        font-size: 1.6rem;
    }
    
    .tomatelo-title-icon {
        width: 50px;
    }

    .ideas-header-elements {
        display: block;
        align-items: center;
    }

    .ideas-leaf {
        position: relative;
        left: 50%;
        display: inline-block;
        margin-bottom: 20px;
        width: 50px;
        margin-left: -100px;
    }

    .ideas-line {
        width: 60px;
        height: 10px;
        background: #B1C17B;
        margin: 0 auto;
    }
    
    .ideas-content {
        padding: 40px 20px;
        min-height: 350px;
    }
    
    .ideas-title {
        font-size: 1.6rem;
    }
    
    .ideas-description {
        font-size: 0.9rem;
    }
    
    .ideas-visual-container {
        height: 350px;
    }
    
    .ideas-bottle {
        width: 100px;
    }
    
    .ideas-leaf-decoration {
        width: 80px;
    }
    
    .ideas-carousel-container {
        margin-top: -20px;
    }
    
    .ideas-carousel-image-section {
        min-height: 360px;
    }
    
    .ideas-carousel-content-section {
        padding: 25px 20px;
    }
    
    .ideas-carousel-title {
        font-size: 1.3rem;
    }
    
    .ideas-carousel-description {
        font-size: 0.9rem;
    }
    
    .ideas-number-big {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-section {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .footer-legal-section {
        padding: 20px 0;
    }
    
    .footer-legal-main {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .footer-legal-secondary {
        font-size: 0.7rem;
        padding: 0 10px;
    }
    
    .footer-prohibition-image {
        max-width: 120px;
    }
}

/* ================================
   NUESTRAS MARCAS - ADDITIONAL STYLES
   Add these styles to styles.css
   ================================ */

/* ================================
   HERO MARCAS SECTION
   ================================ */

.hero-marcas {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/marcas-banner-fallback.webp') center/cover no-repeat;
}

.hero-video-marcas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay-marcas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-content-marcas {
    position: relative;
    z-index: 2;
}

.hero-title-marcas {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* ================================
   MARCAS INTRO SECTION (Sección Gris)
   ================================ */

.marcas-intro-section {
    padding: 60px 0;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.marcas-intro-filigrana-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-image: url('../images/filigrana-left-marcas.webp');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}

.marcas-intro-filigrana-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background-image: url('../images/filigrana-right-marcas.webp');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}

.marcas-intro-content {
    position: relative;
    z-index: 2;
}

.marcas-intro-line {
    width: 60px;
    height: 10px;
    background: #B1C17B;
    margin: 0 auto 40px;
}

.marcas-intro-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.marcas-intro-text:last-child {
    margin-bottom: 0;
}

/* ================================
   CELEBRAR ADN SECTION
   ================================ */

.celebrar-adn-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.celebrar-adn-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.celebrar-adn-logo {
    margin-bottom: 30px;
}

.celebrar-adn-seal {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.celebrar-adn-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.celebrar-adn-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.celebrar-adn-image-container {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 400px;
}

.celebrar-adn-image {
    max-width: 90%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.celebrar-adn-image:hover {
    transform: scale(1.02);
}

.btn-celebrar-adn {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    width: 240px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
}

.btn-celebrar-adn:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   DISFRUTEMOS SECTION
   ================================ */

.disfrutemos-section {
    padding: 70px 0;
    background: #f0f0f0;
}

.disfrutemos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

.disfrutemos-logo {
    margin-bottom: 30px;
}

.disfrutemos-seal {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.disfrutemos-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.disfrutemos-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.disfrutemos-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.disfrutemos-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.disfrutemos-image:hover {
    transform: scale(1.02);
}

.btn-disfrutemos {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    width: 220px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
}

.btn-disfrutemos:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   MÍSTICAMENTE MÁGICA SECTION
   ================================ */

.misticamente-magica-section {
    padding: 70px 0;
    background: #f0f0f0;
}

.misticamente-magica-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.misticamente-magica-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.misticamente-magica-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.misticamente-magica-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.misticamente-magica-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.misticamente-magica-image:hover {
    transform: scale(1.02);
}

.btn-misticamente-magica {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    width: 220px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
}

.btn-misticamente-magica:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   MARCAS CAROUSEL SECTION
   ================================ */

.marcas-carousel-section {
    padding: 0 0 0 0;
    background: #f0f0f0;
}

.marcas-carousel {
    position: relative;
    overflow: hidden;
}

.marcas-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.marcas-slide.active {
    display: block;
    opacity: 1;
}

.marcas-slide .row {
    margin: 0 auto;
    max-width: 1400px;
    min-height: 500px;
    padding: 0 40px;
}

.marcas-image-container {
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0px;
}

.marcas-slide-image {
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marcas-slide-image:hover {
    transform: scale(1.02);
}

.marcas-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
}

.marcas-slide-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 30px;
}

.marcas-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.marcas-description:last-of-type {
    margin-bottom: 40px;
}

.btn-marcas-carousel {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 220px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
    align-self: flex-start;
}

.btn-marcas-carousel:hover {
    background-color: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

.marcas-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.marcas-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.marcas-nav-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.marcas-nav-btn:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

/* ================================
   RESPONSIVE DESIGN - 991px
   ================================ */

@media (max-width: 991px) {
    .hero-title-marcas {
        font-size: 3rem;
    }
    
    .marcas-intro-filigrana-left,
    .marcas-intro-filigrana-right {
        width: 150px;
        opacity: 0.6;
    }
    
    .marcas-intro-text {
        font-size: 1.1rem;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 2.3rem;
    }
    
    .celebrar-adn-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .disfrutemos-content {
        padding-left: 20px;
        margin-bottom: 40px;
    }
    
    .misticamente-magica-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 400px;
    }
    
    .marcas-slide .row {
        min-height: 500px;
    }
    
    .marcas-image-container {
        height: 500px;
    }
    
    .marcas-content {
        height: 500px;
        padding: 60px 40px;
    }
    
    .marcas-slide-title {
        font-size: 2rem;
    }
    
    .marcas-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ================================
   RESPONSIVE DESIGN - 768px
   ================================ */

@media (max-width: 768px) {
    .hero-video-marcas {
        display: none;
    }
    
    .hero-marcas {
        background: url('../images/marcas-banner-fallback.webp') center/cover no-repeat;
        padding-top: 100px;
    }
    
    .hero-title-marcas {
        font-size: 2.5rem;
    }
    
    .marcas-intro-section,
    .celebrar-adn-section,
    .disfrutemos-section,
    .misticamente-magica-section {
        padding: 40px 0;
    }
    
    .marcas-intro-filigrana-left,
    .marcas-intro-filigrana-right {
        width: 120px;
        opacity: 0.5;
    }
    
    .marcas-intro-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .celebrar-adn-content,
    .disfrutemos-content,
    .misticamente-magica-content {
        text-align: center;
        padding: 0;
        margin-bottom: 50px;
    }
    
    .celebrar-adn-logo,
    .disfrutemos-logo {
        display: flex;
        justify-content: center;
    }
    
    .celebrar-adn-seal,
    .disfrutemos-seal {
        width: 100px;
    }
    
    .celebrar-adn-text,
    .disfrutemos-text,
    .misticamente-magica-text {
        font-size: 1rem;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 300px;
    }
    
    .marcas-slide .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .marcas-image-container {
        height: 300px;
        order: 1;
    }
}

/* ================================
   NUESTRAS MARCAS - ADDITIONAL STYLES
   Add these styles to styles.css
   ================================ */

/* ================================
   HERO MARCAS SECTION
   ================================ */

.hero-marcas {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/marcas-banner-fallback.webp') center/cover no-repeat;
}

.hero-video-marcas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay-marcas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-content-marcas {
    position: relative;
    z-index: 2;
}

.hero-title-marcas {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* ================================
   MARCAS INTRO SECTION (Sección Gris)
   ================================ */

.marcas-intro-section {
    padding: 120px 0;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.marcas-intro-filigrana-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-image: url('../images/filigrana-left-marcas.webp');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}

.marcas-intro-filigrana-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background-image: url('../images/filigrana-right-marcas.webp');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}

.marcas-intro-content {
    position: relative;
    z-index: 2;
}

.marcas-intro-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin: 0 auto 40px;
}

.marcas-intro-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.marcas-intro-text:last-child {
    margin-bottom: 0;
}

/* ================================
   CELEBRAR ADN SECTION
   ================================ */

.celebrar-adn-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.celebrar-adn-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.celebrar-adn-logo {
    margin-bottom: 30px;
}

.celebrar-adn-seal {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.celebrar-adn-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.celebrar-adn-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.celebrar-adn-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.celebrar-adn-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.celebrar-adn-image:hover {
    transform: scale(1.02);
}

.btn-celebrar-adn {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    width: 240px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
}

.btn-celebrar-adn:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   DISFRUTEMOS SECTION
   ================================ */

.disfrutemos-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.disfrutemos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

.disfrutemos-logo {
    margin-bottom: 30px;
}

.disfrutemos-seal {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.disfrutemos-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.disfrutemos-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.disfrutemos-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.disfrutemos-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.disfrutemos-image:hover {
    transform: scale(1.02);
}

.btn-disfrutemos {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
    width: 220px;
}

.btn-disfrutemos:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   MÍSTICAMENTE MÁGICA SECTION
   ================================ */

.misticamente-magica-section {
    padding: 120px 0;
    background: #F0F0F0;
}

.misticamente-magica-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.misticamente-magica-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.misticamente-magica-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.misticamente-magica-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.misticamente-magica-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.misticamente-magica-image:hover {
    transform: scale(1.02);
}

.btn-misticamente-magica {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    width: 240px;
    line-height: 0.6rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.01em;
    text-align: center;    
}

.btn-misticamente-magica:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

/* ================================
   MARCAS CAROUSEL SECTION
   ================================ */

.marcas-carousel-section {
    padding: 0;
    background: #f0f0f0;
}

.marcas-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 0;
}

.marcas-carousel {
    position: relative;
    overflow: hidden;
}

.marcas-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.marcas-slide.active {
    display: block;
    opacity: 1;
}

.marcas-slide .row {
    margin: 0 auto;
    min-height: 600px;
}

.marcas-image-container {
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.marcas-slide-image {
    width: auto;
    height: 95%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marcas-slide-image:hover {
    transform: scale(1.02);
}

.marcas-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
}

.marcas-slide-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 30px;
}

.marcas-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.marcas-description:last-of-type {
    margin-bottom: 40px;
}

.btn-marcas-carousel {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 0.6rem;
    width: 240px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    letter-spacing: 0.02em;
    align-self: flex-start;
}

.btn-marcas-carousel:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
    text-decoration: none;
}

.marcas-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.marcas-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.marcas-nav-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.marcas-nav-btn:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

/* ================================
   RESPONSIVE DESIGN - 991px
   ================================ */

@media (max-width: 991px) {
    .hero-title-marcas {
        font-size: 3rem;
    }
    
    .marcas-intro-filigrana-left,
    .marcas-intro-filigrana-right {
        width: 150px;
        opacity: 0.6;
    }
    
    .marcas-intro-text {
        font-size: 1.1rem;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 2.3rem;
    }
    
    .celebrar-adn-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .disfrutemos-content {
        padding-left: 20px;
        margin-bottom: 40px;
    }
    
    .misticamente-magica-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 400px;
    }
    
    .marcas-slide .row {
        min-height: 500px;
    }
    
    .marcas-image-container {
        height: 500px;
    }
    
    .marcas-content {
        height: 500px;
        padding: 60px 40px;
    }
    
    .marcas-slide-title {
        font-size: 2rem;
    }
    
    .marcas-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ================================
   RESPONSIVE DESIGN - 768px
   ================================ */

@media (max-width: 768px) {
    .hero-video-marcas {
        display: none;
    }
    
    .hero-marcas {
        background: url('../images/NUESTRAS_MARCAS_HEADER_GIF_PARA_MOBILE.gif') center/cover no-repeat;
        padding-top: 100px;
    }
    
    .hero-title-marcas {
        font-size: 2.5rem;
    }
    
    .marcas-intro-section,
    .celebrar-adn-section,
    .disfrutemos-section,
    .misticamente-magica-section {
        padding: 20px 0;
    }
    
    .marcas-intro-filigrana-left,
    .marcas-intro-filigrana-right {
        width: 120px;
        opacity: 0.5;
    }
    
    .marcas-intro-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .celebrar-adn-content,
    .disfrutemos-content,
    .misticamente-magica-content {
        text-align: center;
        padding: 0;
        margin-top: 50px;
    }
    
    .celebrar-adn-logo,
    .disfrutemos-logo {
        display: flex;
        justify-content: center;
    }
    
    .celebrar-adn-seal,
    .disfrutemos-seal {
        width: 100px;
    }
    
    .celebrar-adn-text,
    .disfrutemos-text,
    .misticamente-magica-text {
        font-size: 1rem;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 300px;
    }
    
    .marcas-slide .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .marcas-image-container {
        height: 300px;
        order: 1;
    }
    
    .marcas-content {
        height: auto;
        padding: 40px 30px;
        order: 2;
    }
    
    .marcas-slide-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .marcas-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .btn-marcas-carousel {
        align-self: center;
    }
    
    .marcas-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        padding: 0;
    }
    
    .marcas-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ================================
   RESPONSIVE DESIGN - 576px
   ================================ */

@media (max-width: 576px) {
    .hero-title-marcas {
        font-size: 2rem;
    }
    
    .marcas-intro-text {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 1.5rem;
    }
    
    .celebrar-adn-seal,
    .disfrutemos-seal {
        width: 80px;
    }
    
    .celebrar-adn-text,
    .disfrutemos-text,
    .misticamente-magica-text {
        font-size: 0.95rem;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 250px;
    }
    
    .marcas-image-container {
        height: 250px;
    }
    
    .marcas-content {
        padding: 30px 20px;
    }
    
    .marcas-slide-title {
        font-size: 1.6rem;
    }
    
    .marcas-description {
        font-size: 0.9rem;
    }
    
    .marcas-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .marcas-content {
        height: auto;
        padding: 40px 30px;
        order: 2;
    }
    
    .marcas-slide-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .marcas-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .btn-marcas-carousel {
        align-self: center;
        font-size: 1rem;
    }
    
    .marcas-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        padding: 0;
    }
    
    .marcas-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ================================
   RESPONSIVE DESIGN - 576px
   ================================ */

@media (max-width: 576px) {
    .hero-title-marcas {
        font-size: 2rem;
    }
    
    .marcas-intro-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .celebrar-adn-title,
    .disfrutemos-title,
    .misticamente-magica-title {
        font-size: 1.5rem;
    }

    .btn-celebrar-adn {
        margin: 0 auto;
    }

    .btn-disfrutemos {
        font-size: 0.9rem;
        width: 220px;
        margin: 0 auto;
    }

    .btn-misticamente-magica {
        font-size: 0.9rem;
        width: 220px;
        margin: 0 auto;
    }
    
    .marcas-navigation {
        margin-bottom: 0px;
    }


    .celebrar-adn-seal,
    .disfrutemos-seal {
        width: 80px;
    }
    
    .celebrar-adn-text,
    .disfrutemos-text,
    .misticamente-magica-text {
        font-size: 0.95rem;
    }
    
    .celebrar-adn-image-container,
    .disfrutemos-image-container,
    .misticamente-magica-image-container {
        height: 50vh;
        margin-top: 0px;
    }
    
    .marcas-image-container {
        height: 300px;
        width: auto;
        text-align: center;
    }

    .marcas-slide-image {
        object-fit: contain;
    }
    
    .marcas-content {
        padding: 30px 20px;
    }
    
    .marcas-slide-title {
        font-size: 1.6rem;
    }
    
    .marcas-description {
        font-size: 0.9rem;
    }
    
    .marcas-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ================================
    CARIÑOSO PAGE STYLES
    ================================ */

/* Hero Section */
.carinoso-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/carinoso-hero-background.webp') center/contain no-repeat;
    /* background-color: #FF303D; */
    background-color: #f0f0f0;
}

.carinoso-hero-title-main {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 7.6rem;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.carinoso-hero-title-sub {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    display: block;
    line-height: 1.2;
}

/* Carousel Principal */
.carinoso-carousel-section {
    padding: 0;
    background-color: #f0f0f0;
}

.carinoso-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carinoso-carousel {
    position: relative;
    overflow: hidden;
}

.carinoso-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carinoso-slide.active {
    display: block;
    opacity: 1;
}

.carinoso-slide .row {
    margin: 0;
    min-height: 700px;
}

.carinoso-slide-image-container {
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.carinoso-slide-image {
    max-width: 80%;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carinoso-slide-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 800px;
    background: #f0f0f0;
}

.carinoso-slide-title {
    margin-bottom: 25px;
    line-height: 1.1;
}

.carinoso-brand {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--dark-text);
    display: block;
}

.carinoso-variant {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: var(--dark-text);
    display: block;
}

.carinoso-slide-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.carinoso-items-grid {
    display: contents;
}

.carinoso-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.carinoso-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.carinoso-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carinoso-item-content {
    flex: 1;
}

.carinoso-item-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.carinoso-item-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.carinoso-carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.carinoso-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.carinoso-nav-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Cariñoso Moments Section */
.carinoso-moments-section {
    padding: 120px 0;
    background-color: #97AC50;
    color: white;
}

.carinoso-moments-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.carinoso-moments-image {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carinoso-moments-content {
    padding-left: 40px;
}

.carinoso-moments-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.carinoso-moments-subtitle {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
}

.carinoso-moments-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.6;
}

.carinoso-moments-items {
    display: contents;
}

.carinoso-moments-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.carinoso-moments-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.carinoso-moments-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carinoso-moments-item-content {
    flex: 1;
}

.carinoso-moments-item-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.carinoso-moments-item-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
    margin: 0;
}

/* Social Media Section */
.carinoso-social-section {
    padding: 50px 0;
    background: #F0F0F0;
}

.carinoso-social-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.carinoso-social-subtitle {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.carinoso-social-carousel-container {
    margin-bottom: 40px;
    position: relative;
}

.carinoso-social-carousel {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.instagram-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.instagram-slide.active {
    display: block;
    opacity: 1;
}

.instagram-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.instagram-media {
    background-color: #FFFFFF !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 280px !important;
    height: 100% !important;
}

/* Desktop Navigation */
.carinoso-social-navigation {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carinoso-social-nav-btn {
    background: rgba(151, 172, 80, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.carinoso-social-nav-btn:hover:not(:disabled) {
    background: #97AC50;
    transform: scale(1.1);
}

.carinoso-social-loading {
    text-align: center;
    padding: 60px 0;
    color: #666;
}

.carinoso-social-button {
    background: #97AC50;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.carinoso-social-button:hover {
    background: #97AC59;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Un Cariñoso diferente para ti Section */
.carinoso-diferente-section {
    padding: 120px 0;
    background: url('../images/carinoso-diferente-background.webp') center/cover no-repeat;
    color: white;
    position: relative;
}

.carinoso-diferente-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,0.4); */
    z-index: 1;
}

.carinoso-diferente-section .container {
    position: relative;
    z-index: 2;
}

.carinoso-diferente-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.carinoso-diferente-image {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carinoso-diferente-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    padding-left: 40px;
}

.carinoso-diferente-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
}

.btn-carinoso-recetas {
    background: white;
    color: var(--dark-text);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
}

.btn-carinoso-recetas:hover {
    background: #f0f0f0;
    color: var(--dark-text);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Otras Opciones Section */
.otras-opciones-section {
    padding: 30px 0;
    background: #f0f0f0;
}

.otras-opciones-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.otras-opciones-subtitle {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.otras-opciones-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.otras-opciones-carousel {
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.otras-opciones-slide {
    flex: 0 0 25%; /* Desktop: 25% para mostrar 4 cards */
    padding: 0 15px;
    box-sizing: border-box;
}

.otras-opciones-slide.active {
    display: block;
    opacity: 1;
}

.otras-opciones-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.otras-opciones-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.otras-opciones-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.otras-opciones-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn-otras-opciones {
    background-color: #97AC50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1rem;
    width: 160px;
    margin: 0 auto;
}

.btn-otras-opciones:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

.otras-opciones-navigation {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px; /* Agregar padding interno */
    pointer-events: none;
    z-index: 10;
}

/* Busca esta regla y modifícala */
.otras-opciones-nav-btn {
    background: rgba(177, 193, 123, 0.8); /* Cambiar a rgba(151, 172, 80, 0.8) */
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    border-radius: 50%; /* Agregar para que sean circulares */
    width: 50px; /* Agregar tamaño fijo */
    height: 50px; /* Agregar tamaño fijo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.otras-opciones-nav-btn:hover:not(:disabled) {
    background: rgba(151, 172, 80, 1); /* Cambiar de #8FA05E */
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .carinoso-hero-title-main {
        font-size: 3.5rem;
    }
    
    .carinoso-hero-title-sub {
        font-size: 1.8rem;
    }
    
    .carinoso-slide .row {
        min-height: 600px;
    }
    
    .carinoso-slide-image-container {
        height: 400px;
    }
    
    .carinoso-slide-content {
        height: 600px;
        padding: 60px 40px;
    }
    
    .carinoso-brand, .carinoso-variant {
        font-size: 2.5rem;
    }
    
    .carinoso-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carinoso-moments-content {
        padding-left: 20px;
        margin-bottom: 40px;
    }
    
    .carinoso-moments-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carinoso-diferente-content {
        padding-left: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .offset-lg-2 {
        margin-left: 0;
    }

    .carinoso-hero {
        padding-top: 100px;
    }
    
    .carinoso-hero-title-main {
        font-size: 2.5rem;
    }
    
    .carinoso-hero-title-sub {
        font-size: 1.4rem;
    }
    
    .carinoso-slide .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .carinoso-slide-image-container {
        height: 100%;
        order: 1;
    }
    
    .carinoso-slide-content {
        height: auto;
        padding: 40px 20px;
        order: 2;
    }
    
    .carinoso-brand, .carinoso-variant {
        font-size: 2rem;
    }
    
    .carinoso-carousel-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        padding: 0;
        padding-bottom: 30px;
    }
    
    .carinoso-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carinoso-moments-section,
    .carinoso-social-section,
    .carinoso-diferente-section,
    .otras-opciones-section {
        padding: 25px 0 25px 0;
    }
    
    .carinoso-moments-title,
    .carinoso-social-title,
    .carinoso-diferente-title,
    .otras-opciones-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .carinoso-moments-content {
        padding-left: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .carinoso-diferente-content {
        padding-left: 0;
        height: auto;
        margin-bottom: 50px;
    }
    
    .carinoso-diferente-title {
        font-size: 2.2rem;
    }
    
    .otras-opciones-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }    .otras-opciones-slide {
        flex: 0 0 100%; /* Mobile: 100% para mostrar 1 card */
    }
    
    .otras-opciones-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .otras-opciones-nav-btn {
        font-size: 30px;
    }
    
    .otras-opciones-nav-btn {
        font-size: 30px;
    }

        .otras-opciones-slide {
        flex: 0 0 100%; /* Mobile: 100% para mostrar 1 card */
    }
    
    .otras-opciones-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .otras-opciones-nav-btn {
        font-size: 30px;
    }

    .carinoso-social-carousel {
        min-height: 380px;
        margin-bottom: 20px;
    }
    
    .instagram-post-card {
        height: 380px;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .instagram-media {
        min-width: 280px !important;
        max-width: 300px !important;
        height: 350px !important;
    }
    
    /* Move navigation to bottom on mobile */
    .carinoso-social-navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .carinoso-social-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carinoso-social-carousel-container {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .btn-carinoso-recetas {
        margin: 0 auto;
    }

    .carinoso-hero-title-main {
        font-size: 2rem;
    }
    
    .carinoso-hero-title-sub {
        font-size: 1.2rem;
    }
    
    .carinoso-brand, .carinoso-variant {
        font-size: 1.6rem;
    }
    
    .carinoso-slide-content {
        padding: 30px 15px;
    }
    
    .carinoso-moments-title,
    .carinoso-social-title,
    .carinoso-diferente-title,
    .otras-opciones-title {
        font-size: 1.8rem;
    }
    
    .carinoso-diferente-title {
        font-size: 2rem;
    }

    .instagram-post-card {
        height: 350px;
        max-width: 290px;
    }
    
    .instagram-media {
        min-width: 260px !important;
        max-width: 280px !important;
        height: 320px !important;
    }
    
    .carinoso-social-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* SANSON Specific Styles */
.sanson-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

@media (max-width: 991px) {
    .sanson-hero-logo {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .sanson-hero-logo {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .sanson-hero-logo {
        max-width: 280px;
    }
}


/* ================================
   SANSON NRGY SECTION
   ================================ */

.sanson-nrgy-section {
    padding: 120px 0 30px 0;
    background: #97AC50;
    color: white;
}

.sanson-nrgy-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
}

.sanson-nrgy-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sanson-nrgy-image:hover {
    transform: scale(1.02);
}

.sanson-nrgy-content {
    padding-left: 40px;
}

.sanson-nrgy-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.sanson-nrgy-subtitle {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sanson-nrgy-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sanson-nrgy-description:last-of-type {
    margin-bottom: 40px;
}

.sanson-nrgy-items {
    display: contents;
}

.sanson-nrgy-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sanson-nrgy-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.sanson-nrgy-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sanson-nrgy-item-content {
    flex: 1;
}

.sanson-nrgy-item-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.sanson-nrgy-item-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sanson-nrgy-content {
        padding-left: 20px;
        margin-bottom: 40px;
    }
    
    .sanson-nrgy-title {
        font-size: 2.3rem;
    }
    
    .sanson-nrgy-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sanson-nrgy-section {
        padding: 80px 0 0 0;
    }
    
    .sanson-nrgy-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .sanson-nrgy-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .sanson-nrgy-content {
        padding-left: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .sanson-nrgy-description {
        font-size: 1rem;
    }
    
    .sanson-nrgy-image-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .sanson-nrgy-title {
        font-size: 1.8rem;
    }
    
    .sanson-nrgy-subtitle {
        font-size: 1.2rem;
    }
    
    .sanson-nrgy-description {
        font-size: 0.95rem;
    }
    
    .sanson-nrgy-image-container {
        height: 350px;
    }

    .disfrutemos-content {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: 0px;
    }
}

/* ================================
   DROPDOWN SUBMENU STYLES
   ================================ */

/* Desktop Dropdown */
.dropdown-enalia {
    position: relative;
}

.dropdown-toggle-enalia {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon-enalia {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu-enalia {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-enalia:hover .dropdown-menu-enalia {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-enalia:hover .dropdown-icon-enalia {
    transform: rotate(180deg);
}

.dropdown-menu-enalia li {
    margin: 0;
}

.dropdown-link-enalia {
    display: block;
    padding: 10px 20px;
    color: white !important;
    text-decoration: none;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link-enalia:hover {
    background: rgba(151, 172, 80, 0.2);
    border-left-color: #97AC50;
    color: #97AC50 !important;
    padding-left: 25px;
}

/* Estilos para banderas en dropdown */
.dropdown-link-enalia img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    object-fit: cover;
    border-radius: 2px;
}

.nav-sublink-enalia img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Dropdown */
.mobile-dropdown-enalia {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

.mobile-dropdown-toggle-enalia {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-icon-enalia {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Mobile Dropdown - ACTUALIZAR estas reglas */
.mobile-dropdown-content-enalia {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 5px;
    border-radius: 5px;
}

.mobile-dropdown-content-enalia.show {
    max-height: 500px; /* Aumentar altura máxima */
    padding: 10px 0;
}

.mobile-dropdown-content-enalia .submenu-item {
    padding: 10px 20px;
    font-size: 14px;
    opacity: 0.9;
    border-left: 3px solid transparent;
}

.mobile-dropdown-content-enalia .submenu-item:hover {
    border-left-color: #97AC50;
    background: rgba(151, 172, 80, 0.1);
    padding-left: 25px;
}

.mobile-dropdown-enalia.active .mobile-dropdown-icon-enalia {
    transform: rotate(180deg);
}

/* Hide dropdown on mobile screens for desktop nav */
@media (max-width: 991px) {
    .dropdown-menu-enalia {
        display: none;
    }
}

/**********************************************************************************************/
/**********************************************************************************************/
/********************TINTO DE VERANO **********************************************************/
/* Tinto de Verano Specific Styles */
.tinto-de-verano-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--tinto-hero-desktop-bg, url('../images/tinto-de-verano-hero-background.webp')) center/cover no-repeat;
}

.tinto-de-verano-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Custom Social Media Section with Green Background */
.tinto-de-verano-social-section {
    padding: 120px 0;
    background: #97AC50;
    color: white;
}

.tinto-de-verano-social-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.tinto-de-verano-social-subtitle {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 60px;
}

.tinto-de-verano-social-button {
    background: #f0f0f0;
    color: #97AC50;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
}

.tinto-de-verano-social-button:hover {
    background: #e0e0e0;
    color: #7A9142;
    transform: translateY(-3px);
    text-decoration: none;
}

.tinto-de-verano-social-button i {
    color: #97AC50;
    font-size: 1.2rem;
}

.tinto-de-verano-social-button:hover i {
    color: #7A9142;
}

/* Navigation overrides for mobile */
.tinto-de-verano-social-navigation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.tinto-de-verano-social-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.tinto-de-verano-social-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .tinto-de-verano-hero-logo {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .tinto-de-verano-hero {
        padding-top: 100px;
    }
    
    .tinto-de-verano-hero-logo {
        max-width: 350px;
    }
    
    .tinto-de-verano-social-section {
        padding: 80px 0;
    }
    
    .tinto-de-verano-social-title {
        font-size: 2rem;
    }
    
    .tinto-de-verano-social-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .tinto-de-verano-hero-logo {
        max-width: 280px;
    }
    
    .tinto-de-verano-social-title {
        font-size: 1.8rem;
    }
    
    .tinto-de-verano-social-button {
        font-size: 1.4rem;
        padding: 10px 20px;
        line-height: 0.4rem;
    }
}

/***********************************************************************************/
/***********************************************************************************/
/*****************INTERNA ALTEZA****************************************************/
/* Alteza Specific Styles */
.alteza-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--alteza-hero-desktop-bg, url('../images/alteza-hero-background.webp')) center/cover no-repeat;
}

.alteza-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Alteza Product Section */
.alteza-product-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.alteza-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.alteza-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.alteza-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.alteza-variants {
    margin-bottom: 40px;
}

.alteza-variant {
    margin-bottom: 30px;
}

.alteza-variant-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.alteza-variant-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
}

.alteza-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.alteza-product-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.alteza-product-image:hover {
    transform: scale(1.02);
}

/* Alteza Characteristics */
.alteza-characteristics {
    display: contents;
}

.alteza-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.alteza-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.alteza-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.alteza-characteristic-content {
    flex: 1;
}

.alteza-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.alteza-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .alteza-hero-logo {
        max-width: 450px;
    }
    
    .alteza-product-title {
        font-size: 2.3rem;
    }
    
    .alteza-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .alteza-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .alteza-hero {
        padding-top: 100px;
    }
    
    .alteza-hero-logo {
        max-width: 350px;
    }
    
    .alteza-product-section {
        padding: 30px 0;
    }
    
    .alteza-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .alteza-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .alteza-product-description {
        font-size: 1rem;
    }
    
    .alteza-product-image-container {
        height: 300px;
    }
    
    .alteza-variants {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .alteza-hero-logo {
        max-width: 280px;
    }
    
    .alteza-product-title {
        font-size: 1.8rem;
    }
    
    .alteza-variant-title {
        font-size: 1.2rem;
    }
    
    .alteza-product-description,
    .alteza-variant-description {
        font-size: 0.95rem;
    }
    
    .alteza-product-image-container {
        height: 380px;
    }
}

/********************************************************************************************/
/********************************************************************************************/
/***************************SANGRÍA FIESTA *********************************************/
/********************************************************************************************/
/********************************************************************************************/
/* Sangría Fiesta Specific Styles */
.sangria-fiesta-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--sangria-fiesta-hero-desktop-bg, url('../images/sangria-fiesta-hero-background.webp')) center/cover no-repeat;
}

.sangria-fiesta-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Sangría Fiesta Product Section */
.sangria-fiesta-product-section {
    padding: 30px 0;
    background: #f0f0f0;
}

.sangria-fiesta-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.sangria-fiesta-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.sangria-fiesta-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.sangria-fiesta-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.sangria-fiesta-product-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.sangria-fiesta-product-image:hover {
    transform: scale(1.02);
}

/* Sangría Fiesta Characteristics */
.sangria-fiesta-characteristics {
    display: contents;
}

.sangria-fiesta-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sangria-fiesta-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.sangria-fiesta-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sangria-fiesta-characteristic-content {
    flex: 1;
}

.sangria-fiesta-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.sangria-fiesta-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sangria-fiesta-hero-logo {
        max-width: 450px;
    }
    
    .sangria-fiesta-product-title {
        font-size: 2.3rem;
    }
    
    .sangria-fiesta-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .sangria-fiesta-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .sangria-fiesta-hero {
        padding-top: 100px;
    }
    
    .sangria-fiesta-hero-logo {
        max-width: 350px;
    }
    
    .sangria-fiesta-product-section {
        padding: 0px 0;
    }
    
    .sangria-fiesta-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .sangria-fiesta-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .sangria-fiesta-product-description {
        font-size: 1rem;
    }
    
    .sangria-fiesta-product-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .sangria-fiesta-hero-logo {
        max-width: 280px;
    }
    
    .sangria-fiesta-product-title {
        font-size: 1.8rem;
    }
    
    .sangria-fiesta-product-description {
        font-size: 0.95rem;
    }
    
    .sangria-fiesta-product-image-container {
        height: 380px;
    }
}


/**************************************************************************************/
/* Ducarles Moscatel Product Section */
/* Styles specific to the Ducarles Moscatel product page */
/* Ducarles Moscatel Specific Styles */
.ducarles-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--ducarles-hero-desktop-bg, url('../images/ducarles-hero-background.webp')) center/cover no-repeat;
}

.ducarles-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Ducarles Moscatel Product Section */
.ducarles-product-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.ducarles-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.ducarles-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.ducarles-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.ducarles-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.ducarles-product-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.ducarles-product-image:hover {
    transform: scale(1.02);
}

/* Ducarles Moscatel Characteristics */
.ducarles-characteristics {
    display: contents;
}

.ducarles-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ducarles-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ducarles-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ducarles-characteristic-content {
    flex: 1;
}

.ducarles-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.ducarles-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .ducarles-hero-logo {
        max-width: 450px;
    }
    
    .ducarles-product-title {
        font-size: 2.3rem;
    }
    
    .ducarles-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .ducarles-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .ducarles-hero {
        padding-top: 100px;
    }
    
    .ducarles-hero-logo {
        max-width: 350px;
    }
    
    .ducarles-product-section {
        padding: 0px 0;
    }
    
    .ducarles-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .ducarles-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .ducarles-product-description {
        font-size: 1rem;
    }
    
    .ducarles-product-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .ducarles-hero-logo {
        max-width: 280px;
    }
    
    .ducarles-product-title {
        font-size: 1.8rem;
    }
    
    .ducarles-product-description {
        font-size: 0.95rem;
    }
    
    .ducarles-product-image-container {
        height: 380px;
    }
}

/*****************************************************************************************/
/****************************************************************************************/
/* Vino de Misa Styles */
/* Vino de Misa Specific Styles */
.vino-misa-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--vino-misa-hero-desktop-bg, url('../images/vino-misa-hero-background.webp')) center/cover no-repeat;
}

.vino-misa-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Vino de Misa Product Section */
.vino-misa-product-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.vino-misa-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.vino-misa-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.vino-misa-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.vino-misa-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.vino-misa-product-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.vino-misa-product-image:hover {
    transform: scale(1.02);
}

/* Vino de Misa Characteristics */
.vino-misa-characteristics {
    display: contents;
}

.vino-misa-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vino-misa-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.vino-misa-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vino-misa-characteristic-content {
    flex: 1;
}

.vino-misa-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.vino-misa-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vino-misa-hero-logo {
        max-width: 450px;
    }
    
    .vino-misa-product-title {
        font-size: 2.3rem;
    }
    
    .vino-misa-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .vino-misa-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .vino-misa-hero {
        padding-top: 100px;
    }
    
    .vino-misa-hero-logo {
        max-width: 350px;
    }
    
    .vino-misa-product-section {
        padding: 80px 0;
    }
    
    .vino-misa-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .vino-misa-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .vino-misa-product-description {
        font-size: 1rem;
    }
    
    .vino-misa-product-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .vino-misa-hero-logo {
        max-width: 280px;
    }
    
    .vino-misa-product-title {
        font-size: 1.8rem;
    }
    
    .vino-misa-product-description {
        font-size: 0.95rem;
    }
    
    .vino-misa-product-image-container {
        height: 380px;
    }
}

/*****************************************************************************************/
/****************************************************************************************/
/* Vino de Misa Styles */
/* Vino de Misa Specific Styles */
.vino-misa-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--vino-misa-hero-desktop-bg, url('../images/vino-misa-hero-background.webp')) center/cover no-repeat;
}

.vino-misa-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Vino de Misa Product Section */
.vino-misa-product-section {
    padding: 120px 0;
    background: #f0f0f0;
}

.vino-misa-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.vino-misa-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.vino-misa-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.vino-misa-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.vino-misa-product-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.vino-misa-product-image:hover {
    transform: scale(1.02);
}

/* Vino de Misa Characteristics */
.vino-misa-characteristics {
    display: contents;
}

.vino-misa-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vino-misa-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.vino-misa-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vino-misa-characteristic-content {
    flex: 1;
}

.vino-misa-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.vino-misa-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vino-misa-hero-logo {
        max-width: 450px;
    }
    
    .vino-misa-product-title {
        font-size: 2.3rem;
    }
    
    .vino-misa-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .vino-misa-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .vino-misa-hero {
        padding-top: 100px;
    }
    
    .vino-misa-hero-logo {
        max-width: 350px;
    }
    
    .vino-misa-product-section {
        padding: 0px 0;
    }
    
    .vino-misa-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .vino-misa-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .vino-misa-product-description {
        font-size: 1rem;
    }
    
    .vino-misa-product-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .vino-misa-hero-logo {
        max-width: 280px;
    }
    
    .vino-misa-product-title {
        font-size: 1.8rem;
    }
    
    .vino-misa-product-description {
        font-size: 0.95rem;
    }
    
    .vino-misa-product-image-container {
        height: 380px;
    }
}

/*****************************************************************************************/
/*****************************************************************************************/
/* Sazón Specific Styles */
.sazon-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: var(--sazon-hero-desktop-bg, url('../images/sazon-hero-background.webp')) center/cover no-repeat;
}

.sazon-hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Sazón Product Section */
.sazon-product-section {
    padding: 30px 0;
    background: #f0f0f0;
}

.sazon-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.sazon-product-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.sazon-product-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.sazon-product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.sazon-product-image {
    max-width: 70%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.sazon-product-image:hover {
    transform: scale(1.02);
}

/* Sazón Characteristics */
.sazon-characteristics {
    display: contents;
}

.sazon-characteristic {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sazon-characteristic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.sazon-characteristic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sazon-characteristic-content {
    flex: 1;
}

.sazon-characteristic-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.sazon-characteristic-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sazon-hero-logo {
        max-width: 450px;
    }
    
    .sazon-product-title {
        font-size: 2.3rem;
    }
    
    .sazon-product-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .sazon-product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .sazon-hero {
        padding-top: 100px;
    }
    
    .sazon-hero-logo {
        max-width: 350px;
    }
    
    .sazon-product-section {
        padding: 0px 0;
    }
    
    .sazon-product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .sazon-product-content {
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    .sazon-product-description {
        font-size: 1rem;
    }
    
    .sazon-product-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .sazon-hero-logo {
        max-width: 280px;
    }
    
    .sazon-product-title {
        font-size: 1.8rem;
    }
    
    .sazon-product-description {
        font-size: 0.95rem;
    }
    
    .sazon-product-image-container {
        height: 380px;
    }
}

/*****************************************************************************************/
/*****************************************************************************************/
/* Mobile Navigation Styles */
/* Submenú mobile */
.nav-item-with-submenu {
    position: relative;
}

.mobile-submenu {
    padding-left: 20px;
    margin-top: 5px;
}

.nav-sublink-enalia {
    display: block;
    padding: 8px 0;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease-out;
}

.nav-sublink-enalia:hover {
    color: #B1C17B !important;
    transform: translateX(0);
}

.mobile-nav.show .nav-sublink-enalia {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.show .nav-sublink-enalia:nth-child(1) { transition-delay: 0.9s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(2) { transition-delay: 1.0s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(3) { transition-delay: 1.1s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(4) { transition-delay: 1.2s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(5) { transition-delay: 1.3s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(6) { transition-delay: 1.4s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(7) { transition-delay: 1.5s; }
.mobile-nav.show .nav-sublink-enalia:nth-child(8) { transition-delay: 1.6s; }

/* Flecha de scroll */
.mobile-scroll-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #B1C17B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 10;
}

.mobile-nav.show .mobile-scroll-arrow {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.5s;
}

.mobile-scroll-arrow:hover {
    background: #8FA05E;
    transform: scale(1.1);
}

.mobile-scroll-arrow:active {
    transform: scale(0.95);
}

/* Animación de pulso para feedback visual */
@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse-animation 0.3s ease-in-out;
}

/* Mejorar la flecha de scroll */
.mobile-scroll-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #B1C17B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(177, 193, 123, 0.4);
}

.mobile-scroll-arrow:hover {
    background: #8FA05E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(177, 193, 123, 0.6);
}

.mobile-scroll-arrow:active {
    transform: scale(0.95);
}

/* Fix para balancear márgenes en Cariñoso Moments section */
@media (max-width: 768px) {
    .carinoso-hero {
        background: var(--carinoso-hero-mobile-bg, url("../images/banner_carinoso_mobile.png")) top / cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
    }

    .carinoso-hero-content {
        display: none;
    }

    #sanson-hero {
        background: var(--sanson-hero-mobile-bg, url('../images/banner_sanson_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    #tinto-de-verano-hero {
        background: var(--tinto-hero-mobile-bg, url('../images/banner_verano_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .tinto-de-verano-hero-content {
        display: none;
    }

    #alteza-hero {
        background: var(--alteza-hero-mobile-bg, url('../images/banner_alteza_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .alteza-hero-content {
        display: none;
    }

    #sangria-fiesta-hero {
        background: var(--sangria-fiesta-hero-mobile-bg, url('../images/banner_sangria_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .sangria-fiesta-hero-content {
        display: none;
    }

    #ducarles-hero {
        background: var(--ducarles-hero-mobile-bg, url('../images/banner_ducarles_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .ducarles-hero-content {
        display: none;
    }

    #vino-misa-hero {
        background: var(--vino-misa-hero-mobile-bg, url('../images/banner_misa_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .vino-misa-hero-content {
        display: none;
    }

    #sazon-hero {
        background: var(--sazon-hero-mobile-bg, url('../images/banner_sazon_mobile.png')) top/cover no-repeat !important;
        margin-top: 87px;
        background-color: #f0f0f0;
        height: 85vh;
        padding-top: 100px;
    }

    .sazon-hero-content {
        display: none;
    }

    /* Asegurar padding simétrico en el contenedor principal */
    .carinoso-moments-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil y agregar padding balanceado */
    .carinoso-moments-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .carinoso-moments-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .carinoso-moments-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .carinoso-moments-image-container {
        padding: 0;
        margin-bottom: 30px;
    }
    
    /* Padding simétrico para el contenido */
    .carinoso-moments-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, reducir padding pero mantener simetría */
    .carinoso-moments-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .carinoso-moments-image-container {
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .carinoso-moments-content {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }
}

/* También aplicar el mismo fix a la sección "Un Cariñoso diferente para ti" */
@media (max-width: 768px) {
    .carinoso-diferente-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .carinoso-diferente-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    .carinoso-diferente-content {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        margin-bottom: 50px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .carinoso-diferente-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .carinoso-diferente-content {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }
}

/* Fix para balancear márgenes en las secciones de SANSON en móvil */

/* Fix para SANSON NRGY Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .sanson-nrgy-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil */
    .sanson-nrgy-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .sanson-nrgy-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .sanson-nrgy-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .sanson-nrgy-image-container {
        padding: 0;
        margin-bottom: 30px;
    }
    
    /* Padding simétrico para el contenido */
    .sanson-nrgy-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar títulos en móvil */
    .sanson-nrgy-title,
    .sanson-nrgy-subtitle {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .sanson-nrgy-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sanson-nrgy-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sanson-nrgy-content {
        margin-bottom: 40px;
    }
}

/* Fix para la sección "Deja que la magia de SANSON te inspire" */
@media (max-width: 768px) {
    /* Usar el ID específico para ser más preciso */
    #sanson-inspiracion .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    #sanson-inspiracion .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    #sanson-inspiracion .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    #sanson-inspiracion [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    #sanson-inspiracion .carinoso-diferente-content {
        padding-left: 0;
        padding-right: 0;
        height: auto;
        margin-bottom: 50px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    #sanson-inspiracion .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    #sanson-inspiracion [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    #sanson-inspiracion .carinoso-diferente-content {
        margin-bottom: 40px;
    }
}

/* Fix para balancear márgenes en la sección de Alteza en móvil */

/* Fix para Alteza Product Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .alteza-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil - en este caso está en la segunda columna */
    .alteza-product-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .alteza-product-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .alteza-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .alteza-product-image-container {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Padding simétrico para el contenido */
    .alteza-product-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar título en móvil */
    .alteza-product-title {
        text-align: center;
    }
    
    /* Balancear las variantes */
    .alteza-variants {
        text-align: left;
    }
    
    .alteza-variant-title {
        text-align: left;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .alteza-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .alteza-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .alteza-product-content {
        margin-bottom: 40px;
    }
    
    .alteza-product-image-container {
        margin-bottom: 25px;
    }
}

/* Asegurar que las características se vean bien en móvil */
@media (max-width: 768px) {
    .alteza-characteristics {
        margin-top: 30px;
    }
    
    .alteza-characteristic {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .alteza-variant {
        margin-bottom: 25px;
        text-align: left;
    }
}

/* Fix para balancear márgenes en la sección de Sangría Fiesta en móvil */

/* Fix para Sangría Fiesta Product Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .sangria-fiesta-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil - está en la segunda columna (contenido) */
    .sangria-fiesta-product-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .sangria-fiesta-product-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .sangria-fiesta-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .sangria-fiesta-product-image-container {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Padding simétrico para el contenido */
    .sangria-fiesta-product-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar título en móvil */
    .sangria-fiesta-product-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .sangria-fiesta-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sangria-fiesta-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sangria-fiesta-product-content {
        margin-bottom: 40px;
    }
    
    .sangria-fiesta-product-image-container {
        margin-bottom: 25px;
    }
}

/* Asegurar que las características se vean bien en móvil */
@media (max-width: 768px) {
    .sangria-fiesta-characteristics {
        margin-top: 30px;
    }
    
    .sangria-fiesta-characteristic {
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Fix para balancear márgenes en la sección de Ducarles en móvil */

/* Fix para Ducarles Product Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .ducarles-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil - está en la segunda columna (contenido) */
    .ducarles-product-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .ducarles-product-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .ducarles-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .ducarles-product-image-container {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Padding simétrico para el contenido */
    .ducarles-product-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar título en móvil */
    .ducarles-product-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .ducarles-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .ducarles-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .ducarles-product-content {
        margin-bottom: 40px;
    }
    
    .ducarles-product-image-container {
        margin-bottom: 25px;
    }
}

/* Asegurar que las características se vean bien en móvil */
@media (max-width: 768px) {
    .ducarles-characteristics {
        margin-top: 30px;
    }
    
    .ducarles-characteristic {
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Fix para balancear márgenes en la sección de Vino de Misa en móvil */

/* Fix para Vino de Misa Product Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .vino-misa-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil - está en la primera columna (contenido) */
    .vino-misa-product-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .vino-misa-product-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .vino-misa-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para el contenido */
    .vino-misa-product-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar título en móvil */
    .vino-misa-product-title {
        text-align: center;
    }
    
    /* Padding simétrico para la imagen */
    .vino-misa-product-image-container {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .vino-misa-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .vino-misa-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .vino-misa-product-content {
        margin-bottom: 40px;
    }
    
    .vino-misa-product-image-container {
        margin-bottom: 25px;
    }
}

/* Asegurar que las características se vean bien en móvil */
@media (max-width: 768px) {
    .vino-misa-characteristics {
        margin-top: 30px;
    }
    
    .vino-misa-characteristic {
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Fix para balancear márgenes en la sección de Sazón en móvil */

/* Fix para Sazón Product Section */
@media (max-width: 768px) {
    /* Asegurar padding simétrico en el contenedor principal */
    .sazon-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Quitar el offset en móvil - está en la segunda columna (contenido) */
    .sazon-product-section .offset-lg-1 {
        margin-left: 0 !important;
    }
    
    /* Resetear padding de Bootstrap y aplicar padding simétrico */
    .sazon-product-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .sazon-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Padding simétrico para la imagen */
    .sazon-product-image-container {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Padding simétrico para el contenido */
    .sazon-product-content {
        padding-left: 0;
        padding-right: 0;
        text-align: justify;
        margin-bottom: 50px;
    }
    
    /* Centrar título en móvil */
    .sazon-product-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Para pantallas muy pequeñas, mantener consistencia */
    .sazon-product-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sazon-product-section [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .sazon-product-content {
        margin-bottom: 40px;
    }
    
    .sazon-product-image-container {
        margin-bottom: 25px;
    }
}

/* Asegurar que las características se vean bien en móvil */
@media (max-width: 768px) {
    .sazon-characteristics {
        margin-top: 30px;
    }
    
    .sazon-characteristic {
        margin-bottom: 20px;
        text-align: left;
    }
}

/*****************************************************************************************/
/*****************************************************************************************/
/* ================================
   CONTACTANOS PAGE STYLES
   ================================ */

/* Hero Section */
.contactanos-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/contactanos-hero-background.webp') center/cover no-repeat;
}

.contactanos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.contactanos-hero-content {
    position: relative;
    z-index: 2;
}

.contactanos-hero-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400; /* Cambiado de 700 a 400 para hacerlo menos bold */
    font-size: 4rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* Queremos Escucharte Section */
.queremos-escucharte-section {
    margin-top: 145px;;
    padding: 0px 0 0px 0;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/filigrana-left-marcas.webp'); /* Filigrana como background del contenedor */
    background-position: left center;
    background-size: 280px auto;
    background-repeat: no-repeat;
}

.queremos-escucharte-content {
    position: relative;
    z-index: 2;
    text-align: left; /* Alineación a la izquierda */
}

.queremos-escucharte-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left; /* Alineación a la izquierda */
}

.queremos-escucharte-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 60px;
    line-height: 1.6;
    text-align: left; /* Alineación a la izquierda */
}

.contacto-info {
    max-width: 100%;
}

.contacto-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    justify-content: flex-start; /* Alineación a la izquierda */
}

.contacto-icon {
    color: #B1C17B;
    font-size: 20px;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}

.contacto-content {
    flex: 1;
    text-align: left;
}

.contacto-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.5;
}

.contacto-text a {
    color: #B1C17B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contacto-text a:hover {
    color: #8FA05E;
    text-decoration: underline;
}

.horario-info,
.redes-info {
    text-align: left; /* Alineación a la izquierda */
    margin-top: 50px;
}

.horario-title,
.redes-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    text-align: left; /* Alineación a la izquierda */
}

.horario-text {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    margin: 0;
    text-align: left; /* Alineación a la izquierda */
}

.redes-sociales {
    display: flex;
    justify-content: flex-start; /* Alineación a la izquierda */
    gap: 15px;
    margin-top: 20px;
}

.red-social {
    display: inline-flex;
    width: 35px; /* Cambiado de 50px a 35px para hacerlos cuadrados como el footer */
    height: 35px; /* Cambiado de 50px a 35px para hacerlos cuadrados como el footer */
    background: #B1C17B;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* Cambiado de 50% a 6px para hacerlos cuadrados como el footer */
    transition: all 0.3s ease;
    font-size: 16px; /* Cambiado de 20px a 16px para ajustar al tamaño del footer */
    text-decoration: none !important;
}

.red-social:hover {
    background: #8FA05E;
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Distribuidor Section */
.distribuidor-section {
    padding: 120px 0;
    background: white;
}

.distribuidor-info {
    padding-right: 40px;
}

.distribuidor-line {
    width: 60px;
    height: 10px; /* Cambiado de 4px a 10px según solicitud */
    background: #B1C17B;
    margin-bottom: 30px;
}

.distribuidor-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.distribuidor-description {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Formulario */
.formulario-container {
    background: transparent; /* Cambiado de #f8f8f8 a transparent - sin color de fondo */
    padding: 0; /* Cambiado de 40px a 0 - sin padding */
    border-radius: 0; /* Cambiado de 15px a 0 - sin border radius */
    box-shadow: none; /* Eliminado - siclass="col-lg-6"n sombra */
    border: none; /* Sin borde */
}

.formulario-title {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 550;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.4;
}

.distribuidor-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    background: #f5f5f5; /* Cambiado de white a gris para los campos */
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #B1C17B;
    box-shadow: 0 0 0 3px rgba(177, 193, 123, 0.1);
    background: #f5f5f5; /* Mantener el fondo gris al hacer focus */
}

.form-control::placeholder {
    color: #999;
    font-weight: 300;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    background-color: #f5f5f5; /* Fondo gris para el select también */
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
    background: #f5f5f5; /* Fondo gris para el textarea también */
}

.form-checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    transform: scale(1.2);
    cursor: pointer;
}

.form-checkbox label {
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--dark-text);
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
}

.form-checkbox label a {
    color: #B1C17B;
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox label a:hover {
    color: #8FA05E;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-enviar {
    background: #B1C17B;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-family: 'GeneralSans', 'NotoSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177,193,123,0.3);
    cursor: pointer;
    letter-spacing: 0.02em;
    min-width: 200px;
}

.btn-enviar:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(177,193,123,0.4);
}

.btn-enviar:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contactanos-hero-title {
        font-size: 3rem;
    }
    
    .queremos-escucharte-title,
    .distribuidor-title {
        font-size: 2.3rem;
    }
    
    .distribuidor-info {
        padding-right: 20px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .contactanos-hero {
        padding-top: 100px;
    }
    
    .contactanos-hero-title {
        font-size: 2.5rem;
    }
    
    .queremos-escucharte-section,
    .distribuidor-section {
        padding: 80px 0;
    }
    
    .queremos-escucharte-section {
        background-size: 200px auto;
    }
    
    .queremos-escucharte-title,
    .distribuidor-title {
        font-size: 2rem;
        text-align: center; /* Centrar en móvil */
    }
    
    .queremos-escucharte-description {
        font-size: 1.1rem;
        text-align: center; /* Centrar en móvil */
    }
    
    .queremos-escucharte-content {
        text-align: center; /* Centrar todo el contenido en móvil */
    }
    
    .contacto-item {
        justify-content: center; /* Centrar en móvil */
    }
    
    .horario-info,
    .redes-info {
        text-align: center; /* Centrar en móvil */
    }
    
    .horario-title,
    .redes-title {
        text-align: center; /* Centrar en móvil */
    }
    
    .horario-text {
        text-align: center; /* Centrar en móvil */
    }
    
    .redes-sociales {
        justify-content: center; /* Centrar en móvil */
        flex-wrap: wrap;
    }
    
    .distribuidor-info {
        padding-right: 0;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .distribuidor-line {
        margin: 0 auto 30px;
    }
    
    .formulario-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .red-social {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contactanos-hero-title {
        font-size: 2rem;
    }
    
    .queremos-escucharte-title,
    .distribuidor-title {
        font-size: 1.8rem;
    }
    
    .queremos-escucharte-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .contacto-text {
        font-size: 1rem;
    }
    
    .formulario-title {
        font-size: 1.1rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-enviar {
        padding: 12px 40px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .form-checkbox label {
        font-size: 0.85rem;
    }
    
    .red-social {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .queremos-escucharte-section {
        background-size: 150px auto;
    }
}


/* ================================
   TÉRMINOS Y CONDICIONES / POLÍTICA DE PRIVACIDAD
   ================================ */

/* Hero Simple */
.terminos-hero {
    background: #97AC50;
    padding: 180px 0 80px 0;
    text-align: center;
    color: white;
}

.terminos-hero-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 3.5rem;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* Contenedor principal con sidebar */
.terminos-container {
    padding: 80px 0;
    background: #f0f0f0;
}

.terminos-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar de navegación */
.terminos-sidebar {
    position: sticky;
    top: 180px;
    width: 280px;
    height: fit-content;
    flex-shrink: 0;
}

.sidebar-nav {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2C2C2C;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #B1C17B;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 12px;
}

.sidebar-nav a {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: #B1C17B;
    color: white;
    transform: translateX(5px);
}

/* Contenido principal */
.terminos-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.content-section {
    margin-bottom: 50px;
    scroll-margin-top: 180px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #B1C17B;
}

.section-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Footer simplificado */
.footer-simple {
    background: #2C2C2C;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-simple-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-simple-copyright {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design - Términos y Condiciones */
@media (max-width: 991px) {
    .terminos-layout {
        flex-direction: column;
    }

    .terminos-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .terminos-content {
        padding: 40px 30px;
    }

    .terminos-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terminos-hero {
        padding: 140px 0 60px 0;
    }

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

    .terminos-container {
        padding: 60px 0;
    }

    .terminos-content {
        padding: 30px 20px;
    }

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

    .section-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .terminos-hero-title {
        font-size: 1.6rem;
    }

    .terminos-content {
        padding: 25px 15px;
    }

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

    .section-text {
        font-size: 0.95rem;
    }
}

/* ================================
   EXPERIENCIAS PAGE STYLES
   ================================ */

/* Hero Section */
.experiencias-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 150px;
    background: url('../images/banner-experiencias.jpg') center/cover no-repeat;
    /* Usar la imagen de personas brindando */
}

.experiencias-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.experiencias-hero-content {
    position: relative;
    z-index: 2;
}

.experiencias-hero-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
}

/* Section Headers */
.experiencias-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.experiencias-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin: 0 auto 30px;
}

.experiencias-section-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.experiencias-section-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Noticias Section */
.experiencias-noticias-section {
    padding: 100px 0;
    background: #f0f0f0;
}

.experiencias-noticias-grid {
    margin-bottom: 40px;
}

/* Experience/News Cards */
.experiencias-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experiencias-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experiencias-card-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.experiencias-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experiencias-card:hover .experiencias-card-image img {
    transform: scale(1.05);
}

.experiencias-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.tag-nuevos {
    background: #B1C17B;
    color: white;
}

.tag-historias {
    background: #F5A623;
    color: white;
}

.tag-cuidado {
    background: #4A90E2;
    color: white;
}

.experiencias-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experiencias-card-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 60px;
}

.experiencias-card-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Recetas Section */
.experiencias-recetas-section {
    padding: 100px 0;
    background: white;
}

/* Recipe Cards */
.receta-card {
    background: #F0F0F0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    text-align: left;
}

.receta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.receta-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.receta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.receta-card:hover .receta-card-image img {
    transform: scale(1.05);
}

.receta-card-content {
    padding: 20px;
}

.receta-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.receta-tag {
    padding: 4px 10px;
    background: #c0c0c0;
    border-radius: 15px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.receta-tag:hover {
    background: #B1C17B;
    color: white;
}

.receta-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.receta-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.receta-difficulty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.receta-difficulty span {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.05em;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #000000;
    font-size: 1.1rem;
}

.rating-stars .far {
    color: #595353;
}

/* Categories Card */
.categorias-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: sticky;
    top: 100px;
    text-align: center;
}

.categorias-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--light-green);
    margin-bottom: 25px;
}

.categorias-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.categoria-item {
    margin-bottom: 0;
    position: relative;
}

.categoria-item.separator {
    border-top: 2px solid #f0f0f0;
}

.categoria-item.separatorB {
    border-bottom: 2px solid #f0f0f0;
}

.categoria-item a {
    display: block;
    padding: 12px 20px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.categoria-item a:hover {
    background: #f8f8f8;
    color: #B1C17B;
    transform: translateX(5px);
    font-weight: 500;
}

.categoria-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #B1C17B;
    transition: height 0.3s ease;
}

.categoria-item a:hover::before {
    height: 70%;
}

/* Load More Section */
.experiencias-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-ver-mas {
    background: none;
    border: none;
    color: #B1C17B;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 15px 40px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.btn-ver-mas:hover {
    color: #8FA05E;
    transform: translateY(-3px);
}

.btn-ver-mas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #B1C17B;
    transition: width 0.3s ease;
}

.btn-ver-mas:hover::after {
    width: 100%;
}

.arrow-down {
    margin-top: 15px;
    animation: bounce 2s infinite;
}

.arrow-down i {
    font-size: 1.5rem;
    color: #B1C17B;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Hidden items (for load more functionality) */
.noticia-item.hidden,
.receta-item.hidden {
    display: none;
}

/* Loading animation */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.loading.active {
    display: block;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f0f0f0;
    border-top-color: #B1C17B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .experiencias-hero-title {
        font-size: 3.5rem;
    }
    
    .experiencias-section-title {
        font-size: 2rem;
    }
    
    .categorias-card {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .experiencias-hero {
        height: 70vh;
        padding-top: 100px;
    }
    
    .experiencias-hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .experiencias-noticias-section,
    .experiencias-recetas-section {
        padding: 60px 0;
    }
    
    .experiencias-section-title {
        font-size: 1.8rem;
    }
    
    .experiencias-section-subtitle {
        font-size: 1rem;
    }
    
    .experiencias-card-title {
        font-size: 1.1rem;
    }
    
    .receta-title {
        font-size: 1.2rem;
    }
    
    .categorias-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .categoria-item.separator {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .experiencias-hero-title {
        font-size: 2rem;
    }
    
    .experiencias-section-title {
        font-size: 1.5rem;
    }
    
    .experiencias-card-content,
    .receta-card-content {
        padding: 20px;
    }
    
    .categorias-list {
        grid-template-columns: 1fr;
    }
    
    .categoria-item.separator {
        grid-column: span 1;
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top-color: #B1C17B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-in-new {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in-new.visible {
    opacity: 1;
    transform: translateY(0);
}

.categoria-item a.active {
    background: #B1C17B;
    color: white !important;
    font-weight: 500;
}

.categoria-item a.active::before {
    height: 70%;
    background: #fff;
}

.animated {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   NOTICIA DETALLE PAGE STYLES
   ================================ */

/* Hero Banner Section */
.noticia-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background: linear-gradient(135deg, #FF3D47 0%, #FF6B74 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

.noticia-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.png');
    opacity: 0.1;
    z-index: 1;
}

.noticia-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.noticia-hero-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.noticia-hero-product {
    position: absolute;
    right: 10%;
    bottom: -50px;
    z-index: 3;
    animation: floatBottle 4s ease-in-out infinite;
}

.noticia-hero-bottle {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes floatBottle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Article Content Section */
.noticia-content-section {
    padding: 80px 0;
    background: white;
}

.noticia-header {
    margin-bottom: 40px;
}

.noticia-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.noticia-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 0;
}

/* Article Body */
.noticia-body {
    font-family: 'GeneralSans', sans-serif;
}

.noticia-text {
    font-weight: 400;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.noticia-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    margin-top: 40px;
}

/* Highlighted Section */
.noticia-highlight {
    background: #f8f8f8;
    border-left: 4px solid #B1C17B;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}

.noticia-highlight .noticia-subtitle {
    margin-top: 0;
    color: #B1C17B;
}

.noticia-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.noticia-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.noticia-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #B1C17B;
    font-weight: bold;
    font-size: 1.2rem;
}

.noticia-list li strong {
    color: var(--dark-text);
}

/* Full Width Image */
.noticia-full-image {
    margin: 60px -15px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.noticia-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.noticia-image-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px 30px;
    font-family: 'GeneralSans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.noticia-image-caption strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Continuation Section */
.noticia-continuation {
    margin-top: 40px;
}

/* Share Section */
.noticia-share-section {
    margin-top: 60px;
    padding-top: 40px;
}

.noticia-separator {
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 40px;
}

.noticia-share-content {
    text-align: center;
}

.noticia-share-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.noticia-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #B1C17B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    background: #8FA05E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(177, 193, 123, 0.4);
}

.share-btn[data-network="facebook"]:hover {
    background: #1877f2;
}

.share-btn[data-network="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn[data-network="linkedin"]:hover {
    background: #0077b5;
}

.share-btn[data-network="link"]:hover {
    background: #666;
}

/* Tooltip for copy link */
.share-btn[data-network="link"]::after {
    content: 'Copiado!';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-btn[data-network="link"].copied::after {
    opacity: 1;
}

/* Related News Section */
.noticia-related-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.noticia-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.noticia-related-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 0;
}

/* Related Cards */
.related-card-link {
    text-decoration: none;
    color: inherit;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.tag-nuevos {
    background: #B1C17B;
    color: white;
}

.tag-historias {
    background: #F5A623;
    color: white;
}

.tag-cuidado {
    background: #4A90E2;
    color: white;
}

.related-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-card-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: #B1C17B;
}

.related-card-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .noticia-hero-title {
        font-size: 4rem;
    }
    
    .noticia-hero-product {
        right: 5%;
    }
    
    .noticia-hero-bottle {
        max-height: 400px;
    }
}

@media (max-width: 991px) {
    .noticia-hero-title {
        font-size: 3.5rem;
    }
    
    .noticia-title {
        font-size: 2rem;
    }
    
    .noticia-hero-product {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
    }
    
    .noticia-hero {
        flex-direction: column;
        padding: 100px 20px 50px;
        height: auto;
        min-height: 600px;
    }
    
    .noticia-hero-bottle {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .noticia-hero {
        padding-top: 100px;
        min-height: 500px;
    }
    
    .noticia-hero-title {
        font-size: 2.5rem;
    }
    
    .noticia-hero-bottle {
        max-height: 300px;
    }
    
    .noticia-content-section {
        padding: 60px 0;
    }
    
    .noticia-title {
        font-size: 1.8rem;
    }
    
    .noticia-text {
        font-size: 1rem;
    }
    
    .noticia-subtitle {
        font-size: 1.3rem;
    }
    
    .noticia-full-image {
        margin: 40px -15px;
    }
    
    .noticia-related-title {
        font-size: 1.6rem;
    }
    
    .noticia-highlight {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .noticia-hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .noticia-hero-bottle {
        max-height: 250px;
    }
    
    .noticia-title {
        font-size: 1.5rem;
    }
    
    .noticia-subtitle {
        font-size: 1.2rem;
    }
    
    .noticia-text,
    .noticia-list li {
        font-size: 0.95rem;
    }
    
    .noticia-share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .related-card-title {
        font-size: 1.1rem;
    }
    
    .related-card-description {
        font-size: 0.85rem;
    }
}

/*noticias*/
/* ================================
   NOTICIA DETALLE PAGE STYLES
   ================================ */

/* Hero Banner Section */
.noticia-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background: url('../images/banner-noticia.png') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

.noticia-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000 !important;
    opacity: 0.1;
    z-index: 1;
}

.noticia-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.noticia-hero-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.noticia-hero-product {
    position: absolute;
    right: 10%;
    bottom: -50px;
    z-index: 3;
    animation: floatBottle 4s ease-in-out infinite;
}

.noticia-hero-bottle {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.noticias-experiences-section {
    padding: 100px 0;
    background: #EBEBEB;
    text-align: center;
}

.experiencia-seccion {
    padding: 100px 0;
    background: #EBEBEB;
    text-align: center;
}

@keyframes floatBottle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Article Content Section */
.noticia-content-section {
    padding: 80px 0;
    background: white;
}

.noticia-header {
    margin-bottom: 40px;
}

.noticia-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.noticia-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 0;
}

/* Article Body */
.noticia-body {
    font-family: 'GeneralSans', sans-serif;
}

.noticia-text {
    font-weight: 400;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.noticia-subtitle {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    margin-top: 40px;
}

/* Highlighted Section */
.noticia-highlight {
    background: #f8f8f8;
    border-left: 4px solid #B1C17B;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}

.noticia-highlight .noticia-subtitle {
    margin-top: 0;
    color: #B1C17B;
}

.noticia-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.noticia-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.noticia-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #B1C17B;
    font-weight: bold;
    font-size: 1.2rem;
}

.noticia-list li strong {
    color: var(--dark-text);
}

/* Full Width Image */
.noticia-full-image {
    margin: 60px -15px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.noticia-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.noticia-image-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px 30px;
    font-family: 'GeneralSans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.noticia-image-caption strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Continuation Section */
.noticia-continuation {
    margin-top: 40px;
}

/* Share Section */
.noticia-share-section {
    margin-top: 60px;
    padding-top: 40px;
}

.noticia-separator {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 30px;
}

.noticia-share-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 0;
    text-align: left;
}

.noticia-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.share-btn {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: #B1C17B;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none !important;
}

.share-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    color: white;
    text-decoration: none !important;
}

/* Tooltip for copy link */
.share-btn[data-network="link"]::after {
    content: 'Copiado!';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-btn[data-network="link"].copied::after {
    opacity: 1;
}

/* Related News Section */
.noticia-related-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.noticia-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.noticia-related-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 0;
}

/* Related Cards */
.related-card-link {
    text-decoration: none;
    color: inherit;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.tag-nuevos {
    background: #B1C17B;
    color: white;
}

.tag-historias {
    background: #F5A623;
    color: white;
}

.tag-cuidado {
    background: #4A90E2;
    color: white;
}

.related-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-card-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: #B1C17B;
}

.related-card-description {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .noticia-hero-title {
        font-size: 4rem;
    }
    
    .noticia-hero-product {
        right: 5%;
    }
    
    .noticia-hero-bottle {
        max-height: 400px;
    }
}

@media (max-width: 991px) {
    .noticia-hero-title {
        font-size: 3.5rem;
    }
    
    .noticia-title {
        font-size: 2rem;
    }
    
    .noticia-hero-product {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
    }
    
    .noticia-hero {
        flex-direction: column;
        padding: 100px 20px 50px;
        height: auto;
        min-height: 600px;
    }
    
    .noticia-hero-bottle {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .noticia-hero {
        padding-top: 100px;
        min-height: 500px;
    }
    
    .noticia-hero-title {
        font-size: 2.5rem;
    }
    
    .noticia-hero-bottle {
        max-height: 300px;
    }
    
    .noticia-content-section {
        padding: 60px 0;
    }
    
    .noticia-title {
        font-size: 1.8rem;
    }
    
    .noticia-text {
        font-size: 1rem;
    }
    
    .noticia-subtitle {
        font-size: 1.3rem;
    }
    
    .noticia-full-image {
        margin: 40px -15px;
    }
    
    .noticia-related-title {
        font-size: 1.6rem;
    }
    
    .noticia-highlight {
        padding: 20px;
    }
    
    /* Share section mobile adjustments */
    .noticia-share-section .row {
        text-align: center;
    }
    
    .noticia-share-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .noticia-share-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .noticia-hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .noticia-hero-bottle {
        max-height: 250px;
    }
    
    .noticia-title {
        font-size: 1.5rem;
    }
    
    .noticia-subtitle {
        font-size: 1.2rem;
    }
    
    .noticia-text,
    .noticia-list li {
        font-size: 0.95rem;
    }
    
    .noticia-share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .related-card-title {
        font-size: 1.1rem;
    }
    
    .related-card-description {
        font-size: 0.85rem;
    }
}


/* ================================
   RECETA AURORA - SPECIFIC STYLES
   ================================ */

/* Hero con background image dinámico */
.receta-hero-aurora {
    background-image: url('../images/receta-aurora-1.png');
}

/* Estilos para la sección de dificultad en recetas */
.receta-difficulty-label {
    font-weight: 600;
    margin-right: 10px;
}

.receta-difficulty .rating-stars {
    display: inline-block;
}

/* Subtítulos de preparación en recetas */
.receta-preparacion-subtitle {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ================================
   MODAL VERIFICACIÓN DE EDAD
   ================================ */

.age-verification-modal {
    background: #97AC50 !important;
    /* position: relative; */
}

.age-verification-modal .modal-dialog {
    max-width: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.age-verification-filigrana-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background-image: url('../images/filigrana-left-age.webp');
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
    opacity: 0.8;
    pointer-events: none;
}

.age-verification-filigrana-right {
    position: fixed;
    top: 0px;
    right: 3px;
    width: 300px;
    height: 100vh;
    background-image: url('../images/filigrana-right-age.webp');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
    opacity: 0.8;
    pointer-events: none;
}

.age-verification-content {
    background: #f0f0f0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.age-verification-inner {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    text-align: center;
    color: #2C2C2C;
}

.age-verification-logo {
    width: 120px;
    height: auto;
    margin-bottom: 40px;
    filter: none;
}

.age-verification-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-age-yes {
    background: #97AC50;
    color: white;
    border: 3px solid #97AC50;
    border-radius: 15px;
    padding: 15px 40px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-age-yes:hover {
    background: #2C2C2C;
    color: white;
    border-color: #2C2C2C;
}

.btn-age-no {
    background: transparent;
    color: #2C2C2C;
    border: 3px solid #2C2C2C;
    border-radius: 15px;
    padding: 15px 40px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-age-no:hover {
    background: #2C2C2C;
    color: white;
    border-color: #2C2C2C;
}

.age-verification-remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.age-verification-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #97AC50;
}

.age-verification-remember-text {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #2C2C2C;
    margin: 0;
    cursor: pointer;
}

.age-verification-legal {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #2C2C2C;
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .age-verification-inner {
        padding: 40px 30px;
    }

    .age-verification-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .age-verification-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-age-yes,
    .btn-age-no {
        width: 100%;
        max-width: 200px;
        padding: 12px 30px;
        font-size: 1.3rem;
    }

    .age-verification-filigrana-left,
    .age-verification-filigrana-right {
        width: 200px;
        opacity: 0.6;
    }

    .age-verification-logo {
        width: 100px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .age-verification-inner {
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 1.3rem;
    }

    .age-verification-remember-text {
        font-size: 0.9rem;
    }

    .age-verification-legal {
        font-size: 0.8rem;
    }
}

/* ================================
   BÚSQUEDA — RESULTADOS
   ================================ */

.enalia-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.enalia-header-search-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 470px;
    margin: 0;
}

.search-results-page {
    background: #fafaf8;
}

.search-results-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 180px 0 80px;
    background: url('../images/banner-experiencias.jpg') center/cover no-repeat;
}

.search-results-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.search-results-hero-inner {
    z-index: 2;
}

.search-results-hero-content {
    position: relative;
    z-index: 2;
}

.search-results-hero-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.search-results-hero-query {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 36rem;
    margin: 0 auto;
}

.search-results-section {
    padding: 80px 0 120px;
}

.search-results-header {
    margin-bottom: 48px;
}

.search-results-line {
    width: 60px;
    height: 4px;
    background: #B1C17B;
    margin-bottom: 24px;
    animation: growLine 1s ease-out 0.3s both;
}

.search-results-intro,
.search-results-count {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.6;
    max-width: 42rem;
    margin: 0;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-result-item {
    list-style: none;
}

.search-result-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(44, 95, 65, 0.08);
    border-left: 4px solid #B1C17B;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.search-result-card:hover {
    box-shadow: 0 12px 40px rgba(44, 95, 65, 0.12);
    transform: translateY(-2px);
}

.search-result-type {
    display: inline-block;
    font-family: 'GeneralSans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8FA05E;
    margin-bottom: 10px;
}

.search-result-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--dark-green);
    margin: 0 0 12px;
    line-height: 1.3;
}

.search-result-title a {
    color: inherit;
    text-decoration: none;
}

.search-result-title a:hover {
    color: #8FA05E;
}

.search-result-excerpt {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.65;
    margin-bottom: 16px;
}

.search-result-excerpt p {
    margin: 0;
}

.search-result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-green);
}

.search-result-link:hover {
    color: #8FA05E;
}

.search-result-link i {
    font-size: 0.85rem;
}

.search-results-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.search-results-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-results-pagination .page-numbers,
.search-results-pagination a.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-green);
    background: #fff;
    border: 1px solid rgba(44, 95, 65, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-results-pagination a.page-numbers:hover,
.search-results-pagination .page-numbers.current {
    background: #B1C17B;
    border-color: #B1C17B;
    color: #fff;
}

.search-results-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    min-width: auto;
}

.search-results-empty-form {
    max-width: 32rem;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44, 95, 65, 0.08);
}

.search-results-empty-title {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-green);
    margin: 0 0 20px;
}

.search-results-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.search-results-inline-input {
    flex: 1 1 200px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(44, 44, 44, 0.2);
    border-radius: 24px;
    font-family: 'GeneralSans', sans-serif;
    font-size: 1rem;
    outline: none;
}

.search-results-inline-input:focus {
    border-color: #B1C17B;
    box-shadow: 0 0 0 3px rgba(177, 193, 123, 0.25);
}

.search-results-inline-submit {
    min-height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 24px;
    background: #B1C17B;
    color: #fff;
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-results-inline-submit:hover {
    background: #8FA05E;
}

.search-results-back-home {
    font-family: 'GeneralSans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.search-results-back-home:hover {
    color: #8FA05E;
}

@media (max-width: 991px) {
    .search-results-hero {
        padding: 160px 0 60px;
        min-height: 38vh;
    }

    .search-result-card {
        padding: 22px 20px;
    }
}
