/*
Theme Name: Grupo Esfuerzo
Theme URI: https://xum.digital/
Author: XUM digital
Author URI: https://xum.digital/
Description: Sitio web completo, personalizado para Grupo Esfuerzo.
Version: 3.0
Text Domain: grupo-esfuerzo
*/

:root {
    --green-dark: #1b5733;
    --green-light: #9eb51c;
    --green-yellow: #cbc10d;
    --yellow: #f0cb00;
    --accent-blue: #2f7dff;
    --text: #1f1f1f;
    --text-soft: #4d4d4d;
    --bg: #ffffff;
    --bg-soft: #f8f9f5;
    --border: #dbe3d4;
    --container: 1160px;
    --shadow-soft: 0 10px 30px rgba(27, 87, 51, 0.08);
    --shadow-card: 0 12px 28px rgba(12, 33, 20, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, #f4f8ef 0%, transparent 35%),
        radial-gradient(circle at 90% 8%, #f8fbf9 0%, transparent 28%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

#fincas.section {
    padding: 3.2rem 0;
}

.fincas-cta-mobile {
    display: none;
    text-align: center;
    margin-top: 10px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-white {
    background: #ffffff !important;
}

.section-light {
    background: var(--bg-soft);
}

.section-highlight {
    background: linear-gradient(180deg, #f7f9f4, #eef4e7);
}

.section-cr-mundo {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(203, 193, 13, 0.16) 0%, transparent 36%),
        radial-gradient(circle at 84% 22%, rgba(47, 125, 255, 0.12) 0%, transparent 34%),
        radial-gradient(circle at 72% 84%, rgba(158, 181, 28, 0.16) 0%, transparent 40%),
        radial-gradient(circle at 15% 20%, #f3f8ef 0%, #ffffff 52%, #f4f7f1 100%);
}

.section-cr-mundo::after {
    content: '';
    position: absolute;
    inset: -10% -8%;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(620px 260px at 14% 34%, rgba(27, 87, 51, 0.11), transparent 62%),
        radial-gradient(560px 230px at 84% 64%, rgba(155, 181, 28, 0.13), transparent 64%);
    background-size: auto, auto;
}

.section-cr-mundo::before {
    content: '';
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(240, 203, 0, 0.18);
    filter: blur(10px);
    pointer-events: none;
}

.cr-mundo-inner {
    position: relative;
    z-index: 1;
}

.cr-mundo-head {
    text-align: center;
    margin-inline: auto;
}

.cr-mundo-map {
    position: relative;
    z-index: 1;
    margin: 1.75rem auto 0;
    max-width: 980px;
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    animation: geMapReveal 0.9s ease-out both, geMapFloat 4s ease-in-out 1s infinite;
}

@keyframes geMapReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes geMapFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.section-title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.35rem);
    line-height: 1.2;
    font-weight: 500;
}

.title-emphasis {
    color: var(--green-dark);
    background: linear-gradient(120deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.18));
    border-radius: 0.2rem;
    padding: 0 0.2rem;
    font-weight: 700;
}

.section-head {
    max-width: 760px;
    margin-bottom: 10px;
}

.section-cta-inline {
    margin: 1.2rem 0 0;
}

.fincas-cta {
    text-align: center;
}

.section-head-with-cta {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 85%) auto;
    gap: 0.8rem 1.2rem;
    align-items: start;
}

.section-head-with-cta .eyebrow {
    grid-column: 1 / 2;
    margin-bottom: 0.35rem;
}

.section-head-with-cta .section-title {
    grid-column: 1 / 2;
    margin-bottom: 0.2rem;
}

.section-head-with-cta p {
    grid-column: 1 / 2;
}

.section-head-cta {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    justify-self: end;
    align-self: center;
    margin-top: 10px;
    white-space: nowrap;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.8rem;
    color: var(--green-dark);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.split {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.presencia-video {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.presencia-video-head {
    width: min(760px, 100%);
    text-align: center;
}

.presencia-video-head p {
    margin-inline: auto;
}

.presencia-video-frame {
    width: min(1100px, 100%);
    margin-inline: auto;
    border-radius: 0.9rem;
}

.presencia-video-title {
    color: var(--green-dark);
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.15rem;
    border-radius: 0.45rem;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.button-primary {
    background: var(--green-dark);
    color: #fff;
}

.button-primary:hover {
    background: #174a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.button-secondary {
    border-color: var(--green-dark);
    color: var(--green-dark);
    background: transparent;
}

.button-secondary:hover {
    background: #edf3ee;
    transform: translateY(-2px);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.quick-card:focus-visible,
.main-nav a:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--green-dark), white 35%);
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(8px);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.logo-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--green-dark);
    color: #fff;
    font-size: 0.78rem;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
}

.main-nav a {
    position: relative;
    font-size: 0.92rem;
    color: var(--text);
    padding: 0.2rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.main-nav a:hover {
    color: var(--green-dark);
    transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    gap: 0.3rem;
}

.language-switcher a {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.35rem;
    font-size: 0.8rem;
}

.language-switcher a.active,
.language-switcher a:hover {
    border-color: var(--green-dark);
    background: #f4f8f4;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0.35rem;
    width: 42px;
    height: 38px;
    padding: 0.3rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--green-dark);
}

/* Hero cinematográfico */
.cinema-hero {
    position: relative;
    height: 560vh;
    background: #000;
}

.cinema-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.cinema-frames {
    position: absolute;
    inset: 0;
}

.cinema-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    filter: blur(1.2px);
    transition: none;
    /* Eliminamos transición fija para que GSAP maneje la fluidez */
}

.cinema-frame.is-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

.cinema-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: grid;
    place-items: center;
    padding: 2rem;
}

@media (min-width: 1025px) {
    .site-header {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
    }

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(8px);
        border-bottom-color: var(--border);
    }

    .site-header .main-nav a,
    .site-header .logo,
    .site-header .language-switcher a {
        color: #fff;
    }

    .site-header.scrolled .main-nav a,
    .site-header.scrolled .logo,
    .site-header.scrolled .language-switcher a {
        color: var(--text);
    }

    .site-header .language-switcher a {
        border-color: rgba(255, 255, 255, 0.42);
        background: rgba(0, 0, 0, 0.12);
    }

    .site-header.scrolled .language-switcher a {
        border-color: var(--border);
        background: #fff;
    }

    .site-header .main-nav a::after {
        background: rgba(255, 255, 255, 0.95);
    }

    .site-header.scrolled .main-nav a::after {
        background: var(--yellow);
    }
}

.cinema-text,
.cinema-logo {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    text-align: center;
    color: #fff;
}

.cinema-text.is-visible,
.cinema-logo.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cinema-text {
    margin: 0;
    width: min(92vw, 980px);
    font-size: clamp(1.35rem, 1.05rem + 1.4vw, 2.55rem);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.44), 0 0 2px rgba(0, 0, 0, 0.55);
}

.cinema-word {
    display: inline;
}

.cinema-word-green {
    color: var(--green-light);
}

.cinema-word-yellow {
    color: var(--yellow);
}

.cinema-text-1,
.cinema-text-2,
.cinema-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -42%);
}

.cinema-text-1.is-visible,
.cinema-text-2.is-visible,
.cinema-logo.is-visible {
    transform: translate(-50%, -50%);
}

.cinema-logo img {
    width: clamp(180px, 19vw, 280px);
    margin: 0 auto 0.8rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.cinema-logo p {
    margin: 0;
    letter-spacing: 0.16em;
    font-size: clamp(0.78rem, 0.65rem + 0.3vw, 0.95rem);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .cinema-hero {
        height: auto;
        min-height: 0;
    }

    .cinema-pin {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .cinema-frames,
    .cinema-overlay {
        inset: 0;
    }

    .cinema-text {
        width: min(88vw, 34rem);
        font-size: clamp(1.1rem, 0.95rem + 1.5vw, 1.7rem);
        line-height: 1.16;
    }

    .cinema-text-1,
    .cinema-text-2,
    .cinema-logo {
        top: 54%;
    }

    .cinema-logo img {
        width: clamp(150px, 42vw, 220px);
    }
}

.home-divider-band {
    position: relative;
    background: #fff;
}

.home-divider-band-media {
    width: 100%;
    height: 250px;
    background-image:
        linear-gradient(180deg, rgba(9, 28, 17, 0.12), rgba(9, 28, 17, 0.18)),
        url('raw/Fondo-Inicio-GE.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.home-stats-section {
    position: relative;
    margin-top: 0;
    padding: 1.8rem 0 3.6rem;
    z-index: 3;
    background: #fff;
}

.home-stats-inner {
    text-align: center;
}

.banana-value-head {
    margin: 1.8rem auto 2.6rem;
    text-align: center;
}

.banana-value-grid {
    margin-top: 0.4rem;
}

.value-section-title {
    font-weight: 900 !important;
}

.value-icon-image {
    height: auto;
    margin: 0 auto 0.65rem;
    object-fit: contain;
}

/* Hero */
.hero {
    padding-top: 6rem;
}

.section-hero-modern {
    position: relative;
    overflow: hidden;
}

.section-hero-modern::before {
    content: '';
    position: absolute;
    inset: -25% auto auto -10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 181, 28, 0.22), transparent 64%);
    pointer-events: none;
}

.section-hero-modern::after {
    content: '';
    position: absolute;
    inset: 8% -12% auto auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 125, 255, 0.14), transparent 66%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 600;
}

.hero p {
    max-width: 60ch;
    color: var(--text-soft);
}

.hero-lead {
    font-size: clamp(1.02rem, 0.92rem + 0.5vw, 1.2rem);
}

.hero-highlight {
    color: var(--green-dark);
    background: linear-gradient(120deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.18));
    border-radius: 0.2rem;
    padding: 0 0.2rem;
}

.hero-tags {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.hero-tags li {
    padding: 0.35rem 0.65rem;
    border: 1px solid #d7e4cf;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #274830;
    background: #f5f8f3;
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-media,
.image-placeholder,
.map-placeholder {
    min-height: 300px;
    border-radius: 0.75rem;
    border: 1px dashed #b8c7ab;
    background: linear-gradient(160deg, #f8fbf7, #eef5eb);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
}

.image-conocenos {
    padding: 0;
    border: 1px solid #d7e4cf;
    overflow: hidden;
    background: #eaf2e5;
}

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

.conocenos-title {
    color: var(--green-dark);
    font-weight: 500;
}

.conocenos-cta {
    border-radius: 0.55rem;
    padding: 0.78rem 1.2rem;
    box-shadow: 0 8px 18px rgba(27, 87, 51, 0.22);
}

.conocenos-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(27, 87, 51, 0.3);
    background: var(--yellow);
    border-color: var(--yellow);
    color: #1a2b1d;
}

.video-embed {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #d7e4cf;
    box-shadow: var(--shadow-soft);
    background: #000;
}

.video-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    border: 0;
    display: block;
}

.hero-media {
    position: relative;
    border: 1px solid #d7e4cf;
    border-style: solid;
    background:
        linear-gradient(160deg, #fbfdf9, #eef5eb),
        radial-gradient(circle at 85% 18%, rgba(47, 125, 255, 0.12), transparent 35%);
    box-shadow: var(--shadow-soft);
    align-content: start;
    gap: 1rem;
    padding: 1.2rem;
    text-align: left;
}

.hero-panel {
    border: 1px solid #dbe7d2;
    background: #fff;
    border-radius: 0.8rem;
    padding: 1rem;
    display: grid;
    gap: 0.45rem;
}

.hero-panel-label {
    margin: 0;
    color: var(--green-dark);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-panel strong {
    font-size: 1.04rem;
    line-height: 1.25;
    font-weight: 600;
}

.hero-panel span {
    color: var(--text-soft);
    font-weight: 400;
    font-size: 0.9rem;
}

.hero-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.hero-mini-card {
    border: 1px solid #dbe7d2;
    background: linear-gradient(180deg, #ffffff, #f7faf4);
    border-radius: 0.7rem;
    padding: 0.8rem;
    min-height: 94px;
    display: grid;
    align-content: center;
    gap: 0.25rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.hero-mini-card strong {
    color: var(--green-dark);
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 600;
}

.hero-mini-card span {
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 400;
}

.kpi-strip {
    padding: 0 0 3rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #dbe7d2;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.kpi-item {
    padding: 1rem 1.2rem;
    display: grid;
    gap: 0.3rem;
    border-right: 1px solid #e4eddc;
}

.kpi-item:last-child {
    border-right: 0;
}

.kpi-value {
    color: var(--green-dark);
    font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
}

.kpi-label {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.value-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.value-section::after {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: none;
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.value-section-title {
    text-align: center !important;
    width: 100%;
    margin-inline: auto;
    font-size: clamp(1.15rem, 1.02rem + 0.7vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: var(--green-dark);
    font-weight: 500;
}

.value-card {
    border: 1px solid #dbe7d2;
    background: #fff;
    border-radius: 0.95rem;
    padding: 0.95rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.14rem;
    text-align: center;
    justify-items: center;
}

.value-icon {
    font-size: 1.95rem;
    line-height: 1;
    margin: 0 0 0.16rem;
}

.value-icon-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 0 0.5rem;
}

.banana-value-number {
    color: var(--green-dark);
    opacity: 1;
}

.value-prefix {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.value-label {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.value-number {
    margin: 0.08rem 0 0;
    font-size: clamp(1.75rem, 1.22rem + 1.5vw, 2.6rem);
    line-height: 1;
    color: var(--green-dark);
    text-wrap: balance;
    font-weight: 600;
}

.section-intro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 215, 64, 0.16), transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(160deg, #133c26 0%, #1a5533 48%, #143722 100%);
    color: #fff;
}

.tropical-leaf-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tropical-leaf-layer {
    position: absolute;
    will-change: transform, opacity;
    opacity: 0.11;
    transform: translate3d(0, 0, 0);
}

.tropical-leaf {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transform-origin: center;
    animation: introLeafFloat var(--leaf-float-duration, 11s) ease-in-out infinite;
    animation-delay: var(--leaf-float-delay, 0s);
}

@keyframes introLeafFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate3d(var(--leaf-float-x, 12px), var(--leaf-float-y, -14px), 0) rotate(var(--leaf-float-rotate, 4deg)) scale(1.035);
    }
}

#tropicalLeaf1 {
    top: -5%;
    right: -2%;
    width: clamp(160px, 20vw, 250px);
    opacity: 0.1;
    --leaf-float-duration: 13s;
    --leaf-float-x: -18px;
    --leaf-float-y: 18px;
    --leaf-float-rotate: 6deg;
}

#tropicalLeaf2 {
    bottom: -6%;
    left: -1%;
    width: clamp(120px, 14vw, 185px);
    opacity: 0.09;
    --leaf-float-duration: 12s;
    --leaf-float-delay: -3s;
    --leaf-float-x: 16px;
    --leaf-float-y: -18px;
    --leaf-float-rotate: -5deg;
}

#tropicalLeaf3 {
    display: none;
}

#tropicalLeaf5 {
    display: none;
}

@media (max-width: 768px) {
    .tropical-leaf-layer {
        opacity: 0.08;
    }

    #tropicalLeaf1 {
        top: -2%;
        right: -10%;
        width: clamp(112px, 28vw, 156px);
    }

    #tropicalLeaf2 {
        bottom: -4%;
        left: -12%;
        width: clamp(88px, 22vw, 124px);
    }

    #tropicalLeaf3 {
        display: none;
    }

    #tropicalLeaf5 {
        display: none;
    }

    .section-decor-leaf-layer.is-top-right {
        top: -2%;
        right: -10%;
        width: clamp(112px, 28vw, 156px);
    }

    .section-decor-leaf-layer.is-bottom-left {
        bottom: -4%;
        left: -12%;
        width: clamp(88px, 22vw, 124px);
    }
}

.section-intro .container {
    position: relative;
    z-index: 1;
}

.section-intro .intro-copy,
.section-intro .intro-media {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.section-intro .section-title {
    color: #fff;
    font-weight: 500;
}

.section-intro .intro-emphasis {
    color: var(--yellow);
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.section-intro p {
    color: rgba(255, 255, 255, 0.9);
}

.section-intro .video-embed {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
}

.section-intro .button-primary,
.section-intro .button-secondary {
    border-radius: 0.55rem;
    padding: 0.78rem 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.section-intro .button-secondary {
    background: #fff;
    border-color: #fff;
    color: var(--green-dark);
}

.section-intro .button-secondary:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #1a2b1d;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .tropical-leaf {
        animation: none;
    }

    .section-decor-leaf {
        animation: none;
    }
}

/* Section Intro Fin */

/* Fincas */
.stats-band {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 10px;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--green-dark);
    background: #f5f8f1;
}

.stats-band strong {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.fincas-growth-note {
    margin: 1rem auto 0;
    max-width: 900px;
    text-align: center;
    color: #2e4334;
    font-size: 0.95rem;
    font-style: italic;
}

.fincas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finca-carousel-section {
    padding-bottom: 3rem;
}

.finca-gallery {
    position: relative;
    width: 100%;
    height: min(460px, 58vh);
    background: transparent;
    overflow: visible;
}

.finca-stage {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.finca-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(190px, 22vw, 300px);
    aspect-ratio: 1 / 1;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    transition: opacity .25s linear, filter .25s linear;
}

.finca-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}

.finca-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: saturate(1.05) contrast(1.05);
    transform: translateZ(0);
}

.finca-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
    color: #fff;
}

.finca-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
    color: #fff;
}

.finca-overlay p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
}

.finca-overlay span {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

.card {
    min-height: 160px;
}

.card,
.brand-card,
.cert-card,
.quick-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.brand-card:hover,
.cert-card:hover,
.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* Marcas y certificaciones */
.brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card,
.cert-card {
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    background: #fff;
    min-height: 110px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
}

.brand-card {
    align-content: start;
    gap: 0.7rem;
    text-align: center;
    place-items: center;
}

.brand-logo-placeholder {
    width: 100%;
    min-height: 74px;
    border: 1px dashed #b9cbb5;
    border-radius: 0.55rem;
    display: grid;
    place-items: center;
    text-align: center;
    color: #476245;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(160deg, #f8fbf7, #eef5eb);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.24s ease, background-color 0.24s ease;
}

.brand-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: center;
}

.brand-card:hover .brand-logo-placeholder {
    color: #6c5600;
    background: linear-gradient(160deg, rgba(240, 203, 0, 0.24), rgba(158, 181, 28, 0.2));
}

.section-marcas-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #144329 0%, #1b5733 55%, #1a4e31 100%);
    color: #fff;
}

.section-marcas-dark .eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.section-marcas-dark .section-title {
    color: #fff;
}

.section-marcas-dark .title-emphasis {
    color: var(--yellow);
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.section-marcas-dark .section-head p {
    color: rgba(255, 255, 255, 0.9);
}

.section-marcas-dark .brand-card {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.section-marcas-dark .brand-card p {
    color: rgba(255, 255, 255, 0.9);
}

.section-marcas-dark .brand-logo-placeholder {
    border-color: rgba(255, 255, 255, 0.28);
    color: #f3f8f3;
    background: rgba(255, 255, 255, 0.06);
}

.section-marcas-dark .brand-card:hover .brand-logo-placeholder {
    color: #fff;
    background: linear-gradient(160deg, rgba(240, 203, 0, 0.36), rgba(158, 181, 28, 0.28));
}

.section-marcas-dark .button-primary {
    background: #fff;
    border-color: #fff;
    color: var(--green-dark);
}

.section-marcas-dark .button-primary:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #1a2b1d;
}

.section-humano-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #144329 0%, #1b5733 55%, #1a4e31 100%);
    color: #fff;
}

.section-humano-dark .eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.section-humano-dark .section-title {
    color: #fff;
}

.section-humano-dark .title-emphasis {
    color: var(--yellow);
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.section-leaf-scene {
    position: relative;
    overflow: hidden;
}

.section-leaf-scene .container {
    position: relative;
    z-index: 1;
}

.section-decor-leaf-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.section-decor-leaf-layer {
    position: absolute;
    opacity: 0.08;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
}

.section-decor-leaf {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transform-origin: center;
    animation: introLeafFloat var(--leaf-float-duration, 12s) ease-in-out infinite;
    animation-delay: var(--leaf-float-delay, 0s);
}

.section-leaf-scene.leaves-original .section-decor-leaf {
    filter: none;
}

.section-leaf-scene.leaves-original .section-decor-leaf-layer.is-top-right {
    opacity: 1;
}

.section-leaf-scene.leaves-original .section-decor-leaf-layer.is-bottom-left {
    opacity: 1;
}

.section-decor-leaf-layer.is-top-right {
    top: -5%;
    right: -2%;
    width: clamp(150px, 18vw, 230px);
    opacity: 0.09;
    --leaf-float-duration: 13s;
    --leaf-float-x: -16px;
    --leaf-float-y: 16px;
    --leaf-float-rotate: 5deg;
}

.section-decor-leaf-layer.is-bottom-left {
    bottom: -6%;
    left: -1%;
    width: clamp(110px, 13vw, 170px);
    opacity: 0.08;
    --leaf-float-duration: 12s;
    --leaf-float-delay: -3s;
    --leaf-float-x: 14px;
    --leaf-float-y: -16px;
    --leaf-float-rotate: -4deg;
}

.section-cotizaciones-cta {
    background: #fff;
    color: var(--text);
}

.cotizaciones-head {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.section-cotizaciones-cta .eyebrow {
    color: var(--green-dark);
}

.section-cotizaciones-cta .section-title {
    color: var(--green-dark);
}

.section-cotizaciones-cta .title-emphasis {
    color: var(--green-dark);
    background: linear-gradient(120deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.18));
}

.section-cotizaciones-cta .cotizaciones-head p {
    color: var(--text-soft);
}

.section-cotizaciones-cta .cotizaciones-head .button-primary {
    margin-top: 0.8rem;
}


.section-humano-dark p,
.section-humano-dark blockquote {
    color: rgba(255, 255, 255, 0.9);
}

.section-humano-dark blockquote {
    border-left-color: var(--yellow);
}

.image-humano {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

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

.cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
}

.cert-logo-cell {
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: #fff;
    min-height: 110px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    color: #476245;
    font-weight: 700;
}

.cert-logo-cell img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.24s ease;
}

.cert-logo-cell:hover img {
    transform: scale(1.1);
}

blockquote {
    margin: 1rem 0 0;
    padding-left: 1rem;
    border-left: 4px solid var(--yellow);
    color: #27352b;
}

/* Accesos */
.quick-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.quick-card {
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.quick-card:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
}

/* Formulario */
.quote-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 1.35rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
    margin-bottom: 1.1rem;
}

label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--green-dark);
    font-weight: 700;
}

input,
textarea,
select {
    border: 1px solid #cfd7c6;
    border-radius: 0.55rem;
    font: inherit;
    min-height: 52px;
    width: 100%;
    padding: 0.8rem 0.9rem;
    color: var(--text);
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #dbe9d9;
    border-color: var(--green-dark);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.field-help {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-soft);
    font-weight: 400;
}

.full-width {
    grid-column: 1 / -1;
}

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: #eff6ef;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.footer-grid>div {
    height: auto;
}

.footer-logo {
    width: 132px;
    height: auto;
    margin-bottom: 0.7rem;
}

.footer-cta-card {
    border: 1px dashed rgba(255, 255, 255, 0.45);
    border-radius: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
}

.footer-cta-card p {
    margin: 0.45rem 0;
}

.footer-cta-link {
    color: inherit;
    transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.footer-cta-link:hover {
    background: linear-gradient(160deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.18));
    border-color: rgba(240, 203, 0, 0.7);
    transform: translateY(-2px);
}

.footer-cta-link h4,
.footer-cta-link p {
    color: inherit;
}

.footer-cta-link h4 {
    margin: 0 0 0.2rem;
}

.footer-cta-link p {
    margin: 0;
}

.footer-cta-link:hover,
.footer-cta-link:hover h4,
.footer-cta-link:hover p {
    color: #fff;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.footer-contact-icon {
    width: 17px;
    height: 17px;
    color: #fff;
    flex: 0 0 17px;
    display: inline-flex;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 0.45rem;
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-lang {
    display: inline-flex;
    gap: 0.7rem;
}

.main-nav a[aria-current='page'] {
    color: var(--green-dark);
    font-weight: 700;
}

.main-nav a[aria-current='page']::after {
    transform: scaleX(1);
}

.site-header.site-header-solid {
    position: sticky;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--border);
    backdrop-filter: blur(8px);
}

.site-header.site-header-solid .main-nav a,
.site-header.site-header-solid .logo,
.site-header.site-header-solid .language-switcher a {
    color: var(--text);
}

.site-header.site-header-solid .main-nav a::after {
    background: var(--yellow);
}

.site-header.site-header-solid .language-switcher a {
    border-color: var(--border);
    background: #fff;
}

/* --- ABOUT PAGE ENHANCEMENTS --- */
.about-page {
    overflow: hidden;
}

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(12, 30, 19, 0.85) 0%, rgba(16, 55, 34, 0.7) 100%),
        url('raw/fincaEsfuerzo.jpg') center / cover no-repeat;
    color: #fff;
}

.about-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.white-text {
    color: #fff !important;
}

.highlight-yellow {
    color: var(--yellow);
}

.about-hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.about-hero-copy {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-hero-kpis {
    gap: 1.2rem;
}

.about-kpi-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-kpi-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.kpi-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 12px;
    padding: 10px;
}

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

.about-kpi-card strong {
    font-size: 1.8rem;
    color: var(--yellow);
}

/* Content Sections */
.image-wrapper.image-conocenos {
    max-height: 450px;
}

.image-wrapper.image-conocenos img {
    object-position: center;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

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

.image-overlay-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 87, 51, 0.4), transparent);
    pointer-events: none;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--green-dark);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* History Section Redesign */
.history-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.circle-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.circle-decoration {
    position: absolute;
    inset: -15px;
    border: 2px dashed var(--green-light);
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
    z-index: 1;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.history-content-col .about-text-block {
    columns: 1;
    padding: 0;
}

@media (max-width: 1024px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .history-image-col {
        order: -1;
    }

    .circle-image-wrapper {
        max-width: 300px;
    }
}

/* Values Section */
.section-values {
    background: var(--bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 1.2rem;
    border-bottom: 4px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--green-light);
    box-shadow: var(--shadow-soft);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(158, 181, 28, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.banana-value-grid .banana-value-number {
    color: var(--green-dark);
    opacity: 1;
}

.value-card h3 {
    color: var(--green-dark);
    margin: 0 0 0.45rem;
    font-size: 1.3rem;
}

.value-card p {
    margin: 0;
}

/* Founder Section */
.section-humano-dark {
    background: var(--green-dark);
    color: #fff;
}

.section-humano-dark .section-title,
.section-humano-dark .eyebrow {
    color: #fff;
}

.founder-visual-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-wrapper.image-humano {
    position: relative;
}

.image-wrapper.image-humano .image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
}

.modern-quote {
    border-left: 4px solid var(--yellow);
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
    font-style: italic;
    font-size: 1rem;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--yellow);
    color: var(--green-dark);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
}

/* Presidency Letter */
.presidency-letter {
    background: #fff;
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.letter-logo img {
    height: 50px;
}

.presidency-letter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: #f9fbf8;
}

.letter-dept {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
}

.letter-org {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-dark);
}

.presidency-letter-body {
    padding: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    columns: 1;
    column-gap: 0;
    text-align: left;
}

.presidency-letter-sign {
    padding: 3rem;
    text-align: right;
}

.signature-line {
    width: 200px;
    height: 1px;
    background: var(--border);
    margin-left: auto;
    margin-bottom: 1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--green-dark), #2a6b45);
    padding: 4rem;
    border-radius: 2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(27, 87, 51, 0.3);
}

.cta-box .section-title,
.cta-box .eyebrow {
    color: #fff;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-box .button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-box .button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {

    .grid-2-cols,
    .presidency-letter-body {
        grid-template-columns: 1fr;
        columns: 1;
    }

    .presidency-letter-head,
    .presidency-letter-body,
    .presidency-letter-sign {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }
}

.about-page {
    overflow: hidden;
}

.about-hero {
    position: relative;
    min-height: 72vh;
    padding-top: 6.5rem;
    background:
        linear-gradient(98deg, rgba(12, 30, 19, 0.72), rgba(16, 55, 34, 0.68)),
        linear-gradient(160deg, rgba(27, 87, 51, 0.36), rgba(22, 74, 44, 0.55)),
        url('raw/fincaEsfuerzo.jpg') center / cover no-repeat;
    color: #fff;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.14), transparent);
    pointer-events: none;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: end;
}

.about-hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 1.4rem + 2.1vw, 3.3rem);
    line-height: 1.1;
    font-weight: 600;
}

.about-hero-copy {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero-actions {
    margin-top: 1.35rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.about-hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.62);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.about-hero .button-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.about-hero-kpis {
    display: grid;
    gap: 0.85rem;
}

.about-kpi-card {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
}

.about-kpi-card strong {
    display: block;
    font-size: clamp(1.4rem, 1.1rem + 0.9vw, 2rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.about-kpi-card p {
    margin: 0.3rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.about-section-head {
    max-width: 860px;
}

.about-timeline {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-timeline-item {
    border: 1px solid #dbe7d2;
    border-radius: 0.8rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
}

.about-timeline-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-dark);
    background: linear-gradient(145deg, rgba(240, 203, 0, 0.24), rgba(158, 181, 28, 0.2));
    border: 1px solid #d6dfc3;
}

.about-timeline-item h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.04rem;
}

.about-timeline-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.about-principles-grid {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-principle-card {
    border: 1px solid #dbe7d2;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #ffffff, #f7faf4);
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.about-principle-card h3 {
    margin: 0 0 0.45rem;
    color: var(--green-dark);
    font-size: 1.06rem;
}

.about-principle-card p {
    margin: 0;
    color: var(--text-soft);
}

.about-text-block {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.about-text-block p {
    margin: 0 0 0.95rem;
    color: var(--text-soft);
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

.timeline-placeholder {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-placeholder-card {
    border: 1px dashed #c6d6ba;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #ffffff, #f7faf4);
    padding: 1rem;
    min-height: 130px;
    display: grid;
    align-content: center;
    gap: 0.35rem;
    text-align: center;
}

.timeline-placeholder-card strong {
    color: var(--green-dark);
    font-size: 0.95rem;
}

.timeline-placeholder-card p {
    margin: 0;
    color: var(--text-soft);
}

.section-presidency {
    background:
        radial-gradient(circle at 15% 18%, rgba(203, 193, 13, 0.2) 0%, transparent 36%),
        radial-gradient(circle at 84% 70%, rgba(47, 125, 255, 0.12) 0%, transparent 33%),
        linear-gradient(180deg, #f8fbf7 0%, #eef4e8 100%);
}

.presidency-letter {
    max-width: 920px;
    margin-inline: auto;
    border: 1px solid #d8e3cf;
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at top right, rgba(150, 112, 63, 0.04), transparent 24%),
        linear-gradient(180deg, rgba(252, 249, 242, 0.99), rgba(247, 243, 235, 0.99)),
        repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(123, 93, 48, 0.035) 32px);
    box-shadow: 0 22px 40px rgba(27, 87, 51, 0.11);
    overflow: hidden;
}

.presidency-letter-head {
    padding: 1.1rem 1.25rem 0.95rem;
    border-bottom: 1px solid #e6ede0;
    background: linear-gradient(180deg, rgba(27, 87, 51, 0.08), rgba(27, 87, 51, 0.02));
}

.presidency-letter-head p {
    margin: 0;
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.35;
}

.presidency-letter-body {
    padding: 1.5rem 1.6rem 1rem;
    display: block;
    columns: 1;
    column-gap: 0;
    text-align: left;
}

.presidency-letter-body p {
    margin: 0 0 0.95rem;
    color: #4b3a24;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
    font-size: 1.03rem;
    line-height: 1.95;
}

.presidency-letter-body p:last-child {
    margin-bottom: 0;
}

.letter-paragraph {
    opacity: 1;
    transform: none;
    filter: none;
}

.letter-paragraph-opening::first-letter {
    float: left;
    margin: 0.02rem 0.3rem 0 0;
    color: #6e4b24;
    font-size: 3.5rem;
    line-height: 0.92;
    font-weight: 700;
}

.letter-line {
    display: block;
    overflow: hidden;
}

.letter-line-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    filter: blur(1px);
    transition: opacity 1.35s ease, transform 1.35s ease, filter 1.35s ease;
}

.letter-line.is-written .letter-line-inner {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.presidency-letter-sign {
    padding: 0.95rem 1.6rem 1.45rem;
    border-top: 1px solid #e6ede0;
    text-align: center;
}

.presidency-letter-sign p {
    margin: 0;
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.35;
}

.presidency-signatory-name {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.presidency-signature {
    margin-top: 0.7rem !important;
    color: #214f35 !important;
    font-family: 'Lucida Handwriting', 'Segoe Print', 'Brush Script MT', cursive;
    font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.15rem);
    font-weight: 400 !important;
    letter-spacing: 0.01em;
    display: inline-block;
    padding: 0 0.55rem 0.25rem;
    border-bottom: 1px solid rgba(33, 79, 53, 0.42);
}

.presidency-portrait {
    width: 180px;
    height: 180px;
    margin: 1rem auto 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(27, 87, 51, 0.12);
    box-shadow: 0 16px 30px rgba(27, 87, 51, 0.14);
}

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

.presidency-layout {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 1rem;
    align-items: start;
}

.presidency-tabs {
    display: grid;
    gap: 0.55rem;
    position: sticky;
    top: 98px;
}

.presidency-tab {
    text-align: left;
    border: 1px solid #d1dcc6;
    background: #fff;
    color: var(--green-dark);
    border-radius: 0.7rem;
    padding: 0.75rem 0.85rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.presidency-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.presidency-tab.is-active {
    background: linear-gradient(160deg, rgba(27, 87, 51, 0.98), rgba(24, 74, 46, 0.98));
    color: #fff;
    border-color: rgba(27, 87, 51, 0.85);
}

.presidency-panels {
    border: 1px solid #dbe7d2;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    min-height: 330px;
}

.presidency-panel h3 {
    margin: 0 0 0.55rem;
    color: var(--green-dark);
    font-size: clamp(1.18rem, 1.08rem + 0.46vw, 1.5rem);
}

.presidency-panel p {
    margin: 0 0 0.75rem;
    color: var(--text-soft);
}

.presidency-panel p:last-child {
    margin-bottom: 0;
}

.fincas-page {
    overflow: hidden;
}

.fincas-stories {
    padding-top: 4rem;
}

.finca-story {
    display: grid;
    grid-template-columns: 0.97fr 1.03fr;
    gap: 1.6rem;
    align-items: center;
    margin-bottom: 2rem;
}

.finca-story:last-child {
    margin-bottom: 0;
}

.finca-story-reverse .finca-story-media {
    order: 2;
}

.finca-story-reverse .finca-story-body {
    order: 1;
}

.finca-story-media {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    min-height: 280px;
}

.finca-story-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.finca-story-body {
    border: 1px solid #dbe7d2;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff, #f8fbf6);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem 1.25rem;
}

.finca-story-body p {
    margin: 0 0 0.85rem;
    color: var(--text-soft);
}

.finca-story-body p:last-child {
    margin-bottom: 0;
}

.finca-story-closing {
    color: var(--green-dark) !important;
    font-weight: 700;
}

.brands-page {
    overflow: hidden;
}

.brands-hero {
    position: relative;
    min-height: 82vh;
    padding: 3rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 18%, rgba(240, 203, 0, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(158, 181, 28, 0.22) 0%, transparent 26%),
        radial-gradient(circle at 78% 80%, rgba(47, 125, 255, 0.14) 0%, transparent 24%),
        linear-gradient(135deg, #0d2618 0%, #144329 36%, #1b5733 66%, #214f35 100%);
}

.brands-hero::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.brands-hero::after {
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.brands-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.brands-hero-content {
    width: min(100%, 860px);
    display: grid;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
}

.brands-hero-eyebrow {
    color: #fff;
}

.brands-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 1.25rem + 1.45vw, 2.7rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brands-hero-title span {
    display: block;
    color: #f4d93b;
}

.brands-hero-rotator {
    min-height: 1.2em;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.brands-hero-rotator.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

.brands-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.15rem;
}

.brands-hero .button-primary {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.brands-hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.brands-hero .button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.brands-hero-panel {
    position: relative;
    display: grid;
    gap: 1rem;
    width: 100%;
    padding: 1.4rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.brands-hero-panel::before {
    content: '';
    position: absolute;
    inset: -40% auto auto 58%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(240, 203, 0, 0.18);
    filter: blur(16px);
}

.brands-hero-panel::after {
    content: '';
    position: absolute;
    inset: auto auto -60px -20px;
    width: 190px;
    height: 190px;
    border-radius: 42px;
    transform: rotate(-14deg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brands-hero-card,
.brand-principle,
.brand-story-card,
.brands-closing-card {
    position: relative;
    z-index: 1;
}

.brands-hero-intro {
    margin: 0;
    width: 100%;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.92);
}

.brands-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
}

.brands-hero-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    justify-items: center;
}

.brands-hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.brands-hero-card strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.brands-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.brand-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(240, 203, 0, 0.92), rgba(158, 181, 28, 0.88));
    color: #16301f;
    font-weight: 800;
    font-size: 0.82rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brands-principles {
    position: relative;
    background:
        linear-gradient(180deg, rgba(248, 251, 247, 0.92), rgba(238, 244, 232, 0.9)),
        linear-gradient(135deg, transparent 0 78%, rgba(203, 193, 13, 0.1) 78% 100%);
}

.brands-principles .section-head {
    margin-inline: auto;
    text-align: center;
}

.brands-principles .section-head p {
    margin-inline: auto;
}

.brands-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.brand-principle {
    border: 1px solid #dbe7d2;
    border-radius: 1rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.brand-principle:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(27, 87, 51, 0.14);
    border-color: rgba(27, 87, 51, 0.2);
    background: linear-gradient(180deg, #ffffff, #f4f8f0);
}

.brand-principle strong {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--green-dark);
    font-size: 1rem;
}

.brand-principle p {
    margin: 0;
    color: var(--text-soft);
}

.brands-showcase {
    position: relative;
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fbf7 26%, #f2f7ed 100%);
}

.brands-showcase::before {
    content: '';
    position: absolute;
    inset: 6% auto auto -7%;
    width: 240px;
    height: 240px;
    border-radius: 30%;
    transform: rotate(28deg);
    background: rgba(27, 87, 51, 0.05);
    pointer-events: none;
}

.brand-story {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    align-items: stretch;
}

.brand-story:last-child {
    margin-bottom: 0;
}

.brand-story-card {
    position: relative;
    min-height: 100%;
    padding: 1.4rem;
    border-radius: 1.2rem;
    background: linear-gradient(160deg, #fefefe 0%, #f6faf3 100%);
    border: 1px solid #dbe7d2;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.brand-story-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: linear-gradient(180deg, var(--brand-accent, #f0cb00), transparent 88%);
}

.brand-story-card::after {
    content: '';
    position: absolute;
    inset: auto -50px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 26px;
    transform: rotate(18deg);
    background: var(--brand-glow, rgba(240, 203, 0, 0.14));
}

.brand-story-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: end start;
    min-height: 100%;
    padding: 1.3rem;
    border-radius: 1.2rem;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(11, 31, 20, 0.34), rgba(11, 31, 20, 0.08)),
        linear-gradient(160deg, var(--brand-deep, #1b5733), var(--brand-mid, #2b6c42));
    box-shadow: 0 22px 44px rgba(19, 45, 29, 0.2);
}

.brand-mark::before,
.brand-mark::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.brand-mark::before {
    inset: 12% -14% auto auto;
    width: 160px;
    height: 160px;
    border-radius: 30px;
    transform: rotate(18deg);
    background: rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
    inset: auto auto -18% -6%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.11);
    filter: blur(4px);
}

.brand-mark-inner {
    position: relative;
    z-index: 1;
}

.brand-mark-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.brand-mark-name {
    margin: 0;
    font-size: clamp(1.9rem, 1.4rem + 1.4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.brand-mark-tagline {
    display: block;
    margin-top: 0.85rem;
    max-width: 20ch;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
}

.brand-story-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.brand-story-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(27, 87, 51, 0.08);
    color: var(--green-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.brand-story-origin {
    color: #5f745f;
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-story-card h2 {
    margin: 0;
    font-size: clamp(1.55rem, 1.2rem + 0.9vw, 2.3rem);
    line-height: 1.08;
    color: #173624;
}

.brand-story-subtitle {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.03rem;
    font-weight: 700;
}

.brand-story-copy {
    display: grid;
    gap: 0.9rem;
}

.brand-story-copy p {
    margin: 0;
    color: var(--text-soft);
}

.brand-story-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.brand-story-highlights article {
    padding: 0.9rem;
    border-radius: 0.9rem;
    background: rgba(27, 87, 51, 0.04);
    border: 1px solid rgba(27, 87, 51, 0.08);
}

.brand-story-highlights strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.92rem;
    color: #163926;
}

.brand-story-highlights p {
    margin: 0;
    color: #58705d;
    font-size: 0.9rem;
}

.brand-story-coda {
    margin: 0;
    padding-top: 0.1rem;
    color: #183825;
    font-weight: 700;
}

.brand-story-coriban {
    --brand-accent: #f0cb00;
    --brand-glow: rgba(240, 203, 0, 0.16);
    --brand-deep: #1a4d2e;
    --brand-mid: #2f6c3f;
}

.brand-story-laloban {
    --brand-accent: #9eb51c;
    --brand-glow: rgba(158, 181, 28, 0.18);
    --brand-deep: #355625;
    --brand-mid: #5d7f2d;
}

.brand-story-legado {
    --brand-accent: #2f7dff;
    --brand-glow: rgba(47, 125, 255, 0.14);
    --brand-deep: #164e48;
    --brand-mid: #1d6a5e;
}

.brands-closing {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(240, 203, 0, 0.18) 0%, transparent 30%),
        radial-gradient(circle at 88% 24%, rgba(47, 125, 255, 0.14) 0%, transparent 28%),
        radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.12) 0%, transparent 34%),
        linear-gradient(150deg, #21543a 0%, #2d6d4a 45%, #1f5639 100%);
}

.brands-closing-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    text-align: center;
}

.brands-closing-card p {
    margin-inline: auto;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.88);
}

.brands-closing-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.brands-closing .button-primary {
    background: #fff;
    border-color: #fff;
    color: var(--green-dark);
}

.brands-closing .button-primary:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #1a2b1d;
}

.brands-closing .button-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.brands-closing .button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Tablet */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.quote-page {
    overflow: hidden;
}

.quote-hero {
    position: relative;
    margin: 0;
    padding: 4rem 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(240, 203, 0, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(158, 181, 28, 0.22) 0%, transparent 26%),
        radial-gradient(circle at 78% 80%, rgba(47, 125, 255, 0.14) 0%, transparent 24%),
        linear-gradient(135deg, #0d2618 0%, #144329 36%, #1b5733 66%, #214f35 100%);
    color: #fff;
}

.quote-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.quote-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: center;
    padding-inline: clamp(0.5rem, 1vw, 1rem);
}

.quote-hero .eyebrow {
    color: var(--yellow);
}

.quote-hero-copy-block {
    display: grid;
    gap: 0;
}

.quote-hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 1.6rem + 2.2vw, 3.5rem);
    line-height: 1.05;
    font-weight: 600;
}

.quote-hero-copy {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.92);
}

.quote-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.quote-hero-card-label,
.contact-card-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.quote-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.quote-contact-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.quote-contact-list li {
    display: grid;
    gap: 0.2rem;
}

.quote-contact-list span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.quote-contact-list a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.quote-main {
    position: relative;
    background:
        radial-gradient(circle at 12% 8%, rgba(203, 193, 13, 0.14) 0%, transparent 26%),
        radial-gradient(circle at 90% 18%, rgba(47, 125, 255, 0.09) 0%, transparent 28%),
        linear-gradient(180deg, #f8fbf7 0%, #eef4e8 100%);
}

.quote-main-grid {
    display: block;
}

.quote-form-shell {
    border: 1px solid #dbe7d2;
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(27, 87, 51, 0.09);
    max-width: 820px;
    margin: 0 auto;
}

.quote-form-head {
    text-align: center;
}

.quote-form-head p:last-child {
    margin-bottom: 0;
    color: var(--text-soft);
}

.form-status {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-radius: 0.7rem;
    border: 1px solid #cfe0bf;
    background: #f3f9ed;
    color: var(--green-dark);
    font-weight: 700;
}

.quote-form {
    margin-top: 1rem;
}

.quote-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quote-submit {
    min-width: 210px;
}

.quote-submit[disabled] {
    opacity: 0.72;
    cursor: wait;
}

.contact-card {
    border: 1px solid #dbe7d2;
    border-radius: 1rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, #ffffff, #f6faf3);
    box-shadow: var(--shadow-soft);
}

.contact-card-label {
    color: var(--green-dark);
    background: linear-gradient(140deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.22));
    border-color: rgba(27, 87, 51, 0.08);
}

.contact-card h3 {
    margin: 0.95rem 0 0.6rem;
    color: var(--green-dark);
    font-size: 1.35rem;
    line-height: 1.15;
}

.contact-card p {
    color: var(--text-soft);
}

.contact-link {
    display: grid;
    gap: 0.18rem;
    margin-top: 0.85rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid #d8e4d2;
    background: #fff;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-link strong {
    color: var(--green-dark);
    font-size: 1rem;
}

.contact-link span {
    color: var(--text-soft);
    font-size: 0.86rem;
}

.contact-link:hover {
    transform: translateY(-2px);
    border-color: #b8c9ae;
    box-shadow: var(--shadow-soft);
}

.process-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.process-list div {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e3ebdc;
}

.process-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.process-list strong {
    color: var(--green-dark);
}

.process-list p {
    margin: 0.3rem 0 0;
}

@media (max-width: 1024px) {

    .hero-grid,
    .split,
    .about-hero-grid,
    .presidency-layout,
    .about-timeline,
    .fincas-hero-grid {
        grid-template-columns: 1fr;
    }

    .fincas-grid,
    .brands-grid,
    .quick-grid,
    .footer-grid,
    .brands-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cert-logos-grid,
    .brand-story-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head-with-cta {
        grid-template-columns: 1fr;
    }

    .section-head-cta {
        grid-column: 1 / 2;
        grid-row: auto;
        justify-self: start;
        margin-top: 0.3rem;
    }

    .hero-mini-cards,
    .kpi-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .brand-story {
        grid-template-columns: 1fr;
    }

    .brand-mark {
        min-height: 240px;
    }

    .presidency-tabs {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-placeholder {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kpi-item {
        border-right: 0;
        border-bottom: 1px solid #e4eddc;
    }

    .kpi-item:last-child {
        border-bottom: 0;
    }

}

/* Mobile */
@media (max-width: 760px) {
    .section {
        padding: 4rem 0;
    }

    #fincas.section {
        padding: 2rem 0 1.2rem;
    }

    .section-head.section-head-with-cta .section-head-cta {
        display: none;
    }

    .fincas-cta-mobile {
        display: block;
    }

    .header-inner {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .logo {
        margin-right: auto;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
        order: 3;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 0.65rem 0;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: min(var(--container), 92%);
        margin-inline: auto;
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 0.35rem 0;
    }

    .language-switcher {
        order: 2;
        justify-self: end;
    }

    .fincas-grid,
    .brands-grid,
    .brands-principles-grid,
    .cert-grid,
    .quick-grid,
    .form-grid,
    .footer-grid,
    .brand-story-highlights {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 5rem;
    }

    .about-hero,
    .fincas-hero,
    .brands-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .fincas-hero {
        background-position: center 42%;
    }

    .about-hero-actions,
    .brands-hero-actions,
    .brands-closing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-actions .button-primary,
    .about-hero-actions .button-secondary,
    .brands-hero-actions .button-primary,
    .brands-hero-actions .button-secondary,
    .brands-closing-actions .button-primary,
    .brands-closing-actions .button-secondary {
        width: 100%;
    }

    .about-kpi-card,
    .fincas-hero-kpi,
    .brands-hero-panel,
    .brand-story-card,
    .brand-mark,
    .brands-closing-card {
        padding: 0.95rem;
    }

    .finca-story {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.4rem;
    }

    .finca-story-reverse .finca-story-media,
    .finca-story-reverse .finca-story-body {
        order: initial;
    }

    .brands-hero-title {
        font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.3rem);
    }

    .brands-hero-cards {
        grid-template-columns: 1fr;
    }

    .brands-hero-content {
        width: 100%;
    }

    .brands-hero-card {
        grid-template-columns: 1fr;
    }

    .brand-story-topline {
        display: grid;
    }

    .brand-mark {
        min-height: 220px;
    }

    .about-timeline-item,
    .about-principle-card,
    .presidency-panels,
    .about-text-block,
    .presidency-letter-body {
        padding: 0.95rem;
    }

    .timeline-placeholder {
        grid-template-columns: 1fr;
    }

    .cinema-hero {
        height: auto;
        min-height: 0;
        padding: 0;
        overflow: hidden;
    }

    .cinema-frame {
        object-fit: cover;
        object-position: 50% 50%;
        transform-origin: 50% 50%;
    }

    .cinema-pin {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .cinema-frames,
    .cinema-overlay {
        inset: 0;
    }

    .cinema-overlay {
        padding: 1.4rem;
    }

    .cinema-frames {
        background: #000;
    }

    .cinema-text {
        width: min(88vw, 34rem);
        margin-inline: auto;
        font-size: clamp(1.1rem, 0.95rem + 1.5vw, 1.7rem);
        line-height: 1.16;
        text-align: center;
    }

    .cinema-text-1,
    .cinema-text-2,
    .cinema-logo {
        left: 50%;
        top: 54%;
        transform: translate(-50%, -50%);
    }

    .cinema-logo {
        width: min(78vw, 320px);
        text-align: center;
    }

    .cinema-logo img {
        width: clamp(70px, 18vw, 104px);
        margin: 0 auto 0.8rem;
    }

    .home-divider-band-media {
        height: 210px;
        background-attachment: scroll;
    }

    .home-stats-section {
        padding-bottom: 1.4rem;
    }

    .banana-value-head {
        margin-top: 0;
        margin-bottom: 1.35rem;
    }

    .banana-value-grid {
        margin-top: 0.2rem;
    }

    .value-section-title {
        text-align: center !important;
        font-size: clamp(1.08rem, 1rem + 0.7vw, 1.3rem);
        color: var(--green-dark);
        font-weight: 500;
    }

    .finca-gallery {
        height: 300px;
    }

    .hero-media,
    .image-placeholder,
    .map-placeholder,
    .video-embed iframe {
        min-height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .finca-item {
        transition: none;
    }

    .cinema-frame,
    .cinema-text,
    .cinema-logo {
        transition: none;
    }

    .home-divider-band-media {
        background-attachment: scroll;
    }
}
















/* Fincas refresh */
.fincas-page {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(203, 193, 13, 0.1) 0%, transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(158, 181, 28, 0.12) 0%, transparent 20%),
        linear-gradient(180deg, #f8faf6 0%, #ffffff 28%, #f6f9f3 100%);
}

.fincas-hero {
    position: relative;
    padding: 4rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 24%, rgba(240, 203, 0, 0.16) 0%, transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(158, 181, 28, 0.18) 0%, transparent 22%),
        linear-gradient(125deg, rgba(8, 24, 15, 0.86), rgba(18, 62, 38, 0.66)),
        url('raw/Fincas/fincaEsfuerzo.jpg') center center / cover no-repeat;
}

.fincas-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.52fr);
    gap: 1.2rem 1.6rem;
    align-items: center;
}

.fincas-hero-copy-block {
    max-width: 720px;
}

.fincas-hero .eyebrow {
    color: var(--yellow);
}

.fincas-hero-title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: normal;
    font-weight: 500;
}

.fincas-hero-copy {
    max-width: 60ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.fincas-hero-ribbon span,
.finca-story-tag,
.fincas-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.fincas-hero-kpis {
    display: grid;
    gap: 0.85rem;
}

.fincas-hero-kpi {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.fincas-hero-kpi::after {
    content: '';
    position: absolute;
    inset: auto -10% -22% auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(240, 203, 0, 0.16);
    filter: blur(8px);
}

.fincas-hero-kpi strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(1.8rem, 1.3rem + 1vw, 2.5rem);
    line-height: 1;
    font-weight: 800;
}

.fincas-kpi-label,
.fincas-hero-kpi p {
    position: relative;
    z-index: 1;
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.fincas-overview {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

.fincas-overview-head {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.fincas-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.fincas-overview-card {
    position: relative;
    overflow: hidden;
    padding: 1.35rem 1.2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(214, 228, 206, 0.95);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 240, 0.95));
    box-shadow: 0 18px 40px rgba(27, 87, 51, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: fadeInTimelineItem 0.6s ease forwards;
    opacity: 0;
}

.fincas-overview-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green-light), var(--green-dark));
}

.fincas-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(27, 87, 51, 0.14);
    border-color: rgba(158, 181, 28, 0.42);
}

.fincas-overview-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fincas-overview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fincas-overview-card:nth-child(3) {
    animation-delay: 0.3s;
}

.fincas-overview-card:nth-child(4) {
    animation-delay: 0.4s;
}

.fincas-overview-card strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--green-dark);
    font-size: 1.02rem;
}

.fincas-overview-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.fincas-overview-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(240, 203, 0, 0.24), rgba(158, 181, 28, 0.2));
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.fincas-journey {
    position: relative;
    overflow: hidden;
}

.fincas-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: center;
}

.fincas-journey-copy {
    max-width: 640px;
}

.fincas-journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.fincas-journey-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(27, 87, 51, 0.25), rgba(240, 203, 0, 0.75), rgba(27, 87, 51, 0.25));
}

.fincas-journey-stop {
    position: relative;
    padding-top: 2.7rem;
    text-align: center;
}

.fincas-journey-stop::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--yellow), var(--green-light));
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.72);
}

.fincas-journey-stop span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.fincas-journey-stop p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.fincas-stories {
    position: relative;
    padding-top: 4.5rem;
}

.finca-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2.2rem;
}

.finca-story-featured {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.finca-story:last-child {
    margin-bottom: 0;
}

.finca-story-reverse .finca-story-media {
    order: 2;
}

.finca-story-reverse .finca-story-body {
    order: 1;
}

.finca-story-media {
    position: relative;
    margin: 0;
    height: 100%;
    min-height: 440px;
    border-radius: 1.3rem;
    overflow: hidden;
    box-shadow: 0 20px 52px rgba(18, 45, 27, 0.16);
}

.finca-story-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 12, 0.02), rgba(8, 18, 12, 0.42));
}

.finca-story-media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.finca-story:hover .finca-story-media img {
    transform: scale(1.08);
}

.finca-story-caption {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
}

.finca-story-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 1.35rem;
    border-radius: 1.3rem;
    border: 1px solid #dce6d6;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 244, 0.98));
    box-shadow: 0 18px 44px rgba(27, 87, 51, 0.08);
}

.finca-story-body::before {
    content: none;
}

.finca-story-head {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.finca-story-name {
    margin: 0;
    width: fit-content;
    color: var(--green-dark);
    font-size: clamp(1rem, 0.92rem + 0.35vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: none;
    background: linear-gradient(120deg, rgba(240, 203, 0, 0.24), rgba(158, 181, 28, 0.18));
    border-radius: 0.28rem;
    padding: 0.08rem 0.35rem;
}

.finca-story-body .section-title {
    font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.4rem);
    line-height: 1.18;
    margin-bottom: 0.9rem;
    color: var(--green-dark);
}

.finca-story-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.finca-story-facts li {
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--green-dark);
    border: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    line-height: 1.15;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.finca-story-facts-media {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    gap: 0.4rem;
}

.finca-story-facts li:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #1a2b1d;
    transform: translateY(-1px);
}

.finca-story-body p {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
    text-align: justify;
    text-wrap: pretty;
}

.finca-story-highlight {
    margin: 1rem 0 0.95rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(140deg, rgba(27, 87, 51, 0.98), rgba(23, 73, 44, 0.94));
    box-shadow: 0 16px 30px rgba(27, 87, 51, 0.14);
}

.finca-story-highlight strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
}

.finca-story-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.finca-story-closing {
    margin-bottom: 0;
    color: var(--green-dark) !important;
    font-weight: 700;
    font-size: 1.02rem;
}

.finca-story.is-spotlight .finca-story-body {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(27, 87, 51, 0.12);
}

.finca-story.is-spotlight .finca-story-media {
    box-shadow: 0 28px 62px rgba(18, 45, 27, 0.2);
}

@keyframes fincasHeroFloat {

    0%,
    100% {
        transform: rotate(12deg) translateY(0);
    }

    50% {
        transform: rotate(12deg) translateY(-12px);
    }
}

@media (max-width: 1024px) {
    .fincas-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .fincas-hero-grid,
    .fincas-journey-grid,
    .finca-story,
    .finca-story-featured {
        grid-template-columns: 1fr;
    }

    .fincas-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fincas-journey-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 1.2rem;
    }

    .fincas-journey-track::before {
        top: 24px;
        left: 12%;
        right: 12%;
    }

    .finca-story-reverse .finca-story-media,
    .finca-story-reverse .finca-story-body {
        order: initial;
    }
}

@media (max-width: 760px) {
    .fincas-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
        background-position: center center;
    }

    .fincas-hero-copy {
        font-size: 0.98rem;
    }

    .finca-story-body,
    .fincas-overview-card {
        padding: 1rem;
    }

    .fincas-overview-grid,
    .fincas-journey-track {
        grid-template-columns: 1fr;
    }

    .fincas-overview {
        margin-top: 0;
    }

    .fincas-journey-track {
        gap: 0.9rem;
    }

    .fincas-journey-track::before {
        display: none;
    }

    .fincas-journey-stop {
        padding: 0 0 1rem;
        text-align: center;
    }

    .fincas-journey-stop::before {
        position: static;
        display: block;
        margin: 0 auto 0.6rem;
        width: 22px;
        height: 22px;
        transform: none;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.95);
    }

    .fincas-journey-stop:not(:last-child)::after {
        content: '';
        display: block;
        width: 56px;
        height: 2px;
        margin: 0.9rem auto 0;
        background: linear-gradient(90deg, rgba(27, 87, 51, 0.2), rgba(240, 203, 0, 0.8), rgba(27, 87, 51, 0.2));
        border-radius: 999px;
    }

    .fincas-journey-stop span {
        margin-bottom: 0.15rem;
        font-size: 1rem;
    }

    .fincas-journey-stop p {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .finca-story-media,
    .finca-story-media img {
        min-height: 300px;
    }

    .finca-story-caption {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        inset: auto 0.9rem 0.9rem 0.9rem;
        gap: 0.65rem;
        flex-wrap: nowrap;
    }

    .finca-story-caption span:last-child {
        text-align: right;
    }

    .finca-story-facts {
        gap: 0.32rem;
    }

    .finca-story-facts li {
        width: auto;
        border-radius: 999px;
    }

    .finca-story-facts-media {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }
}

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

    .fincas-overview-card,
    .finca-story-media img,
    .finca-story.is-spotlight .finca-story-body {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}






@media (max-width: 1024px) {

    .quote-hero-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    .quote-hero {
        margin: 0;
        padding: 4rem 0;
    }

    .quote-hero-actions {
        justify-content: center;
    }

    .quote-hero-actions .button-primary,
    .quote-submit {
        width: 100%;
        min-width: 0;
    }

    .quote-hero-card,
    .quote-form-shell,
    .contact-card {
        padding: 0.95rem;
    }

    .quote-form-footer {
        align-items: stretch;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.cert-commit-page {
    position: relative;
}

.cert-commit-hero {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(203, 193, 13, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 88% 14%, rgba(47, 125, 255, 0.12) 0%, transparent 26%),
        linear-gradient(180deg, #f8fbf4 0%, #eef4e7 100%);
}

.cert-commit-hero::after {
    content: '';
    position: absolute;
    inset: auto -100px -140px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(27, 87, 51, 0.08);
    filter: blur(8px);
    pointer-events: none;
}

.cert-commit-hero-grid {
    display: flex;
    justify-content: center;
}

.cert-commit-hero-copy,
.cert-commit-hero-panel {
    position: relative;
    z-index: 1;
}

.cert-commit-hero-copy {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

.cert-commit-hero-title {
    margin: 0 0 1rem;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.8rem, 1.2rem + 1.2vw, 3rem);
    line-height: 1.08;
    font-weight: 600;
}

.cert-commit-hero-title span {
    color: var(--green-dark);
    background: linear-gradient(120deg, rgba(240, 203, 0, 0.22), rgba(158, 181, 28, 0.18));
    border-radius: 0.2rem;
    padding: 0 0.2rem;
}

.cert-commit-hero-copy-text {
    max-width: 68ch;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-soft);
}

.cert-commit-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.cert-commit-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cert-commit-ribbon span,
.commit-pillar-tag,
.cert-commit-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(27, 87, 51, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.cert-commit-hero-panel {
    padding: 1.4rem;
    border: 1px solid rgba(27, 87, 51, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 40px rgba(27, 87, 51, 0.1);
    backdrop-filter: blur(10px);
}

.cert-commit-panel-head {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.cert-commit-panel-head p {
    margin: 0;
}

.cert-commit-panel-grid,
.commit-pillars-grid,
.cert-detail-grid,
.cert-commit-overview-grid,
.commit-impact-grid,
.commit-environment-grid,
.commit-environment-notes {
    display: grid;
    gap: 1rem;
}

.cert-commit-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert-commit-panel-card,
.cert-commit-overview-card,
.commit-pillar-card,
.commit-story-card,
.commit-impact-card,
.commit-governance-card,
.commit-environment-card,
.commit-environment-note,
.cert-detail-card {
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.cert-commit-panel-card {
    padding: 1.15rem;
}

.cert-commit-panel-card strong,
.cert-commit-overview-card strong,
.commit-story-card strong,
.commit-impact-card strong,
.commit-governance-card strong,
.commit-environment-card strong,
.cert-detail-body h3,
.commit-environment-note h3,
.commit-pillar-card h3 {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.cert-commit-intro {
    padding-top: 2rem;
    background: #ffffff;
}

.cert-commit-section-head {
    max-width: 840px;
    margin-inline: auto;
    text-align: center;
}

.cert-commit-video {
    position: relative;
    overflow: hidden;
    padding-top: 4.75rem;
    padding-bottom: 2rem;
    background:
        radial-gradient(circle at 15% 18%, rgba(240, 203, 0, 0.16) 0%, transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, #1b5733 0%, #154527 100%);
}

.cert-commit-video-head {
    margin-bottom: 1.25rem;
}

.cert-commit-video-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
}

.cert-commit-video-embed {
    height: 100%;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.cert-commit-carousel-section {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
    padding-bottom: 4.75rem;
    background:
        radial-gradient(circle at 86% 76%, rgba(240, 203, 0, 0.12) 0%, transparent 22%),
        linear-gradient(180deg, #154527 0%, #1b5733 100%);
}

.cert-carousel {
    position: relative;
    border-radius: 1.2rem;
    padding: 1rem 0;
}

.cert-carousel-viewport {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    overflow: hidden;
    padding: 0.25rem 0 0.9rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cert-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.cert-carousel-card {
    flex: 0 0 clamp(250px, 28vw, 360px);
    border-radius: 1.2rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    transition: transform 0.35s ease;
}

.cert-carousel-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.cert-carousel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 1.1s ease;
}

.cert-carousel-card:hover .cert-carousel-media img {
    transform: scale(1.05);
}

.cert-commit-overview-grid {
    margin-top: 1.6rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-commit-overview-card {
    padding: 1.35rem;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cert-commit-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(27, 87, 51, 0.14);
    border-color: rgba(27, 87, 51, 0.18);
}

.cert-commit-overview-card span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--green-light);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.cert-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.8rem;
}

.cert-detail-card {
    display: grid;
    grid-template-rows: 160px 1fr;
    overflow: hidden;
}

.cert-detail-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(203, 193, 13, 0.14), transparent 48%),
        linear-gradient(180deg, #fafcf8 0%, #f0f5ea 100%);
    border-bottom: 1px solid var(--border);
}

.cert-detail-logo-wrap img {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    object-fit: contain;
}

.cert-detail-body {
    padding: 1.15rem 1.2rem 1.25rem;
}

.cert-detail-body h3 {
    margin-top: 0;
}

.commit-pillars-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.8rem;
}

.commit-pillar-card {
    padding: 1.35rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.commit-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(27, 87, 51, 0.14);
    border-color: rgba(27, 87, 51, 0.18);
}

.commit-pillar-card h3 {
    margin-top: 1rem;
}

.commit-pillar-link {
    margin-top: auto;
    padding-top: 1rem;
    color: var(--green-dark);
    font-weight: 700;
}

.commit-pillar-link::after {
    content: ' →';
}

.commit-pillar-tag {
    justify-content: center;
    padding: 0.55rem 1rem;
    border-color: rgba(27, 87, 51, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 244, 1) 100%);
    box-shadow: 0 8px 18px rgba(27, 87, 51, 0.08);
}

.commit-story-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.commit-story-list {
    margin: 1.4rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.commit-story-list li+li {
    margin-top: 0.8rem;
}

.commit-story-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commit-story-card {
    padding: 1.3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.commit-story-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green-yellow));
}

.commit-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(27, 87, 51, 0.14);
    border-color: rgba(27, 87, 51, 0.18);
}

.commit-story-card strong {
    color: var(--green-dark);
}

.commit-impact-band {
    padding: 4rem 0;
    background: var(--green-dark);
}

.commit-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.commit-impact-card {
    padding: 1.45rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.commit-impact-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--yellow);
}

.commit-impact-card strong {
    margin-bottom: 0.65rem;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
    color: var(--yellow);
}

.commit-impact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.commit-impact-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.commit-governance-metrics {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commit-governance-card {
    padding: 1.3rem;
    background: linear-gradient(180deg, #1b5733 0%, #153f26 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 32px rgba(12, 33, 20, 0.16);
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.commit-governance-card span {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}

.commit-governance-card strong {
    font-size: clamp(1.8rem, 1.2rem + 1.4vw, 2.6rem);
    color: var(--yellow);
}

.commit-governance-card p {
    color: rgba(255, 255, 255, 0.9);
}

.commit-governance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(12, 33, 20, 0.22);
    border-color: rgba(255, 255, 255, 0.16);
}

.commit-environment-grid {
    margin-top: 1.6rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commit-environment {
    background:
        radial-gradient(circle at 12% 18%, rgba(203, 193, 13, 0.14) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(47, 125, 255, 0.1) 0%, transparent 24%),
        linear-gradient(180deg, #f8fbf4 0%, #eef4e7 100%);
}

.commit-environment-card {
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.commit-environment-card::before,
.commit-environment-note::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green-yellow));
}

.commit-environment-card:hover,
.commit-environment-note:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(27, 87, 51, 0.14);
    border-color: rgba(27, 87, 51, 0.18);
}

.commit-environment-card strong {
    font-size: 1.45rem;
    color: var(--green-dark);
}

.commit-environment-notes {
    margin-top: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commit-environment-note {
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (max-width: 1024px) {

    .cert-commit-hero-grid,
    .commit-story-grid {
        grid-template-columns: 1fr;
    }

    .cert-detail-grid,
    .commit-pillars-grid,
    .commit-environment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cert-commit-overview-grid,
    .commit-impact-grid,
    .commit-environment-notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cert-commit-hero {
        padding: 5.6rem 0;
    }

    .cert-commit-video {
        padding-top: 4rem;
    }

    .cert-commit-carousel-section {
        padding-bottom: 4rem;
    }

    .cert-commit-hero-title {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem);
        max-width: 100%;
    }

    .cert-commit-hero-panel,
    .cert-commit-overview-card,
    .commit-pillar-card,
    .commit-story-card,
    .commit-impact-card,
    .commit-governance-card,
    .commit-environment-card,
    .commit-environment-note,
    .cert-detail-body {
        padding: 1rem;
    }

    .cert-commit-panel-grid,
    .cert-detail-grid,
    .commit-pillars-grid,
    .commit-story-cards,
    .commit-governance-metrics,
    .commit-environment-grid,
    .commit-environment-notes {
        grid-template-columns: 1fr;
    }

    .cert-detail-card {
        grid-template-rows: 140px 1fr;
    }

    .cert-carousel-viewport {
        gap: 0.8rem;
    }

    .cert-carousel-card {
        flex-basis: min(78vw, 320px);
    }

    .cert-commit-hero-actions .button-primary,
    .cert-commit-hero-actions .button-secondary {
        width: 100%;
        text-align: center;
    }

    .commit-story-list {
        padding-left: 1rem;
    }

    .home-divider-band {
        display: none;
    }

    .banana-value-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem;
    }

    .banana-value-grid .value-card {
        padding: 0.75rem;
    }

    .banana-value-grid .banana-value-number {
        font-size: 1.45rem;
        margin-bottom: 0.25rem;
    }

    .banana-value-grid .value-label {
        font-size: 0.78rem;
    }

    .value-icon-image {
        width: 65px;
        margin-bottom: 0.45rem;
    }

    /* Timeline Styles */
    .timeline-container {
        position: relative;
        padding: 8rem 0;
        margin: 4rem 0;
        overflow: visible;
    }

    .timeline-track {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--border) 0%, var(--green-light) 50%, var(--border) 100%);
        transform: translateY(-50%);
        z-index: 1;
        border-radius: 2px;
    }

    .timeline-items {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
        max-width: 100%;
    }

    .timeline-item {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.4s ease;
    }

    .timeline-point {
        width: 24px;
        height: 24px;
        background: var(--bg);
        border: 4px solid var(--green-dark);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 3;
        box-shadow: 0 0 0 0 rgba(27, 87, 51, 0);
    }

    .timeline-item:hover .timeline-point,
    .timeline-item.is-active .timeline-point {
        background: var(--green-dark);
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(27, 87, 51, 0.1);
    }

    .timeline-content {
        position: absolute;
        top: 50px;
        width: 240px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 1.5rem;
        border-radius: 1.2rem;
        border: 1px solid rgba(27, 87, 51, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(10px);
        z-index: 10;
    }

    /* Alternar arriba/abajo con diseño más moderno */
    .timeline-item:nth-child(even) .timeline-content {
        top: auto;
        bottom: 50px;
        transform: translateY(-20px);
    }

    .timeline-item:hover .timeline-content,
    .timeline-item.is-active .timeline-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 0;
        background: var(--green-dark);
        opacity: 0.2;
        transition: height 0.4s ease;
    }

    .timeline-item:nth-child(odd)::after {
        top: 24px;
        height: 0;
    }

    .timeline-item:nth-child(even)::after {
        bottom: 24px;
        height: 0;
    }

    .timeline-item:hover::after,
    .timeline-item.is-active::after {
        height: 26px;
    }

    .timeline-year {
        display: inline-block;
        font-weight: 900;
        color: var(--green-dark);
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .timeline-year::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 20%;
        right: 20%;
        height: 2px;
        background: var(--yellow);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .timeline-item:hover .timeline-year::after,
    .timeline-item.is-active .timeline-year::after {
        transform: scaleX(1);
    }

    .timeline-content p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-soft);
        font-weight: 500;
    }

    /* Mobile: vertical timeline */
    @media (max-width: 1024px) {
        .timeline-container {
            padding: 2rem 0;
            margin: 2rem 0;
        }

        .timeline-track {
            top: 0;
            bottom: 0;
            left: 30px;
            width: 4px;
            height: auto;
            transform: none;
            background: linear-gradient(180deg, var(--border) 0%, var(--green-light) 50%, var(--border) 100%);
        }

        .timeline-items {
            flex-direction: column;
            align-items: flex-start;
            gap: 3rem;
            padding-left: 10px;
        }

        .timeline-item {
            flex-direction: row;
            align-items: center;
            width: 100%;
            flex: none;
        }

        .timeline-item::after {
            display: none;
        }

        .timeline-point {
            margin-top: 0;
            flex-shrink: 0;
            margin-left: 10px;
        }

        .timeline-content {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none !important;
            pointer-events: all;
            width: auto;
            flex-grow: 1;
            text-align: left;
            margin-left: 2rem;
            box-shadow: none;
            border: none;
            background: transparent;
            padding: 0;
            backdrop-filter: none;
        }

        .timeline-year {
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }
    }

    @media (max-width: 760px) {
        .timeline-items {
            gap: 2rem;
        }

        .timeline-content p {
            font-size: 0.9rem;
        }
    }
}

/* --- NUEVOS ESTILOS TIMELINE --- */
.timeline-container {
    position: relative;
    padding: 8.5rem 0 7.5rem;
    margin: 4rem 0;
    overflow: visible;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--border) 0%, var(--green-light) 50%, var(--border) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    max-width: 100%;
}

.timeline-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.timeline-point {
    width: 24px;
    height: 24px;
    background: var(--bg);
    border: 4px solid var(--green-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 0 0 0 rgba(27, 87, 51, 0);
    position: relative;
    margin: 0;
}

.timeline-item:hover .timeline-point,
.timeline-item.is-active .timeline-point {
    background: var(--green-dark);
    transform: scale(1.5);
    box-shadow: 0 0 0 10px rgba(27, 87, 51, 0.1);
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-section-head.text-center {
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
}

.about-section-head.text-center .eyebrow,
.about-section-head.text-center .section-title {
    display: block;
    text-align: center;
}

.timeline-content {
    position: absolute;
    left: 50%;
    top: calc(50% + 34px);
    width: 240px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(27, 87, 51, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    top: auto;
    bottom: calc(50% + 34px);
    transform: translate(-50%, -20px);
}

.timeline-item:hover .timeline-content,
.timeline-item.is-active .timeline-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%, 0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-item {
    opacity: 0;
    transform: translateY(18px);
}

.timeline-item.is-visible {
    animation: fadeInTimelineItem 0.6s ease forwards;
}

.timeline-item.is-visible:nth-child(1) {
    animation-delay: 0.05s;
}

.timeline-item.is-visible:nth-child(2) {
    animation-delay: 0.12s;
}

.timeline-item.is-visible:nth-child(3) {
    animation-delay: 0.19s;
}

.timeline-item.is-visible:nth-child(4) {
    animation-delay: 0.26s;
}

.timeline-item.is-visible:nth-child(5) {
    animation-delay: 0.33s;
}

.timeline-item.is-visible:nth-child(6) {
    animation-delay: 0.4s;
}

.timeline-item.is-visible:nth-child(7) {
    animation-delay: 0.47s;
}

.timeline-item.is-visible:nth-child(8) {
    animation-delay: 0.54s;
}

.timeline-item.is-visible:nth-child(9) {
    animation-delay: 0.61s;
}

@keyframes fadeInTimelineItem {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 0;
    background: var(--green-dark);
    opacity: 0.2;
    transition: height 0.4s ease;
}

.timeline-item:nth-child(odd)::after {
    top: calc(50% + 14px);
    height: 0;
}

.timeline-item:nth-child(even)::after {
    bottom: calc(50% + 14px);
    height: 0;
}

.timeline-item:hover::after,
.timeline-item.is-active::after {
    height: 34px;
}

.timeline-year {
    display: inline-block;
    font-weight: 900;
    color: var(--green-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-year::after,
.timeline-item.is-active .timeline-year::after {
    transform: scaleX(1);
}

.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-soft);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .timeline-container {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .timeline-track {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 4px;
        height: auto;
        transform: none;
        background: linear-gradient(180deg, var(--border) 0%, var(--green-light) 50%, var(--border) 100%);
    }

    .timeline-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
        padding-left: 10px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-height: 0;
        flex: none;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-point {
        margin-top: 0;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .timeline-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        pointer-events: all;
        width: auto;
        flex-grow: 1;
        text-align: left;
        margin-left: 2rem;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        backdrop-filter: none;
    }

    .timeline-year {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 760px) {
    .timeline-items {
        gap: 2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* --- FIN NUEVOS ESTILOS --- */

