/* ================================
   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: 'NotoSans', 'GeneralSans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

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

/* ================================
   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;
}

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

.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);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    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);
}

.mobile-nav.show {
    max-height: 450px;
    opacity: 1;
    padding: 25px 20px;
    transform: translateY(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.2s; }
.mobile-nav.show .nav-link-enalia:nth-child(2) { transition-delay: 0.3s; }
.mobile-nav.show .nav-link-enalia:nth-child(3) { transition-delay: 0.4s; }
.mobile-nav.show .nav-link-enalia:nth-child(4) { transition-delay: 0.5s; }
.mobile-nav.show .nav-link-enalia:nth-child(5) { transition-delay: 0.6s; }
.mobile-nav.show .nav-link-enalia:nth-child(6) { transition-delay: 0.7s; }
.mobile-nav.show .nav-link-enalia:nth-child(7) { transition-delay: 0.8s; }

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

/* Hero Home */
.hero-section {
    height: 100vh;
    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;
}

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

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

.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: url('../images/background-compromiso.png') left/120% 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: url('../images/background-verde.png') center/cover 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;
}

.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: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: #B1C17B;
    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-botellas.webp') 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: 60px 0 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-section {
        background: url('../images/background-home.png') center/cover no-repeat;
    }

    .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;
    }
    
    .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;
    }
    
    .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;
    }
}