/* ═══════════════════════════════════════════════════════
   AMIGOS DEL PARQUE ROSS — MASTER STYLESHEET
   From scratch · Nunito + Caveat · Warm Community Vibe
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Caveat:wght@400;600;700&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
    /* Brand Colors */
    --verde-oscuro: #2A6B35;
    --verde-medio: #5A9E62;
    --verde-mint: #D4EDDA;
    --rosa-coral: #E8637A;
    --rosa-suave: #F5C2CB;
    --crema: #FDF6EE;
    --marron: #7B4F2E;
    --amarillo: #F5C842;
    --verde-muy-oscuro: #1E3A22;
    --blanco: #FFFFFF;

    /* Typography */
    --f-nunito: 'Nunito', sans-serif;
    --f-caveat: 'Caveat', cursive;

    /* Spacing */
    --max-w: 1180px;
    --section-pad: 96px 0;
    --radius-card: 28px;
    --radius-pill: 999px;

    /* Transitions */
    --tr: all 0.22s ease;
    --tr-slow: all 0.45s ease;

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(42, 107, 53, 0.12);
    --shadow-card-hover: 0 16px 48px rgba(42, 107, 53, 0.22);
    --shadow-coral: 0 8px 28px rgba(232, 99, 122, 0.35);
}

/* ─── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-nunito);
    color: var(--marron);
    background: var(--crema);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* ─── Ícono imagen en stats ────────────────────────── */
.dato-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ─── Ícono imagen en cards del sitio ───────────────── */
.card-icon-img {
    height: 1em;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: inline-block;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,
h2 {
    font-family: var(--f-nunito);
    line-height: 1.15;
}

h3 {
    font-family: var(--f-nunito);
    line-height: 1.2;
}

.caveat {
    font-family: var(--f-caveat);
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verde-medio);
    margin-bottom: 12px;
}

.section-tag--light {
    color: rgba(253, 246, 238, 0.6);
}

.lead {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 680px;
}

/* ─── GRAIN TEXTURE OVERLAY ─────────────────────────── */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--f-nunito);
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: var(--tr);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.btn-coral {
    background: var(--rosa-coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
    animation: pulse-coral 2.5s ease-in-out infinite;
}

.btn-coral:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(232, 99, 122, 0.5);
    animation: none;
}

.btn-blanco-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-pill);
}

.btn-blanco-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.04);
}

.btn-verde {
    background: var(--verde-oscuro);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.btn-verde:hover {
    background: #1f5228;
    transform: scale(1.04);
}

.btn-marron {
    background: var(--marron);
    color: #fff;
}

.btn-marron:hover {
    background: #5e3a20;
    transform: scale(1.04);
}

.btn-full {
    width: 100%;
}

@keyframes pulse-coral {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(232, 99, 122, 0.35);
    }

    50% {
        box-shadow: 0 8px 42px rgba(232, 99, 122, 0.6), 0 0 0 8px rgba(232, 99, 122, 0.1);
    }
}

/* ─── STICKERS / BADGES ──────────────────────────────── */
.sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--f-nunito);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.sticker-coral {
    background: var(--rosa-coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.sticker-amarillo {
    background: var(--amarillo);
    color: var(--marron);
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.4);
}

.sticker-float {
    position: absolute;
    transform: rotate(-5deg);
    z-index: 4;
    animation: float-sticker 4s ease-in-out infinite;
}

@keyframes float-sticker {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-8px);
    }
}

/* ─── WAVE DIVIDERS ──────────────────────────────────── */
.wave-bottom,
.wave-top {
    line-height: 0;
    overflow: hidden;
}

.wave-bottom svg,
.wave-top svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 60px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 28px;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    background: rgba(253, 246, 238, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    box-shadow: 0 2px 20px rgba(42, 107, 53, 0.1);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.nav-logo-img {
    height: 63px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
    transition: filter 0.3s;
}

.navbar.scrolled .nav-logo-img {
    filter: none;
}

/* Círculo blanco detrás del logo solo cuando navbar es transparente (top of page) */
.navbar:not(.scrolled) .nav-logo {
    position: relative;
    z-index: 1;
}

.navbar:not(.scrolled) .nav-logo::before {
    content: '';
    position: absolute;
    width: 94px;
    height: 94px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 2px), calc(-50% + 2px));
    z-index: -1;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-logo-img {
    filter: none;
    background: transparent;
    border-radius: 0;
    width: auto;
    height: 63px;
    padding: 0;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 22px;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    transition: var(--tr);
}

.navbar.scrolled .nav-links a {
    color: var(--marron);
}

.nav-links a:hover,
.navbar.scrolled .nav-links a:hover {
    color: var(--rosa-coral);
}

.nav-cta {
    background: var(--rosa-coral);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    transition: var(--tr);
}

.nav-cta:hover {
    background: #cc4f66 !important;
    color: #fff !important;
    transform: scale(1.04);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: var(--tr);
}

.navbar.scrolled .nav-toggle span {
    background: var(--marron);
}

/* Mobile menu */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--verde-oscuro);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-links.mobile-open a {
    font-size: 1.8rem;
    color: var(--crema) !important;
}

.nav-links.mobile-open .nav-cta {
    font-size: 1.5rem;
    padding: 14px 40px;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg,
            rgba(30, 60, 30, 0.45) 0%,
            rgba(42, 107, 53, 0.32) 60%,
            rgba(30, 58, 34, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--verde-mint);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(253, 246, 238, 0.88);
    margin-bottom: 36px;
    max-width: 580px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-footnote {
    font-size: 0.88rem;
    color: rgba(253, 246, 238, 0.58);
    font-style: italic;
    max-width: 520px;
    line-height: 1.5;
}

/* Decorative fauna silhouette in hero */
.hero-deco {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 1;
    opacity: 0.18;
    pointer-events: none;
    font-size: 8rem;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   DATOS / STATS STRIPE
   ═══════════════════════════════════════════════════════ */
.datos-rapidos {
    background: var(--verde-oscuro);
    padding: 72px 0 60px;
    position: relative;
}

.datos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 40px;
}

.dato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(212, 237, 218, 0.15);
}

.dato-item:last-child {
    border-right: none;
}

.dato-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dato-num {
    font-family: var(--f-nunito);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    color: var(--crema);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.dato-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212, 237, 218, 0.65);
}

.datos-apoyo {
    text-align: center;
    font-size: 1rem;
    color: rgba(253, 246, 238, 0.75);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

.confetti-burst {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   EL PARQUE
   ═══════════════════════════════════════════════════════ */
.el-parque {
    background: var(--crema);
    padding: var(--section-pad);
    position: relative;
}

.el-parque-header {
    text-align: center;
    margin-bottom: 64px;
}

.el-parque-header .caveat {
    font-size: clamp(38px, 5vw, 60px);
    color: var(--verde-oscuro);
    display: block;
    margin-bottom: 20px;
}

.el-parque-header p {
    color: var(--marron);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.08rem;
}

.parque-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.parque-card {
    border-radius: var(--radius-card);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-card);
    transition: var(--tr-slow);
    position: relative;
    overflow: hidden;
}

.parque-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.parque-card--mint {
    background: var(--verde-mint);
}

.parque-card--rosa {
    background: var(--rosa-suave);
}

.parque-card--sol {
    background: #FFF3C4;
}

.parque-card-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4px;
}

.parque-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--verde-oscuro);
}

.parque-card p {
    font-size: 0.98rem;
    color: var(--marron);
    line-height: 1.7;
}

.parque-callout {
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
}

.parque-callout .caveat {
    font-size: clamp(28px, 3.5vw, 50px);
    color: var(--rosa-coral);
    display: block;
    line-height: 1.3;
}

/* ─── Organic image frame ────────────────────────────── */
.organic-img {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 12px 40px rgba(42, 107, 53, 0.18);
}

.organic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════
   SU VALOR / ZONAS
   ═══════════════════════════════════════════════════════ */
.su-valor {
    background: var(--verde-oscuro);
    padding: var(--section-pad);
    position: relative;
}

.su-valor-header {
    margin-bottom: 56px;
}

.su-valor-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--crema);
    margin-bottom: 20px;
    max-width: 640px;
}

.su-valor-header p {
    color: rgba(253, 246, 238, 0.78);
    max-width: 680px;
    font-size: 1.05rem;
}

.zonas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.zona-card {
    background: rgba(90, 158, 98, 0.22);
    border: 1px solid rgba(212, 237, 218, 0.18);
    border-radius: var(--radius-card);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--tr-slow);
}

.zona-card:hover {
    background: rgba(90, 158, 98, 0.32);
    transform: translateY(-4px) scale(1.01);
}

.zona-card-icon {
    font-size: 2.2rem;
}

.zona-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--crema);
}

.zona-card p {
    font-size: 0.93rem;
    color: rgba(253, 246, 238, 0.72);
    line-height: 1.7;
}

.su-valor-callout {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 32px;
}

.su-valor-callout .caveat {
    font-size: clamp(32px, 4vw, 54px);
    color: var(--amarillo);
    display: block;
    line-height: 1.25;
}

.aviso-box {
    background: rgba(90, 158, 98, 0.2);
    border: 1px solid rgba(212, 237, 218, 0.2);
    border-radius: var(--radius-card);
    padding: 28px 32px;
}

.aviso-box strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amarillo);
    margin-bottom: 10px;
}

.aviso-box p {
    font-size: 0.93rem;
    color: rgba(253, 246, 238, 0.75);
    line-height: 1.7;
}

/* ─── GALERÍA CARRUSEL ─────────────────────────── */
.galeria-carousel {
    margin: 0 auto 48px;
    max-width: 860px;
    background: #ffffff;
    border: 1px solid rgba(212, 237, 218, 0.4);
    border-radius: var(--radius-card);
    padding: 24px 24px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.galeria-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.galeria-counter {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(212, 237, 218, 0.55);
    letter-spacing: 1px;
}

/* Track wrapper — clips slides */
.galeria-track-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.galeria-track {
    display: flex;
    width: 100%;
}

.galeria-slide {
    min-width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    background: transparent;
}

.galeria-slide.active {
    display: flex;
    animation: galFadeIn 0.38s ease;
}

@keyframes galFadeIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.galeria-slide.exit-left {
    animation: galFadeOutLeft 0.28s ease forwards;
}

@keyframes galFadeOutLeft {
    to {
        opacity: 0;
        transform: translateX(-18px);
    }
}

.galeria-slide img {
    display: block;
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.38));
    cursor: zoom-in;
}

/* Arrow buttons — verde on white bg */
.galeria-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--verde-oscuro);
    background: var(--verde-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(42, 107, 53, 0.25);
}

.galeria-arrow svg {
    stroke: #fff;
}

.galeria-arrow:hover {
    background: #1f5228;
    border-color: #1f5228;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(42, 107, 53, 0.4);
}

.galeria-arrow--prev {
    left: 14px;
}

.galeria-arrow--next {
    right: 14px;
}

/* Hide arrows when only 1 slide */
.galeria-arrow.hidden {
    display: none;
}

/* Dot indicators — verde on white bg */
.galeria-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    min-height: 14px;
}

.galeria-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(42, 107, 53, 0.22);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.galeria-dot.active {
    background: var(--verde-oscuro);
    transform: scale(1.35);
}

/* ─── LIGHTBOX MODAL ──────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(20, 38, 22, 0.94);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lbFadeIn 0.25s ease;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-img-wrap {
    position: relative;
    max-width: min(95vw, 1200px);
    max-height: 90vh;
    cursor: default;
    animation: lbSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbSlideIn {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-img-wrap img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.6));
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rosa-coral);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232, 99, 122, 0.5);
    transition: transform 0.18s ease, background 0.18s ease;
    z-index: 2;
    font-weight: 700;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.12) rotate(8deg);
    background: #cc4f66;
}

.lightbox-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(253, 246, 238, 0.55);
    font-family: var(--f-nunito);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════
   VISIÓN
   ═══════════════════════════════════════════════════════ */
.vision {
    background: var(--crema);
    padding: var(--section-pad);
    position: relative;
}

.vision-header {
    text-align: center;
    margin-bottom: 64px;
}

.vision-header .caveat {
    font-size: clamp(36px, 4.5vw, 58px);
    color: var(--verde-oscuro);
    display: block;
    margin-bottom: 20px;
}

.vision-header p {
    color: var(--marron);
    max-width: 660px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.vision-card {
    border-radius: var(--radius-card);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--tr-slow);
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.vision-card--mint {
    background: var(--verde-mint);
}

.vision-card--rosa {
    background: var(--rosa-suave);
}

.vision-card--sol {
    background: #FFF3C4;
}

.vision-card-icon {
    font-size: 2.8rem;
}

.vision-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--verde-oscuro);
}

.vision-card p {
    font-size: 0.95rem;
    color: var(--marron);
    line-height: 1.72;
}

.vision-callout {
    text-align: center;
    padding: 20px 0 48px;
}

.vision-callout .caveat {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--verde-oscuro);
    display: block;
    line-height: 1.3;
}

.collab-card {
    background: rgba(42, 107, 53, 0.07);
    border: 1px solid rgba(42, 107, 53, 0.14);
    border-radius: var(--radius-card);
    padding: 40px 48px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.collab-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--verde-oscuro);
    margin-bottom: 14px;
}

.collab-card p {
    color: var(--marron);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   SUMATE
   ═══════════════════════════════════════════════════════ */
.sumate {
    background: var(--verde-medio);
    padding: 16px 0 96px;
    position: relative;
    overflow: hidden;
}

.sumate-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Logo before title */
.sumate-logo {
    display: block;
    width: min(480px, 75vw);
    height: auto;
    margin: 0 auto 36px;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.28));
    animation: float-sticker 5s ease-in-out infinite;
}

.sumate-header .caveat {
    font-size: clamp(48px, 7vw, 80px);
    color: #fff;
    display: block;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sumate-header .subtitulo {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    max-width: 580px;
    margin: 0 auto 16px;
}

.sumate-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
}

.sumate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.sumate-card {
    border-radius: var(--radius-card);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--tr-slow);
}

.sumate-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: var(--shadow-card-hover);
}

.sumate-card--crema {
    background: var(--crema);
}

.sumate-card--rosa {
    background: var(--rosa-suave);
}

.sumate-card--mint {
    background: var(--verde-mint);
}

.sumate-card-icon {
    font-size: 3rem;
}

.sumate-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--verde-oscuro);
}

.sumate-card p {
    font-size: 0.93rem;
    color: var(--marron);
    line-height: 1.7;
    flex: 1;
}

.sumate-callout {
    text-align: center;
}

.sumate-callout .caveat {
    font-size: clamp(28px, 3.5vw, 50px);
    color: #fff;
    display: block;
    line-height: 1.3;
}

/* Floating deco leaves in sumate */
.sumate-deco {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.sumate-deco-1 {
    top: 10%;
    left: -2%;
    transform: rotate(-20deg);
}

.sumate-deco-2 {
    bottom: 10%;
    right: -2%;
    transform: rotate(15deg);
}

.sumate>* {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   FORMULARIO
   ═══════════════════════════════════════════════════════ */
.contacto {
    background: var(--verde-mint);
    padding: var(--section-pad);
    position: relative;
}

.contacto-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contacto-header {
    margin-bottom: 48px;
}

.contacto-header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--verde-oscuro);
    margin-bottom: 14px;
}

.contacto-header p {
    color: var(--marron);
    font-size: 1.04rem;
    max-width: 600px;
}

.form-wrap {
    background: var(--crema);
    border-radius: var(--radius-card);
    padding: 48px 44px;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

input,
textarea,
select {
    width: 100%;
    background: #fff;
    border: 2px solid rgba(42, 107, 53, 0.15);
    border-radius: 16px;
    color: var(--marron);
    font-family: var(--f-nunito);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 13px 18px;
    outline: none;
    transition: var(--tr);
}

input::placeholder,
textarea::placeholder {
    color: rgba(123, 79, 46, 0.4);
    font-weight: 400;
}

input:focus,
textarea:focus {
    border-color: var(--verde-medio);
    box-shadow: 0 0 0 4px rgba(90, 158, 98, 0.12);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

/* Pill chips */
.form-label-small {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    display: block;
    margin-bottom: 12px;
}

.pill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.chip-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 2px solid rgba(42, 107, 53, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--marron);
    cursor: pointer;
    transition: var(--tr);
    background: #fff;
    user-select: none;
}

.chip-label input {
    display: none;
}

.chip-label:hover {
    border-color: var(--verde-medio);
    background: var(--verde-mint);
    color: var(--verde-oscuro);
}

.chip-label:has(input:checked) {
    border-color: var(--verde-oscuro);
    background: var(--verde-mint);
    color: var(--verde-oscuro);
}

/* Check pill */
.check-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--marron);
    cursor: pointer;
    margin-bottom: 24px;
    line-height: 1.5;
}

.check-label input {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: var(--verde-oscuro);
    flex-shrink: 0;
    margin-top: 2px;
    border: 2px solid rgba(42, 107, 53, 0.3);
}

/* Form success */
.form-success-msg {
    display: none;
    padding: 24px 28px;
    background: var(--verde-mint);
    border-radius: 20px;
    margin-top: 20px;
}

.form-success-msg .caveat {
    font-size: 1.6rem;
    color: var(--verde-oscuro);
    display: block;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   CIERRE EMOCIONAL
   ═══════════════════════════════════════════════════════ */
.cierre {
    position: relative;
    background: var(--verde-muy-oscuro);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cierre-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.cierre-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 28px;
}

.cierre .caveat {
    font-size: clamp(48px, 7vw, 82px);
    color: var(--crema);
    display: block;
    margin-bottom: 28px;
    line-height: 1.1;
}

.cierre p {
    font-size: 1.1rem;
    color: rgba(253, 246, 238, 0.82);
    line-height: 1.78;
    margin-bottom: 40px;
    font-weight: 400;
}

.cierre-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tree silhouette dec */
.cierre-trees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 5rem;
    text-align: center;
    letter-spacing: -10px;
    line-height: 0.6;
    opacity: 0.08;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--verde-muy-oscuro);
    padding: 64px 0 36px;
    position: relative;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212, 237, 218, 0.1);
    margin-bottom: 28px;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}

.footer-logo-circle {
    background: white;
    border-radius: 50%;
    width: 80px !important;
    height: 80px !important;
    padding: 8px;
    object-fit: contain !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(253, 246, 238, 0.55);
    font-weight: 600;
    font-style: italic;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h5 {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(212, 237, 218, 0.5);
    margin-bottom: 6px;
}

.footer-nav a {
    font-size: 0.93rem;
    font-weight: 600;
    color: rgba(253, 246, 238, 0.65);
    transition: var(--tr);
}

.footer-nav a:hover {
    color: var(--rosa-suave);
}

.footer-contact h5 {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(212, 237, 218, 0.5);
    margin-bottom: 14px;
}

.footer-contact a {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    color: rgba(253, 246, 238, 0.65);
    margin-bottom: 8px;
    transition: var(--tr);
}

.footer-contact a:hover {
    color: var(--rosa-suave);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(253, 246, 238, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(253, 246, 238, 0.6);
    transition: var(--tr);
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--rosa-suave);
    color: var(--rosa-suave);
    background: rgba(245, 194, 203, 0.1);
}

.footer-legal {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(253, 246, 238, 0.32);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   TYPEWRITER EFFECT
   ═══════════════════════════════════════════════════════ */
.typewriter {
    display: inline;
    border-right: 3px solid transparent;
    white-space: pre-wrap;
}

.typewriter.typing {
    border-right-color: currentColor;
}

@keyframes blink-caret {
    50% {
        border-right-color: transparent;
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {

    .parque-cards,
    .vision-cards,
    .sumate-cards {
        grid-template-columns: 1fr;
    }

    .datos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dato-item:nth-child(3) {
        border-right: none;
    }

    .zonas-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    :root {
        --section-pad: 72px 0;
    }

    .navbar {
        padding: 14px 18px;
    }

    .navbar.scrolled {
        padding: 10px 18px;
    }

    .nav-links:not(.mobile-open) {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta:not(.mobile-open .nav-cta) {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .datos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dato-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 237, 218, 0.15);
    }

    .dato-item:last-child {
        border-bottom: none;
    }

    .form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .collab-card {
        padding: 28px 24px;
    }

    .cierre-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-deco {
        font-size: 5rem;
        opacity: 0.12;
    }

    .sumate-header .caveat {
        font-size: clamp(40px, 10vw, 64px);
    }

    .cierre .caveat {
        font-size: clamp(40px, 10vw, 64px);
    }
}

/* ═══════════════════════════════════════════════════════
   JORNADA DE VOLUNTARIADO
   ═══════════════════════════════════════════════════════ */
.jornada {
    background: var(--verde-muy-oscuro);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.jornada-deco-1,
.jornada-deco-2 {
    position: absolute;
    font-size: 6rem;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.jornada-deco-1 {
    top: 8%;
    left: -2%;
    transform: rotate(-15deg);
    animation: float-slow 7s ease-in-out infinite;
}

.jornada-deco-2 {
    bottom: 10%;
    right: 3%;
    font-size: 4.5rem;
    animation: float-slow 9s ease-in-out infinite reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-18px) rotate(-10deg);
    }
}

.jornada-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.jornada-header h2 {
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 900;
    color: var(--crema);
    line-height: 1.15;
    margin-top: 8px;
}

.jornada-h2-accent {
    color: var(--amarillo);
}

.jornada-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ─── Afiche ─────────────────────────────────────── */
.jornada-poster-wrap {
    display: flex;
    justify-content: center;
}

.jornada-poster {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jornada-poster:hover {
    transform: translateY(-8px) rotate(0.5deg) scale(1.02);
}

.jornada-poster-img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 0 0 4px rgba(212, 237, 218, 0.15),
        0 0 0 8px rgba(212, 237, 218, 0.06);
    display: block;
}

.jornada-poster-badge {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amarillo);
    color: var(--marron);
    font-family: var(--f-nunito);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.45);
    letter-spacing: 0.3px;
}

/* ─── Info ───────────────────────────────────────── */
.jornada-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.jornada-intro {
    font-size: 1.12rem;
    color: rgba(253, 246, 238, 0.88);
    line-height: 1.75;
}

.jornada-intro strong {
    color: var(--verde-mint);
}

/* ─── Actividades ────────────────────────────────── */
.jornada-activities {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 237, 218, 0.12);
    border-radius: 20px;
    padding: 24px;
}

.jornada-activity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ja-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.jornada-activity div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jornada-activity strong {
    color: var(--crema);
    font-size: 1rem;
    font-weight: 800;
}

.jornada-activity span {
    color: rgba(253, 246, 238, 0.6);
    font-size: 0.88rem;
}

/* ─── Horario ────────────────────────────────────── */
.jornada-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jornada-schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(90, 158, 98, 0.18);
    border: 1px solid rgba(212, 237, 218, 0.12);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--crema);
    font-size: 0.96rem;
    transition: background 0.2s;
}

.jornada-schedule-item:hover {
    background: rgba(90, 158, 98, 0.28);
}

.js-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.jornada-schedule-item strong {
    color: var(--verde-mint);
    margin-right: 4px;
}

/* ─── Nota e info extra ──────────────────────────── */
.jornada-nota {
    font-size: 0.96rem;
    color: rgba(253, 246, 238, 0.7);
    line-height: 1.7;
    border-left: 3px solid var(--verde-medio);
    padding-left: 16px;
}

.jornada-nota strong {
    color: var(--crema);
}

/* ─── Botón CTA especial ─────────────────────────── */
.btn-jornada {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-nunito);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--rosa-coral) 0%, #c8415a 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-coral), 0 0 0 0 rgba(232, 99, 122, 0);
    animation: pulse-jornada 2.8s ease-in-out infinite;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    align-self: flex-start;
}

.btn-jornada:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 42px rgba(232, 99, 122, 0.55);
    animation: none;
}

@keyframes pulse-jornada {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(232, 99, 122, 0.4);
    }

    50% {
        box-shadow: 0 8px 42px rgba(232, 99, 122, 0.65), 0 0 0 10px rgba(232, 99, 122, 0.1);
    }
}

.jornada-cuota-nota {
    font-size: 0.8rem;
    color: rgba(253, 246, 238, 0.45);
    line-height: 1.5;
    font-style: italic;
    margin-top: -8px;
}

/* ─── Sticker flotante ───────────────────────────── */
.jornada-sticker {
    position: absolute;
    bottom: 48px;
    right: 5%;
    transform: rotate(8deg);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
    z-index: 2;
    animation: float-sticker 5s ease-in-out infinite;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .jornada-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .jornada-poster-img {
        max-width: 360px;
        margin: 0 auto;
    }

    .btn-jornada {
        align-self: stretch;
        text-align: center;
    }

    .jornada-sticker {
        display: none;
    }
}

@media (max-width: 480px) {
    .jornada-poster-img {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   ORGANIZACIONES AMIGAS
   ═══════════════════════════════════════════════════════ */
.orgs-amigas {
    background: var(--verde-oscuro);
    padding: 80px 0 72px;
    position: relative;
}

.orgs-header {
    text-align: center;
    margin-bottom: 48px;
}

.orgs-header .caveat {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--crema);
    display: block;
    margin-bottom: 16px;
}

.orgs-header p {
    color: rgba(253, 246, 238, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.orgs-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.orgs-track-wrap {
    overflow: hidden;
    flex: 1;
}

.orgs-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
}

.org-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.org-logo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.org-logo-wrap:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.org-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.org-name {
    font-family: var(--f-nunito);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(253, 246, 238, 0.75);
    line-height: 1.3;
    max-width: 140px;
}

/* CTA card */
.org-logo-cta {
    background: transparent;
    border: 3px dashed rgba(212, 237, 218, 0.4);
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.org-logo-cta:hover {
    border-color: var(--rosa-coral);
    background: rgba(232, 99, 122, 0.08);
}

.org-cta-plus {
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(212, 237, 218, 0.6);
    line-height: 1;
}

.org-cta-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(212, 237, 218, 0.5);
}

.org-name--cta {
    color: var(--rosa-coral);
    font-weight: 800;
}

/* Flechas */
.orgs-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(212, 237, 218, 0.3);
    background: rgba(42, 107, 53, 0.4);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.orgs-arrow:hover {
    background: var(--rosa-coral);
    border-color: var(--rosa-coral);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .org-card {
        flex: 0 0 130px;
    }

    .org-logo-wrap {
        width: 90px;
        height: 90px;
        padding: 12px;
    }

    .orgs-arrow {
        width: 36px;
        height: 36px;
    }
}