/* ============================================
   RESET Y VARIABLES - Basado en diseño Figma
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores según Figma */
    --color-primary: #2A3D5E;
    --color-secondary: #7E962A;
    --color-accent: #8b6f47;
    --color-light-bg: #F2F3E4;
    --color-white: #FFFFFF;
    --color-dark-text: #333333;
    --color-light-text: #666666;
    --color-brown: #a86410;
    --color-line: #4f6b91;
    
    /* Tipografía */
    --font-family: 'Assistant', sans-serif;
    
    /* Espaciados */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Container - Ancho máximo según diseño */
    --container-max-width: 1200px;
    --design-width: 1440px;
}

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

p {
    line-height: 26px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   ANIMACIONES - Scroll y transiciones
   ============================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elementos que se animan al entrar en viewport */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

/* Header: aparición suave al cargar */
.header .nav-wrapper {
    animation: slideDown 0.5s ease-out;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background-color: var(--color-light-bg);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark-text);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
    z-index: 2;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-top {
    position: relative;
    z-index: 2;
    height: 65%;
    display: flex;
    align-items: flex-start;
    padding-top: var(--spacing-sm);
}

.hero-content {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero-title {
    font-size: 76px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 80px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.hero-bottom {
    position: relative;
    z-index: 10;
    height: 35%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    overflow: visible;
    margin-bottom: 0;
    isolation: isolate;
}

.hero-bottom .container {
    overflow: visible;
    width: 100%;
}

.hero-cta-box {
    background-color: transparent;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-md) 0;
    padding-right: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-md);
    clip-path: polygon(0 50px, 15px 25px, 40px 8px, 70px 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-content {
    flex: 1;
    color: var(--color-white);
    padding-right: var(--spacing-sm);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    padding-top: 4px;
}

.cta-text {
    font-size: 24px;
    line-height: 1.4;
    opacity: 0.95;
}

.cta-image {
    position: absolute;
    top: 65%;
    right: max(calc((100% - var(--container-max-width)) / 2), var(--spacing-md));
    transform: translateY(-50%);
    z-index: 20;
    width: 360px;
    height: 360px;
    animation: fadeInScale 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.cta-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   SECTION: CULTIVANDO EL FUTURO
   ============================================ */
.future-section {
    background-color: var(--color-light-bg);
    position: relative;
    padding-top: 0;
    padding-bottom: 100px;
    margin-top: 0;
    z-index: 1;
    clear: both;
    isolation: isolate;
}

.future-layer {
    position: relative;
    min-height: 100%;
    overflow: visible;
    margin-top: 0;
    z-index: 1;
}


.future-layer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    border-bottom-left-radius: 200px;
    z-index: -1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.future-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: var(--spacing-lg);
    min-height: 500px;
}

.future-image-wrapper {
    flex: 2;
}

.future-map {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.future-text-wrapper {
    flex: 3;
}

.future-title {
    color: #2A3D5E;
    text-align: right;
    font-family: 'Assistant', sans-serif;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: var(--spacing-md);
}

.future-description {
    color: #2A3D5E;
    text-align: right;
    font-family: 'Assistant', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: var(--spacing-md);
}

.future-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-bottom 0.4s ease-out;
    margin-bottom: 0;
}

.future-expanded-content.expanded {
    max-height: 1000px;
    margin-bottom: var(--spacing-md);
}

.btn-ver-mas {
    background-color: var(--color-primary);
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: var(--spacing-sm);
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.btn-ver-mas:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ============================================
   FLOATING IMAGE
   ============================================ */
.floating-image {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
    width: 100%;
    margin-top: 850px;
    padding: 0 var(--spacing-md);
    pointer-events: none;
}

.floating-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   SECTION: POR QUÉ PISTACHOS
   ============================================ */
.why-pistachios-section {
    background-color: var(--color-light-bg);
    position: relative;
    padding-bottom: 100px;
    overflow: visible;
}

.why-header {
    max-width: var(--container-max-width);
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md) 0 var(--spacing-md);
    text-align: left;
}

.why-title {
    font-size: 76px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.why-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
}

.why-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-bottom: 100px;
    padding: 0 var(--spacing-md);
}

.why-column {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
}

.why-column-text {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.6;
}

/* ============================================
   SECTION: ¿QUIENES SOMOS?
   ============================================ */
.about-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.about-title {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max-width);
    margin: 0 auto 40px;
    padding: 0 var(--spacing-md);
}

.about-column-left,
.about-column-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 18px;
    color: var(--color-dark-text);
    line-height: 26px;
    margin: 0;
}

.about-text-bold {
    font-weight: 700;
}

.about-signature {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--spacing-sm);
    padding: 0;
}

.signature-name {
    background-color: #6b7d47;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 0 30px 0 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signature-name:hover {
    background-color: #5a6a3a;
}

/* ============================================
   SECTION: ESCENARIOS GLOBALES
   ============================================ */
.global-scenarios-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.scenarios-header {
    text-align: right;
    margin-bottom: 20px;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.scenarios-title {
    font-size: 76px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.scenarios-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0;
}

.scenarios-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: 20px auto 0;
    padding: 0 var(--spacing-md);
}

.scenarios-image-wrapper {
    flex: 1;
    max-width: 50%;
}

.scenarios-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scenarios-text-wrapper {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.scenarios-text {
    font-size: 20px;
    color: var(--color-dark-text);
    line-height: 28px;
    margin-bottom: 16px;
    text-align: right;
}

.scenarios-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-bottom 0.4s ease-out;
    margin-bottom: 0;
}

.scenarios-expanded-content.expanded {
    max-height: 1000px;
    margin-bottom: var(--spacing-md);
}

.scenarios-footer {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.scenarios-footer-text {
    color: #A05618;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
}

/* ============================================
   SECTION: PROYECTO LA MEMITA
   ============================================ */
.memita-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.memita-top {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.memita-image-wrapper {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-self: flex-start;
}

.memita-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.memita-content-wrapper {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.memita-title-wrapper {
    margin-bottom: 8px;
}

.memita-title {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 0;
}

.memita-subtitle {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 0;
    margin-top: 0;
}

.memita-highlight {
    color: #9A571E;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 8px;
}

.memita-slogan {
    color: #9A571E;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 12px;
}

.memita-description {
    color: #000;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 12px;
}

.memita-description strong {
    font-weight: 700;
}

.memita-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-bottom 0.4s ease-out;
    margin-bottom: 0;
}

.memita-expanded-content.expanded {
    max-height: 1000px;
    margin-bottom: var(--spacing-md);
}

.memita-bottom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.memita-structure-title {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    margin-bottom: 8px;
}

.memita-structure-subtitle {
    color: #7E962A;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: var(--spacing-lg);
}

.memita-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.memita-box {
    background-color: var(--color-light-bg);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.memita-box-label {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: var(--spacing-sm);
}

.memita-box-value {
    color: #7E962A;
    text-align: center;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
}

/* ============================================
   SECTION: EL DESARROLLO INCLUYE
   ============================================ */
.incluye {
    --brown: #a86410;
    --line: #4f6b91;
    --text: #1e1e1e;
    max-width: 980px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: var(--font-family);
    color: var(--text);
    position: relative;
}

.incluye-badge {
    display: inline-block;
    background: var(--brown);
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    padding: 10px 22px;
    border-radius: 20px 0 20px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    letter-spacing: .2px;
}

.incluye-rail {
    position: relative;
    margin-top: 8px;
    padding-top: 26px;
}

.incluye-rail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 26px;
    background: var(--line);
}

.incluye-rail::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 11.5%;
    right: 11.5%;
    height: 2px;
    background: var(--line);
}

.incluye-grid {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.incluye-item {
    position: relative;
    color: #000;
    text-align: center;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.incluye-item::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: var(--line);
}

.incluye-item strong {
    display: inline;
    font-weight: 700;
}

/* ============================================
   SECTION: 100% ADMINISTRADO
   ============================================ */
.administrado-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.administrado-title {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.administrado-text {
    color: #9A571E;
    text-align: center;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   SECTION: MODELO DE INVERSIÓN
   ============================================ */
.inversion-section {
    background-color: var(--color-light-bg);
}

.inversion-top {
    background-color: var(--color-light-bg);
    padding: 80px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.inversion-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.inversion-text-content {
    flex: 1;
    max-width: 55%;
}

.inversion-title-wrapper {
    margin-bottom: 12px;
}

.inversion-title-main {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 76px;
    font-style: normal;
    font-weight: 800;
    line-height: 76px;
    margin-bottom: 0;
}

.inversion-title-sub {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 66px;
    margin-top: 0;
    margin-bottom: 0;
}

.inversion-subtitle {
    color: #7E962A;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
}

.inversion-description {
    color: #000;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}

.inversion-description strong {
    font-weight: 800;
}

.inversion-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-bottom 0.4s ease-out;
    margin-bottom: 0;
}

.inversion-expanded-content.expanded {
    max-height: 1000px;
    margin-bottom: 20px;
}

.inversion-image-top-wrapper {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.inversion-image-top {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
}

.btn-mas-info {
    background-color: #2A3D5E;
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.btn-mas-info:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.inversion-bottom {
    background-color: #A05618;
    padding: 40px 0;
    position: relative;
    min-height: 120px;
    border-radius: 60px 0 0 0;
    overflow: visible;
    z-index: 2;
}

.inversion-bottom-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
}

.inversion-bottom-text {
    flex: 1;
    max-width: 60%;
    z-index: 2;
}

.inversion-bottom-description {
    color: #FFF;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.inversion-bottom-description strong {
    font-weight: 800;
}

.inversion-image-bottom-wrapper {
    position: absolute;
    right: var(--spacing-md);
    top: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.inversion-image-bottom {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   SECTION: ¿POR QUÉ AGRO FIDES?
   ============================================ */
.why-agrofides-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.why-agrofides-title {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 76px;
    font-style: normal;
    font-weight: 800;
    line-height: 76px;
    margin-bottom: var(--spacing-sm);
}

.why-agrofides-subtitle {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: var(--spacing-md);
}

.why-agrofides-intro {
    color: #7E962A;
    text-align: center;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.pilares-diagram {
    max-width: 900px;
    margin: 0 auto 12px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.pilares-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.pilares-center {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pilares-center-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pilares-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    flex: 1;
    text-align: center;
}

.pilares-transparencia,
.pilares-escalabilidad {
    align-items: center;
    text-align: center;
}

.pilares-sustentabilidad {
    align-items: center;
    text-align: center;
    max-width: 100%;
}

.pilares-item-text {
    color: #000;
    text-align: center;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.pilares-button {
    background-color: var(--color-secondary);
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    border: none;
    padding: 10px 20px;
    border-radius: 20px 0 20px 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: var(--spacing-xs);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pilares-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.pilares-sustentabilidad .pilares-button {
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.why-agrofides-conclusion {
    color: #A05618;
    text-align: center;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   SECTION: PROYECCIONES
   ============================================ */
.proyecciones-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.proyecciones-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.proyecciones-left {
    flex: 3;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: flex-start;
    text-align: left;
}

.proyecciones-title {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 76px;
    font-style: normal;
    font-weight: 800;
    line-height: 76px;
    margin: 0 0 8px 0;
    text-align: left;
}

.proyecciones-subtitle {
    color: #7E962A;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin: 0 0 12px 0;
    text-align: left;
}

.proyecciones-description {
    color: #000;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
    text-align: left;
}

.proyecciones-image-bottom-left {
    display: flex;
    align-items: flex-start;
    margin-top: var(--spacing-sm);
}

.proyecciones-img-bottom {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.proyecciones-right {
    flex: 2;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-end;
}

.proyecciones-image-top-right {
    display: flex;
    justify-content: center;
    align-self: center;
    width: 100%;
}

.proyecciones-img-top {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.proyecciones-chart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proyecciones-chart-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.proyecciones-box {
    background-color: var(--color-secondary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 30px 0 30px 0;
    width: 100%;
    align-self: flex-end;
}

.proyecciones-box-text {
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
}

.proyecciones-box-text strong {
    font-weight: 700;
}

/* ============================================
   SECTION: DATOS CLAVES
   ============================================ */
.datos-claves-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.datos-claves-banner-top {
    background-color: #2A3D5E;
    padding: 24px 40px;
    border-radius: 40px 0 40px 0;
    max-width: var(--container-max-width);
    margin: 0 auto 40px;
    text-align: center;
}

.datos-claves-title {
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 76px;
    margin: 0;
}

.datos-claves-content {
    background-image: url('../public/images/Vector (3).png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    padding: 40px 40px 40px 40px;
    max-width: var(--container-max-width);
    margin: 0 auto 40px;
    position: relative;
    min-height: 300px;
}

.datos-claves-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.datos-claves-panel {
    background-color: #FFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.datos-claves-text {
    color: #000;
    text-align: center;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin: 0;
}

.datos-claves-text strong {
    font-weight: 700;
}

.datos-claves-banner-bottom {
    background-color: #2A3D5E;
    padding: 24px 40px;
    border-radius: 40px 0 40px 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.datos-claves-conclusion {
    color: #FFF;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
    text-align: center;
}

/* ============================================
   SECTION: RIESGOS
   ============================================ */
.riesgos-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.riesgos-title {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    padding-bottom: 10px;
    font-weight: 600;
    line-height: 69px;
    margin-bottom: var(--spacing-xs);
}

.riesgos-title-continuation {
    font-size: 64px;
    font-weight: 600;
}

.riesgos-subtitle {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: var(--spacing-lg);
}

.riesgos-subtitle-continuation {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
}

.riesgos-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.riesgos-left {
    flex: 3;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.riesgos-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.riesgos-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

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

.riesgos-point-content {
    flex: 1;
}

.riesgos-point-text {
    color: #000;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin: 0 0 4px 0;
}

.riesgos-point-text strong {
    font-weight: 700;
}

.riesgos-resultado {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.riesgos-resultado-label {
    color: #FFF;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    background-color: #7E962A;
    padding: 2px 16px;
    border-radius: 20px 0 20px 0;
    display: inline-block;
}

.riesgos-resultado-text {
    color: #7E962A;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    display: inline-block;
}

.riesgos-right {
    flex: 2;
    max-width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: stretch;
}

.riesgos-image {
    max-width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
}

.riesgos-conclusion {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.riesgos-conclusion-text {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1.3;
    margin: 0;
}

.riesgos-conclusion-text strong {
    font-weight: 700;
}

/* ============================================
   SECTION: EL EQUIPO
   ============================================ */
.equipo-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.equipo-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.equipo-top {
    display: flex;
    gap: 0;
    max-width: var(--container-max-width);
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md);
    align-items: stretch;
}

.equipo-left {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipo-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.equipo-value {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: right;
    width: 100%;
}

.equipo-divider-vertical {
    width: 3px;
    background-color: #2A3D5E;
    height: 400px;
    align-self: center;
    flex-shrink: 0;
    margin: 0 var(--spacing-xl);
    opacity: 1;
}

.equipo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: var(--spacing-xl);
    align-items: flex-end;
    text-align: right;
}

.equipo-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    align-items: flex-end;
    text-align: right;
}

.equipo-label {
    color: #2A3D5E;
    text-align: right;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 69px;
    margin-bottom: 0;
}

.equipo-logo-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: 4px;
    margin-left: 0;
    justify-content: flex-end;
}

.equipo-logo {
    width: auto;
    height: 100px;
    object-fit: contain;
}

.equipo-logo-text {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

.equipo-subtitle {
    color: #2A3D5E;
    text-align: right;
    font-family: Assistant;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 12px 0;
}

.equipo-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.equipo-text {
    color: #000;
    text-align: right;
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.equipo-text strong {
    font-weight: 700;
    color: #000;
}

.equipo-divider-horizontal {
    width: 80%;
    max-width: var(--container-max-width);
    margin: 20px auto;
    height: 2px;
    background-color: #2A3D5E;
    opacity: 1;
}

.equipo-cta-top {
    max-width: var(--container-max-width);
    padding: 0 var(--spacing-md);
    text-align: center;
}

.equipo-cta-text {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
}

.equipo-cta-bottom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.equipo-cta-bottom-text {
    color: #2A3D5E;
    text-align: center;
    font-family: Assistant;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
}

.equipo-cta-bottom-text strong {
    font-weight: 700;
}

/* ============================================
   SECTION: CONTACTO
   ============================================ */
.contacto-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.contacto-content {
    display: flex;
    gap: 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    align-items: flex-start;
}

.contacto-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contacto-title {
    color: #2A3D5E;
    font-family: Assistant;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
    text-align: left;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contacto-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contacto-text {
    color: #000;
    font-family: Assistant;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.contacto-image-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

.contacto-image {
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.contacto-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.contacto-logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0;
    align-self: flex-end;
}

.contacto-logo-small {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

.contacto-form {
    background-color: #F5F5DC;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto-form-field {
    position: relative;
}

.contacto-input,
.contacto-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    padding: var(--spacing-xs) 0;
    font-size: 16px;
    font-family: Assistant;
    color: var(--color-dark-text);
    outline: none;
    line-height: 28px;
}

.contacto-input::placeholder,
.contacto-textarea::placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-family: Assistant;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.contacto-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.contacto-submit-btn {
    background-color: #7E962A;
    color: #FFF;
    text-align: center;
    font-family: Assistant;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    border: none;
    padding: 12px 32px;
    border-radius: 20px 0 20px 0;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contacto-submit-btn:hover {
    background-color: #6b7d23;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-primary);
    padding: 60px 0 24px 0;
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-info {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-text {
    color: var(--color-white);
    font-family: Assistant;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: Assistant;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    text-align: center;
}

.footer-copyright {
    color: var(--color-white);
    font-family: Assistant;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   MODAL: JUAN PONELLI
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background-color: var(--color-white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

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

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: 0;
}

.modal-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.modal-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-text {
    font-size: 20px;
    color: var(--color-primary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 900px) {
    /* Incluye: Transición a 2 columnas antes del breakpoint de tablet */
    .incluye-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .incluye-rail::after {
        left: 12%;
        right: 12%;
    }
    
    .pilares-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .pilares-transparencia,
    .pilares-escalabilidad {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .pilares-center {
        width: 200px;
        height: 200px;
    }
    
    .pilares-sustentabilidad {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-cta-box {
        flex-direction: column;
        text-align: left;
        padding: var(--spacing-md);
        padding-right: var(--spacing-md);
        clip-path: polygon(0 40px, 15px 20px, 35px 8px, 50px 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .cta-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: var(--spacing-md) auto 0;
        width: 180px;
        height: 180px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }

    .future-content {
        flex-direction: column;
    }

    .future-image-wrapper,
    .future-text-wrapper {
        max-width: 100%;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .scenarios-content {
        flex-direction: column;
    }

    .scenarios-image-wrapper,
    .scenarios-text-wrapper {
        max-width: 100%;
    }

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

    .scenarios-subtitle {
        font-size: 2rem;
    }

    .memita-top {
        flex-direction: column;
    }

    .memita-image-wrapper,
    .memita-content-wrapper {
        max-width: 100%;
    }

    .memita-boxes {
        grid-template-columns: 1fr;
    }

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

    .memita-structure-title {
        font-size: 2rem;
    }

    .inversion-content-wrapper {
        flex-direction: column;
    }

    .inversion-text-content {
        max-width: 100%;
    }

    .inversion-image-top-wrapper {
        max-width: 100%;
        justify-content: center;
    }

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

    .inversion-subtitle {
        font-size: 1.8rem;
    }

    .inversion-bottom-content {
        flex-direction: column;
    }

    .inversion-bottom-text {
        max-width: 100%;
    }

    .inversion-image-bottom-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    .why-agrofides-title {
        font-size: 2rem;
    }

    .why-agrofides-subtitle {
        font-size: 1.2rem;
    }

    .why-agrofides-intro,
    .why-agrofides-conclusion {
        font-size: 1rem;
    }

    .proyecciones-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .proyecciones-left,
    .proyecciones-right {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .proyecciones-title {
        font-size: 2rem;
        text-align: center;
    }

    .proyecciones-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }

    .proyecciones-description {
        font-size: 1rem;
        text-align: center;
    }

    .proyecciones-right {
        align-items: center;
    }

    .proyecciones-image-top-right {
        align-self: center;
    }

    .proyecciones-box {
        align-self: center;
    }

    .proyecciones-box-text {
        font-size: 1rem;
        text-align: center;
    }

    .datos-claves-title {
        font-size: 1.8rem;
    }

    .datos-claves-content {
        padding: var(--spacing-md);
        border-radius: 20px;
    }

    .datos-claves-grid {
        grid-template-columns: 1fr;
    }

    .datos-claves-text,
    .datos-claves-conclusion {
        font-size: 1rem;
    }

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

    .riesgos-title-continuation {
        font-size: 1.7rem;
    }

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

    .riesgos-subtitle-continuation {
        font-size: 1.3rem;
    }

    .riesgos-content {
        flex-direction: column;
    }

    .riesgos-left,
    .riesgos-right {
        max-width: 100%;
    }

    .riesgos-point-text,
    .riesgos-resultado-label,
    .riesgos-resultado-text {
        font-size: 1rem;
    }

    .riesgos-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .riesgos-conclusion-text {
        font-size: 1.5rem;
    }

    .equipo-top {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .equipo-left {
        width: 100%;
    }

    .equipo-divider-vertical {
        display: none;
    }

    .equipo-value {
        font-size: 2.5rem;
        text-align: center;
    }

    .equipo-logo-title {
        justify-content: center;
    }

    .equipo-label {
        font-size: 1.8rem;
        text-align: center;
    }

    .equipo-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

    .equipo-text,
    .equipo-cta-text {
        font-size: 1rem;
    }

    .equipo-cta-bottom-text {
        font-size: 1.5rem;
    }

    .contacto-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contacto-left,
    .contacto-right {
        max-width: 100%;
        width: 100%;
    }

    .contacto-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contacto-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .contacto-info {
        align-items: center;
    }

    .contacto-item {
        justify-content: center;
    }

    .contacto-text {
        font-size: 1rem;
    }

    .contacto-image-wrapper {
        justify-content: center;
    }

    .contacto-image {
        max-width: 250px;
    }

    .contacto-right {
        align-items: center;
    }

    .contacto-logo-wrapper {
        align-self: center;
    }

    .contacto-form {
        width: 100%;
        max-width: 100%;
    }

    .contacto-submit-btn {
        align-self: stretch;
    }

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

    .modal-image {
        width: 250px;
        height: 250px;
    }

    .modal-container {
        padding: var(--spacing-md);
    }
}

@media (max-width: 520px) {
    .incluye-grid {
        grid-template-columns: 1fr;
    }
    
    .incluye-item {
        text-align: left;
    }
    
    .incluye-item::before {
        left: 0;
        transform: none;
    }
    
    .incluye-rail::before {
        left: 16px;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MEJORAS ADICIONALES
   ============================================
   
   PROBLEMAS DETECTADOS Y CORREGIDOS:
   
   A) OVERFLOW HORIZONTAL:
      - Imágenes con width fijo (cta-image: 360px, inversion-image-bottom: 400px)
      - Elementos posicionados absolutamente fuera del viewport
      - Container sin max-width en algunos casos
      - Floating elements que se salen
   
   B) COLUMNAS QUE NO SE ADAPTAN:
      - Grids de 3 columnas (why-columns, memita-boxes)
      - Grids de 2 columnas (about-content, datos-claves-grid)
      - Grids de 4 columnas (incluye-grid)
      - Layouts flex de 2 columnas (future-content, scenarios-content, memita-top, etc)
   
   C) TIPOGRAFÍAS DEMASIADO GRANDES:
      - Títulos de 76px, 64px, 48px en mobile
      - Necesitan clamp() o valores escalados
   
   D) ESPACIADOS EXCESIVOS:
      - Padding/margin grandes que ocupan mucho espacio en mobile
      - Gaps de 60px, 80px que comprimen contenido
   
   E) NAVEGACIÓN:
      - Menú horizontal que se comprime demasiado
      - Necesita hamburger menu o layout en 2 líneas
   
   F) HERO SECTION:
      - Elementos posicionados absolutamente (cta-image)
      - Clip-path complejo que puede romperse
      - Altura fija 100vh puede ser problemática
   
   G) IMÁGENES:
      - Tamaños fijos que no escalan
      - Object-fit necesario en algunos casos
      - Floating image que puede causar overflow
   
   H) BOTONES:
      - Pueden ser muy pequeños para touch (min 44px)
      - Texto que se corta
   
   I) ELEMENTOS ESPECIALES:
      - Clip-path que se rompe en mobile
      - Transformaciones que causan overflow
      - Z-index que puede causar problemas de apilamiento
*/

/* ============================================
   BASE FIXES (Sin media query)
   ============================================ */

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

/* Asegurar que todas las imágenes escalen */
img {
    max-width: 100%;
    height: auto;
}

/* Botones con tamaño mínimo táctil */
button,
.btn-ver-mas,
.btn-mas-info,
.contacto-submit-btn,
.pilares-button {
    min-height: 44px;
    min-width: 44px;
}

/* Container responsive base - Solo override si es necesario */
.container {
    width: 100%;
}

/* ============================================
   TABLET: @media (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    /* Ajustes generales de espaciado */
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    /* Header: Menú más compacto */
    .nav {
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem;
    }
    
    /* Hero: Ajustes de tamaño y posición */
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 76px);
        line-height: clamp(1.2, 1.1, 80px);
        max-width: 100%;
    }
    
    .hero-cta-box {
        padding-right: 180px;
    }
    
    .cta-image {
        width: 280px;
        height: 280px;
        right: max(calc((100% - 90%) / 2), var(--spacing-sm));
    }
    
    .cta-title {
        font-size: clamp(2rem, 5vw, 48px);
    }
    
    .cta-text {
        font-size: clamp(1.1rem, 2.5vw, 24px);
    }
    
    /* Future Section: Espaciado reducido */
    .future-content {
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .future-title {
        font-size: clamp(2.5rem, 7vw, 76px);
        line-height: clamp(1.2, 1.1, 80px);
    }
    
    .future-description {
        font-size: clamp(1rem, 2vw, 20px);
        line-height: clamp(1.4, 1.5, 30px);
    }
    
    /* Floating image: Más pequeño */
    .floating-image {
        margin-top: 500px;
    }
    
    .floating-img {
        max-width: 250px;
    }
    
    /* Why Pistachios: 3 columnas a 2 en tablet */
    .why-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .why-title {
        font-size: clamp(2.5rem, 7vw, 76px);
    }
    
    .why-subtitle {
        font-size: clamp(1.3rem, 3vw, 24px);
    }
    
    /* About: Mantener 2 columnas pero con gap reducido */
    .about-content {
        gap: var(--spacing-lg);
    }
    
    .about-title {
        font-size: clamp(2.5rem, 7vw, 76px);
        line-height: clamp(1.2, 1.1, 80px);
    }
    
    /* Scenarios: Layout más compacto */
    .scenarios-content {
        gap: var(--spacing-lg);
    }
    
    .scenarios-title {
        font-size: clamp(2.5rem, 7vw, 76px);
    }
    
    .scenarios-subtitle {
        font-size: clamp(2rem, 5vw, 48px);
    }
    
    .scenarios-text {
        font-size: clamp(1rem, 2vw, 20px);
    }
    
    .scenarios-footer-text {
        font-size: clamp(1.5rem, 3.5vw, 36px);
    }
    
    /* Memita: Gap reducido */
    .memita-top {
        gap: var(--spacing-lg);
    }
    
    .memita-title,
    .memita-subtitle {
        font-size: clamp(2rem, 5vw, 48px);
        line-height: clamp(1.2, 1.4, 80px);
    }
    
    .memita-highlight {
        font-size: clamp(1.8rem, 4vw, 36px);
    }
    
    .memita-slogan {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    .memita-description {
        font-size: clamp(1rem, 2vw, 20px);
    }
    
    .memita-structure-title {
        font-size: clamp(2rem, 5vw, 48px);
        line-height: clamp(1.2, 1.4, 80px);
    }
    
    /* Incluye: Grid de 4 a 2 columnas - Diseño simplificado para tablet */
    .incluye {
        max-width: 100%;
        margin: var(--spacing-lg) auto;
        padding: 0 var(--spacing-md);
    }
    
    .incluye-badge {
        font-size: clamp(2rem, 5vw, 48px);
        padding: 8px 20px;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        left: auto;
        transform: none;
    }
    
    .incluye-rail {
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }
    
    .incluye-rail::before {
        height: 20px;
    }
    
    .incluye-rail::after {
        left: 15%;
        right: 15%;
        top: 20px;
    }
    
    .incluye-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        padding-top: var(--spacing-md);
    }
    
    .incluye-item {
        font-size: clamp(0.95rem, 2vw, 20px);
        line-height: 1.5;
        padding-top: var(--spacing-sm);
    }
    
    .incluye-item::before {
        height: 16px;
        top: -16px;
    }
    
    /* Administrado */
    .administrado-title {
        font-size: clamp(2rem, 5vw, 48px);
        line-height: clamp(1.2, 1.4, 80px);
    }
    
    .administrado-text {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    /* Inversión: Layout más compacto */
    .inversion-content-wrapper {
        gap: var(--spacing-lg);
    }
    
    .inversion-title-main {
        font-size: clamp(2.5rem, 7vw, 76px);
        line-height: clamp(1, 1, 76px);
    }
    
    .inversion-title-sub {
        font-size: clamp(2rem, 6vw, 64px);
        line-height: clamp(1, 1, 66px);
    }
    
    .inversion-subtitle {
        font-size: clamp(2rem, 5vw, 48px);
        line-height: clamp(1, 1, 50px);
    }
    
    .inversion-description {
        font-size: clamp(1rem, 2vw, 20px);
    }
    
    .inversion-bottom-content {
        gap: var(--spacing-lg);
    }
    
    .inversion-image-bottom-wrapper {
        width: 320px;
        height: 320px;
    }
    
    /* Pilares: Layout más compacto */
    .pilares-row {
        gap: var(--spacing-sm);
    }
    
    .pilares-center {
        width: 200px;
        height: 200px;
    }
    
    .pilares-item {
        max-width: 240px;
    }
    
    .pilares-button {
        font-size: clamp(1rem, 2.2vw, 22px);
        padding: 8px 16px;
    }
    
    .pilares-item-text {
        font-size: clamp(0.95rem, 2vw, 20px);
    }
    
    .why-agrofides-title {
        font-size: clamp(2.5rem, 7vw, 76px);
        line-height: clamp(1, 1, 76px);
    }
    
    .why-agrofides-subtitle {
        font-size: clamp(2rem, 5vw, 48px);
        line-height: clamp(1.1, 1.2, 56px);
    }
    
    .why-agrofides-intro {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    .why-agrofides-conclusion {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    /* Proyecciones: Gap reducido */
    .proyecciones-content {
        gap: var(--spacing-lg);
    }
    
    .proyecciones-title {
        font-size: clamp(2.5rem, 7vw, 76px);
        line-height: clamp(1, 1, 76px);
    }
    
    .proyecciones-subtitle {
        font-size: clamp(1.8rem, 4vw, 36px);
    }
    
    .proyecciones-description {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    /* Datos Claves */
    .datos-claves-title {
        font-size: clamp(2rem, 6vw, 64px);
        line-height: clamp(1.1, 1.2, 76px);
    }
    
    .datos-claves-text {
        font-size: clamp(0.95rem, 2vw, 20px);
    }
    
    .datos-claves-conclusion {
        font-size: clamp(1.2rem, 2.5vw, 24px);
    }
    
    /* Riesgos */
    .riesgos-title,
    .riesgos-title-continuation {
        font-size: clamp(2rem, 6vw, 64px);
        line-height: clamp(1.1, 1.2, 69px);
    }
    
    .riesgos-subtitle,
    .riesgos-subtitle-continuation {
        font-size: clamp(1.5rem, 4vw, 36px);
        line-height: clamp(1, 1.1, 38px);
    }
    
    .riesgos-content {
        gap: var(--spacing-lg);
    }
    
    .riesgos-point-text,
    .riesgos-resultado-label,
    .riesgos-resultado-text {
        font-size: clamp(0.95rem, 2vw, 20px);
    }
    
    .riesgos-conclusion-text {
        font-size: clamp(1.5rem, 3.5vw, 32px);
    }
    
    /* Equipo */
    .equipo-top {
        gap: var(--spacing-lg);
    }
    
    .equipo-value {
        font-size: clamp(2.5rem, 6vw, 64px);
    }
    
    .equipo-label {
        font-size: clamp(2rem, 6vw, 64px);
        line-height: clamp(1.1, 1.2, 69px);
    }
    
    .equipo-subtitle {
        font-size: clamp(1.5rem, 4vw, 36px);
    }
    
    .equipo-text {
        font-size: clamp(0.95rem, 2vw, 20px);
    }
    
    .equipo-cta-text,
    .equipo-cta-bottom-text {
        font-size: clamp(1.5rem, 3.5vw, 32px);
    }
    
    /* Contacto */
    .contacto-content {
        gap: var(--spacing-lg);
    }
    
    .contacto-title {
        font-size: clamp(2.5rem, 6vw, 64px);
    }
    
    .contacto-text {
        font-size: clamp(1.1rem, 2.5vw, 24px);
    }
    
    .contacto-image {
        max-width: 300px;
    }
    
    /* Footer: Layout más compacto */
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-nav {
        gap: var(--spacing-sm);
    }
}

/* ============================================
   MOBILE: @media (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Ajustes generales */
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Header: Menú hamburger o 2 líneas */
    .header {
        padding: var(--spacing-xs) 0;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
        width: 100%;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero: Layout vertical completo */
    .hero {
        min-height: auto;
        height: auto;
    }
    
    .hero-top {
        height: auto;
        min-height: 50vh;
        padding-top: var(--spacing-md);
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
        max-width: 100%;
    }
    
    .hero-bottom {
        height: auto;
        min-height: auto;
        padding: var(--spacing-md) 0;
    }
    
    .hero-cta-box {
        padding: var(--spacing-md);
        padding-right: var(--spacing-md);
        clip-path: polygon(0 30px, 12px 15px, 30px 6px, 45px 0, 100% 0, 100% 100%, 0 100%);
        flex-direction: column;
        text-align: left;
    }
    
    .cta-content {
        padding-right: 0;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .cta-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .cta-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 200px;
        height: 200px;
        margin: var(--spacing-md) auto 0;
        z-index: 5;
    }
    
    /* Future Section */
    .future-section {
        padding: var(--spacing-xl) 0;
    }
    
    .future-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
        min-height: auto;
    }
    
    .future-image-wrapper,
    .future-text-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .future-title {
        text-align: left;
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }
    
    .future-description {
        text-align: left;
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: var(--spacing-sm);
    }
    
    .btn-ver-mas {
        align-self: flex-start;
        margin-left: 0;
        font-size: clamp(0.95rem, 4vw, 1rem);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* Floating image: Ocultar o hacer más pequeño */
    .floating-image {
        display: none;
    }
    
    /* Why Pistachios: 3 columnas a 1 */
    .why-columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-xl);
    }
    
    .why-header {
        padding: var(--spacing-md) var(--spacing-md) 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .why-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
    }
    
    .why-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.3rem);
    }
    
    .why-column {
        padding: var(--spacing-md);
    }
    
    /* About */
    .about-section {
        padding: var(--spacing-xl) 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .about-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .about-text {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .about-signature {
        padding: 0 var(--spacing-md);
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    /* Scenarios */
    .global-scenarios-section {
        padding: var(--spacing-xl) 0;
    }
    
    .scenarios-header {
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-md);
        text-align: left;
    }
    
    .scenarios-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
        text-align: left;
    }
    
    .scenarios-subtitle {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.2;
        text-align: left;
    }
    
    .scenarios-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .scenarios-image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .scenarios-text-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: flex-start;
    }
    
    .scenarios-text {
        text-align: left;
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.5;
    }
    
    .scenarios-footer {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .scenarios-footer-text {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        line-height: 1.3;
        text-align: left;
    }
    
    /* Memita */
    .memita-section {
        padding: var(--spacing-xl) 0;
    }
    
    .memita-top {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .memita-image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .memita-content-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .memita-title,
    .memita-subtitle {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .memita-highlight {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .memita-slogan {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    .memita-description {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .memita-bottom {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .memita-structure-title {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .memita-structure-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    .memita-boxes {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .memita-box {
        padding: var(--spacing-md);
    }
    
    .memita-box-label {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    .memita-box-value {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    /* Incluye: Diseño simplificado para mobile - Lista vertical limpia */
    .incluye {
        margin: var(--spacing-lg) auto;
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .incluye-badge {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding: 10px 20px;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
    }
    
    .incluye-rail {
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
    }
    
    /* Ocultar líneas decorativas complejas en mobile - diseño más limpio */
    .incluye-rail::before,
    .incluye-rail::after {
        display: none;
    }
    
    .incluye-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding-top: var(--spacing-md);
        list-style: none;
    }
    
    .incluye-item {
        text-align: left;
        font-size: clamp(0.95rem, 4vw, 1rem);
        line-height: 1.6;
        padding: var(--spacing-md);
        padding-left: calc(var(--spacing-md) + 24px);
        position: relative;
        background-color: var(--color-light-bg);
        border-radius: 8px;
        border-left: 4px solid var(--brown);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .incluye-item:hover {
        transform: translateX(4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Bullet point personalizado en lugar de línea vertical */
    .incluye-item::before {
        content: "✓";
        position: absolute;
        left: var(--spacing-sm);
        top: var(--spacing-md);
        width: 20px;
        height: 20px;
        background-color: var(--brown);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        transform: none;
    }
    
    .incluye-item strong {
        color: var(--brown);
        font-weight: 700;
    }
    
    /* Administrado */
    .administrado-section {
        padding: var(--spacing-xl) 0;
    }
    
    .administrado-title {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .administrado-text {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    /* Inversión */
    .inversion-top {
        padding: var(--spacing-xl) 0;
    }
    
    .inversion-content-wrapper {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .inversion-text-content {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .inversion-title-main {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
    }
    
    .inversion-title-sub {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .inversion-subtitle {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
        line-height: 1.2;
    }
    
    .inversion-description {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.5;
    }
    
    .inversion-image-top-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .inversion-bottom {
        padding: var(--spacing-lg) 0;
        border-radius: 30px 0 0 0;
    }
    
    .inversion-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .inversion-bottom-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .inversion-bottom-description {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.5;
    }
    
    .inversion-image-bottom-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: var(--spacing-md) auto 0;
        z-index: 1;
    }
    
    .inversion-image-bottom {
        width: 100%;
        height: auto;
    }
    
    /* Pilares: Layout vertical */
    .pilares-diagram {
        gap: var(--spacing-md);
    }
    
    .pilares-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .pilares-transparencia,
    .pilares-escalabilidad {
        max-width: 100%;
    }
    
    .pilares-center {
        width: 180px;
        height: 180px;
        order: -1;
    }
    
    .pilares-sustentabilidad {
        max-width: 100%;
        flex-direction: column-reverse;
    }
    
    .pilares-item {
        max-width: 100%;
    }
    
    .pilares-button {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .why-agrofides-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
    }
    
    .why-agrofides-subtitle {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
        line-height: 1.2;
    }
    
    .why-agrofides-intro {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
        padding: 0 var(--spacing-md);
    }
    
    .why-agrofides-conclusion {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
        padding: 0 var(--spacing-md);
    }
    
    /* Proyecciones */
    .proyecciones-section {
        padding: var(--spacing-xl) 0;
    }
    
    .proyecciones-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .proyecciones-left {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .proyecciones-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
        text-align: center;
    }
    
    .proyecciones-subtitle {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
        text-align: center;
    }
    
    .proyecciones-description {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
        text-align: center;
    }
    
    .proyecciones-image-bottom-left {
        display: none;
    }
    
    .proyecciones-right {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .proyecciones-image-top-right {
        width: 100%;
        max-width: 150px;
    }
    
    .proyecciones-chart {
        width: 100%;
    }
    
    .proyecciones-box {
        width: 100%;
        align-self: center;
    }
    
    .proyecciones-box-text {
        font-size: clamp(0.95rem, 4vw, 1rem);
    }
    
    /* Datos Claves */
    .datos-claves-section {
        padding: var(--spacing-xl) 0;
    }
    
    .datos-claves-banner-top {
        padding: var(--spacing-md);
        margin: 0 auto var(--spacing-md);
        border-radius: 20px 0 20px 0;
    }
    
    .datos-claves-title {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .datos-claves-content {
        padding: var(--spacing-md);
        margin: 0 auto var(--spacing-md);
        min-height: auto;
        background-size: cover;
    }
    
    .datos-claves-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .datos-claves-panel {
        padding: var(--spacing-md);
    }
    
    .datos-claves-text {
        font-size: clamp(0.95rem, 4vw, 1rem);
        line-height: 1.4;
    }
    
    .datos-claves-banner-bottom {
        padding: var(--spacing-md);
        border-radius: 20px 0 20px 0;
    }
    
    .datos-claves-conclusion {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    /* Riesgos */
    .riesgos-section {
        padding: var(--spacing-xl) 0;
    }
    
    .riesgos-title,
    .riesgos-title-continuation {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .riesgos-subtitle,
    .riesgos-subtitle-continuation {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        line-height: 1.2;
    }
    
    .riesgos-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .riesgos-left {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .riesgos-point {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-start;
    }
    
    .riesgos-icon-wrapper {
        width: 60px;
        height: 60px;
        align-self: flex-start;
    }
    
    .riesgos-point-content {
        width: 100%;
    }
    
    .riesgos-point-text {
        font-size: clamp(0.95rem, 4vw, 1rem);
        line-height: 1.4;
    }
    
    .riesgos-resultado {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .riesgos-resultado-label,
    .riesgos-resultado-text {
        font-size: clamp(0.95rem, 4vw, 1rem);
    }
    
    .riesgos-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .riesgos-image {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
    }
    
    .riesgos-conclusion {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .riesgos-conclusion-text {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        line-height: 1.3;
    }
    
    /* Equipo */
    .equipo-section {
        padding: var(--spacing-xl) 0;
    }
    
    .equipo-top {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .equipo-left {
        width: 100%;
    }
    
    .equipo-values {
        align-items: center;
    }
    
    .equipo-value {
        font-size: clamp(2rem, 8vw, 2.5rem);
        text-align: center;
    }
    
    .equipo-divider-vertical {
        display: none;
    }
    
    .equipo-right {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    
    .equipo-header {
        align-items: center;
        text-align: center;
    }
    
    .equipo-label {
        font-size: clamp(1.8rem, 8vw, 2rem);
        text-align: center;
    }
    
    .equipo-logo {
        height: 80px;
    }
    
    .equipo-subtitle {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        text-align: center;
    }
    
    .equipo-text {
        text-align: center;
        font-size: clamp(0.95rem, 4vw, 1rem);
    }
    
    .equipo-cta-top {
        padding: 0 var(--spacing-md);
        margin: var(--spacing-md) 0;
    }
    
    .equipo-cta-text {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
    }
    
    .equipo-divider-horizontal {
        width: 90%;
        margin: var(--spacing-md) auto;
    }
    
    .equipo-cta-bottom {
        padding: 0 var(--spacing-md);
    }
    
    .equipo-cta-bottom-text {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
    }
    
    /* Contacto */
    .contacto-section {
        padding: var(--spacing-xl) 0;
    }
    
    .contacto-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
        align-items: center;
        text-align: center;
    }
    
    .contacto-left {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contacto-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        margin-bottom: var(--spacing-md);
        text-align: center;
    }
    
    .contacto-info {
        margin-bottom: var(--spacing-md);
        align-items: center;
    }
    
    .contacto-item {
        justify-content: center;
    }
    
    .contacto-text {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .contacto-image-wrapper {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .contacto-image {
        max-width: 250px;
    }
    
    .contacto-right {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    
    .contacto-logo-wrapper {
        align-self: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .contacto-logo-small {
        width: 150px;
        height: 60px;
    }
    
    .contacto-form {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md);
    }
    
    .contacto-input,
    .contacto-textarea {
        font-size: clamp(0.95rem, 4vw, 1rem);
    }
    
    .contacto-submit-btn {
        align-self: stretch;
        font-size: clamp(1rem, 4vw, 1.1rem);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-info {
        flex: 1 1 100%;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-nav {
        flex: 1 1 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
    
    .footer-link {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    /* Modal */
    .modal-container {
        max-width: 90%;
        padding: var(--spacing-md);
    }
    
    .modal-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .modal-image {
        width: 200px;
        height: 200px;
    }
    
    .modal-text {
        font-size: clamp(0.95rem, 4vw, 1rem);
    }
}

/* ============================================
   SMALL MOBILE: @media (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    /* Ajustes más agresivos para pantallas muy pequeñas */
    :root {
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
        --spacing-md: 0.75rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Header más compacto */
    .logo-img {
        height: 30px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Hero: Más compacto */
    .hero-top {
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 12vw, 2rem);
    }
    
    .hero-cta-box {
        padding: var(--spacing-sm);
        clip-path: polygon(0 20px, 10px 10px, 25px 4px, 35px 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .cta-title {
        font-size: clamp(1.3rem, 8vw, 1.5rem);
    }
    
    .cta-text {
        font-size: clamp(0.9rem, 5vw, 1rem);
    }
    
    .cta-image {
        width: 150px;
        height: 150px;
    }
    
    /* Títulos más pequeños */
    .future-title,
    .why-title,
    .about-title,
    .scenarios-title,
    .memita-title,
    .memita-subtitle,
    .inversion-title-main,
    .why-agrofides-title,
    .proyecciones-title,
    .datos-claves-title,
    .riesgos-title,
    .contacto-title {
        font-size: clamp(1.5rem, 12vw, 2rem);
    }
    
    /* Subtítulos */
    .future-description,
    .scenarios-text,
    .memita-description,
    .inversion-description,
    .proyecciones-description,
    .riesgos-point-text,
    .equipo-text,
    .contacto-text {
        font-size: clamp(0.9rem, 5vw, 1rem);
    }
    
    /* Botones más pequeños pero táctiles */
    .btn-ver-mas,
    .btn-mas-info,
    .contacto-submit-btn {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* Imágenes más pequeñas */
    .contacto-image {
        max-width: 200px;
    }
    
    .inversion-image-bottom-wrapper {
        max-width: 220px;
    }
    
    /* Footer más compacto */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-text,
    .footer-link {
        font-size: clamp(0.85rem, 4vw, 0.9rem);
    }
    
    /* Modal más pequeño */
    .modal-container {
        max-width: 95%;
        padding: var(--spacing-sm);
    }
    
    .modal-image {
        width: 150px;
        height: 150px;
    }
    
    /* Espaciados reducidos en secciones */
    .future-section,
    .why-pistachios-section,
    .about-section,
    .global-scenarios-section,
    .memita-section,
    .administrado-section,
    .inversion-section,
    .why-agrofides-section,
    .proyecciones-section,
    .datos-claves-section,
    .riesgos-section,
    .equipo-section,
    .contacto-section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Grids y layouts más compactos */
    .why-column,
    .memita-box,
    .datos-claves-panel {
        padding: var(--spacing-sm);
    }
    
    /* Incluye: Ajustes para small mobile */
    .incluye {
        margin: var(--spacing-md) auto;
        padding: 0 var(--spacing-sm);
    }
    
    .incluye-badge {
        font-size: clamp(1.3rem, 8vw, 1.5rem);
        padding: 8px 16px;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        left: auto;
        transform: none;
    }
    
    .incluye-item {
        padding: var(--spacing-sm);
        padding-left: calc(var(--spacing-sm) + 20px);
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
    }
    
    .incluye-item::before {
        left: var(--spacing-xs);
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: var(--spacing-sm);
    }
    
    /* Pilares más compactos */
    .pilares-center {
        width: 150px;
        height: 150px;
    }
    
    .pilares-button {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: 6px 12px;
    }
}
