/* ================= VARIABLES ================= */
:root{
    --verde-principal:#1f4d2e;
    --verde-secundario:#71c98a;
    --verde-hover:#57b973;
    --verde-oscuro:#163822;
    --header-footer-bg:#0b1c10;
    --fondo:#f7f5ef;
    --fondo-suave:#edf4ee;
    --blanco:#ffffff;
    --texto:#2f3a33;
    --texto-suave:#5f6b63;
    --naranja-acento:#d94f15;
    --naranja-hover:#b84010;
    --sombra:0 12px 30px rgba(0,0,0,0.10);
    --sombra-hover:0 18px 40px rgba(0,0,0,0.16);
}

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

ul, ol { padding: 0; margin: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6 { margin-bottom: 0; }
a { text-decoration: none; color: inherit; }

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--fondo);
    color:var(--texto);
    line-height:1.6;
    padding-top:90px;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

h1, h2, h3, p, span, h4, a, small, button {
    font-family: 'Fraunces', serif;
}

.container{
    width:min(1200px, 90%);
    margin:auto;
}

/* ================= HERO ================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:0 90px;
    background:
        linear-gradient(rgba(11, 28, 16, 0.25), rgba(11, 28, 16, 0.55)),
        url('../../img/comunidad/portadaPesca.png') center/cover no-repeat;
    color:white;
    position:relative;
}

.hero-text{
    max-width:760px;
    animation:fadeUp 1s ease;
}

.hero-tag{
    display:inline-block;
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
    margin-bottom:18px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(10, 20, 12, 0.42);
    border:1px solid rgba(113, 201, 138, 0.45);
    backdrop-filter:blur(4px);
    text-shadow:0 1px 3px rgba(0,0,0,0.8);
}

.hero h1{
    font-size:76px;
    line-height:1.02;
    margin-bottom:22px;
    font-weight:800;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.65),
        0 10px 30px rgba(0,0,0,0.45);
    letter-spacing:-1px;
}

.hero h1 span{
    color: var(--naranja-acento);
}

.hero-description span{
    color:var(--naranja-acento);
}

.hero-tag,
.hero-tag span{
    color:#ffffff;
}

.hero-description{
    max-width:680px;
    font-size:21px;
    color:#f5f5f5;
    margin-bottom:28px;
    font-weight:400;
    text-shadow:
        0 3px 10px rgba(0,0,0,0.70),
        0 6px 18px rgba(0,0,0,0.35);
}

.location {
    color: #53B53C;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.location i {
    margin-right: 8px;
    color: var(--naranja-acento);
}

/* ================= SECCIONES ================= */
.section{
    padding:90px 0;
}

.section.alt{
    background:linear-gradient(180deg, #edf4ee 0%, #f7f5ef 100%);
}

.section-heading{
    max-width:820px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading.left{
    max-width:900px;
    margin:0 0 40px;
    text-align:left;
}

.section-label{
    display:inline-block;
    color:#53B53C;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.2px;
    margin-bottom:12px;
}

.section-label.center{
    display:block;
    text-align:center;
}

.section h2{
    font-size:44px;
    margin-bottom:14px;
    color:#163320;
    font-weight:800;
    line-height:1.2;
}

.section h2::after{
    content:"";
    display:block;
    width:100%;
    max-width:800px;
    height:4px;
    margin:16px auto 0;
    border-radius:999px;
    background:linear-gradient(90deg, #71c98a, #1f4d2e);
}

.section-heading.left h2::after{
    margin:16px 0 0;
}

.section-subtitle{
    max-width:760px;
    margin:0 auto;
    color:black;
    font-size:17px;
    line-height:1.8;
}

.section-heading.left .section-subtitle{
    margin:0;
}

.section h3{
    margin-bottom:16px;
    color:black;
    font-size:26px;
    font-weight:700;
}

.list{
    padding-left:22px;
    list-style:disc;
}

.list li{
    margin-bottom:12px;
    color:black;
    line-height:1.8;
}

/* ================= INTRO ================= */
.intro-section{
    background:linear-gradient(180deg, #edf4ee 0%, #f7f5ef 100%);
    padding-top:60px;
}

/* ================= CONTENT GRID ================= */
.content-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:30px;
}

.content-card{
    background:var(--blanco);
    padding:35px 30px;
    border-radius:22px;
    box-shadow:var(--sombra);
    transition:0.35s ease;
    border:1px solid rgba(73, 104, 79, 0.08);
}

.content-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--sombra-hover);
}

.content-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #edf5ea 0%, #dce9d9 100%);
    margin-bottom:20px;
}

.content-icon i{
    font-size:28px;
    color:#163320;
}

.content-card p{
    color:black;
    font-size:16px;
    line-height:1.85;
}

/* ================= INFO BOXES ================= */
.two-column-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
}

.info-box,
.text-box{
    background:var(--blanco);
    padding:34px 30px;
    border-radius:22px;
    box-shadow:var(--sombra);
    border:1px solid rgba(73, 104, 79, 0.08);
}

.text-box{
    background:linear-gradient(135deg, #f8fcf8 0%, #edf4ee 100%);
    border-left:6px solid #163320;
}

.text-box p{
    color:black;
    margin-bottom:18px;
    line-height:1.9;
}

.info-box h3{
    margin-bottom:18px;
}

.costos-note{
    margin-top:18px;
    padding-top:16px;
    border-top:1px dashed rgba(73, 104, 79, 0.25);
    color:var(--texto-suave, #3A4D3C);
    font-size:14px;
    font-style:italic;
}

/* ================= IMPORTANT NOTE ================= */
.important-note{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin:0 0 24px;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(113,201,138,0.10);
}

.important-note i{
    color:#163320;
    font-size:20px;
    margin-top:3px;
}

.important-note p{
    margin:0;
    color:black;
    font-weight:500;
}

/* ================= ESPECIES ================= */
.especies-section{
    background:var(--blanco);
}

.grid-full{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.card{
    background:var(--blanco);
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--sombra);
    transition:all .35s ease;
    border:1px solid rgba(73,104,79,0.08);
    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:var(--sombra-hover);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-bottom:4px solid var(--naranja-acento);
}

.card-body{
    padding:24px;
    display:flex;
    flex-direction:column;
    gap: 8px;
}

.card-body h3 {
    font-size: 22px;
    color: #163320;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.card-body p {
    color: black;
    margin: 0;
    line-height: 1.7;
}

.card-body .badge {
    display: inline-block;
    background: rgba(217, 79, 21, 0.10);
    color: #0b1c10;
    border: 1px solid rgba(217, 79, 21, 0.30);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin: 0 8px 8px 0;
}

/* ================= PAGINACIÓN DE ESPECIES ================= */
.species-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(31, 77, 46, 0.18);
    background: rgba(31, 77, 46, 0.06);
    color: #1f4d2e;
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.page-btn:hover:not(:disabled) {
    background: rgba(217, 79, 21, 0.10);
    border-color: var(--naranja-acento);
    color: var(--naranja-acento);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 79, 21, 0.18);
}

.page-btn.active {
    background: #163822;
    color: white;
    border-color: #163822;
    box-shadow: 0 4px 14px rgba(22, 56, 34, 0.38);
    pointer-events: none;
}

.page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.page-btn.prev-btn,
.page-btn.next-btn {
    background: transparent;
    border: 2px solid rgba(31, 77, 46, 0.22);
    color: #1f4d2e;
}

.species-pagination-info {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--texto-suave);
    font-family: 'Fraunces', serif;
    letter-spacing: 0.3px;
}

/* ================= CIERRE ================= */
.closing-section{
    background:linear-gradient(180deg, #edf4ee 0%, #f7f5ef 100%);
    padding:90px 0;
}

.closing-content{
    max-width:860px;
    text-align:center;
}

.closing-tag{
    color:#163320;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.3px;
    margin-bottom:18px;
}

.closing-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:18px;
    color:#163320;
    font-weight:800;
}

.closing-content p{
    font-size:18px;
    color:#53B53C;
    max-width:720px;
    margin:auto;
    line-height:1.8;
}
.closing-content p span{
    font-size:18px;
    color:#163320;
    max-width:720px;
    margin:auto;
    line-height:1.8;
}

/* ================= FAB ================= */
.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    background: rgba(20, 40, 20, 0.95);
    border: 1.5px solid rgba(217, 79, 21, 0.8);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(217, 79, 21, 0.15);
    transition: all 0.3s ease;
}

.fab-main:hover {
    background: rgba(30, 55, 30, 0.98);
    box-shadow: 0 0 25px rgba(217, 79, 21, 0.3);
    transform: translateY(-2px);
}

.fab-main i {
    transition: 0.3s ease;
}

.fab-container.open .fab-main i {
    transform: rotate(45deg);
}

.fab-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.fab-container.open .fab-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-option {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

.fab-option:hover {
    transform: scale(1.12);
}

.fab-option.whatsapp {
    background: white;
    color: #25d366;
    border: 2px solid #25d366;
}

.fab-option.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.fab-option.map {
    background: white;
    color: var(--naranja-acento);
    border: 2px solid var(--naranja-acento);
}

.fab-option.map:hover {
    background: var(--naranja-acento);
    color: #ffffff;
}

.fab-option.help {
    background: white;
    color: var(--verde-oscuro);
    border: 2px solid var(--verde-oscuro);
}

.fab-option.help:hover {
    background: var(--verde-oscuro);
    color: #ffffff;
}

/* ================= MODAL AYUDA ================= */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 16, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 2000;
}

.help-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.help-content {
    background: white;
    width: min(600px, 90%);
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(11, 28, 16, 0.32);
    border-top: 4px solid var(--naranja-acento);
    animation: fadeUp 0.4s ease;
}

.help-content h2 {
    margin-bottom: 20px;
    color: var(--verde-oscuro);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--texto-suave);
    transition: 0.2s;
}

.close-modal:hover {
    color: var(--naranja-acento);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--verde-oscuro);
}

.faq-item p {
    font-size: 14px;
    color: var(--texto-suave);
}

/* ================= PESTAÑA IA VERTICAL ================= */
.chat-ia-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1500;
}

.chat-ia-toggle {
    width: 22px;
    height: 380px;
    border: 2px solid rgba(217, 79, 21, 0.95);
    border-right: none;
    border-radius: 18px 0 0 18px;
    background: rgba(20, 40, 20, 0.95);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: -5px 0 14px rgba(0,0,0,0.55), 0 0 20px rgba(217, 79, 21, 0.22);
}

.chat-ia-toggle:hover {
    background: rgba(30, 55, 30, 0.98);
    box-shadow: 0 0 25px rgba(217, 79, 21, 0.3);
}

.chat-ia-toggle i {
    font-size: 13px;
    transition: 0.3s ease;
}

.chat-ia-link {
    width: 0;
    height: 500px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 40, 20, 0.95);
    color: white;
    border-top: 1.5px solid rgba(217, 79, 21, 0.8);
    border-left: 1.5px solid rgba(217, 79, 21, 0.8);
    border-bottom: 1.5px solid rgba(217, 79, 21, 0.8);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    box-shadow: 0 0 18px rgba(217, 79, 21, 0.15);
    transition: all 0.3s ease;
}

.chat-ia-link:hover {
    background: rgba(30, 55, 30, 0.98);
    color: white;
}

.chat-ia-link span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.chat-ia-tab.open .chat-ia-link {
    width: 28px;
    opacity: 1;
    pointer-events: auto;
}

.chat-ia-tab.open .chat-ia-toggle {
    background: var(--naranja-acento);
}

.chat-ia-tab.open .chat-ia-toggle i {
    transform: rotate(180deg);
}

/* CRÉDITO DE FOTO */
.photo-credit {
    display: block;
    font-size: 12px;
    color: #6b746e;
    padding: 12px 24px 0;
    font-style: italic;
    min-height: 18px;
}

/* ================= ANIMACIONES ================= */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= NAVBAR MÓVIL ================= */
    /* Ocultar FAB cuando menú abierto */
    body:has(#menuNav.show) .fab-container {
        display: none !important;
    }

/* ================= RESPONSIVE ================= */
@media (max-width:1100px){
    body{
        padding-top:0;
    }

    .hero{
        padding:90px 40px 0;
    }

    .hero h1{
        font-size:58px;
    }
}

@media (max-width:1200px){
    .grid-full{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:900px){
    .grid-full{
        grid-template-columns:repeat(2, 1fr);
    }

    .hero h1{
        font-size:52px;
    }

    .hero{
        min-height:100dvh;
        padding:100px 28px 60px;
        text-align:center;
        justify-content:center;
        background-position: 75% 25%;
    }

    .hero-text{
        max-width:100%;
    }

    .hero-description{
        margin-inline:auto;
    }

    body{
        padding-top:0;
    }

    .section{
        padding:75px 0;
    }

    .section h2,
    .closing-content h2{
        font-size:34px;
    }

    .section-subtitle,
    .closing-content p{
        font-size:16px;
    }

    .content-grid,
    .two-column-boxes{
        grid-template-columns:1fr;
    }
}

@media (max-width:600px){
    .grid-full{
        grid-template-columns:1fr;
    }

    body{
        padding-top:0;
    }

    .hero{
        min-height:100dvh;
        padding:90px 28px 32px;
        background-position: 75% 25%;
    }

    .hero h1{
        font-size:40px;
    }

    .hero-description{
        font-size:18px;
    }

    .section h2,
    .closing-content h2{
        font-size:30px;
    }

    .section-label,
    .closing-tag,
    .hero-tag{
        font-size:13px;
    }

    .content-card,
    .info-box,
    .text-box{
        padding:26px 22px;
    }

    .card img{
        height:220px;
    }

    .card-body{
        padding:20px;
    }

    .card-body h3{
        font-size:20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 46px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .section h2,
    .closing-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 390px) {
    .hero {
        padding: 80px 24px 30px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section h2,
    .closing-content h2 {
        font-size: 22px;
    }

    .section-subtitle,
    .closing-content p {
        font-size: 15px;
    }
}

@media (max-width: 344px) {
    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 11px;
    }

    .section h2,
    .closing-content h2 {
        font-size: 20px;
    }

    .card-body h3 {
        font-size: 18px;
    }
}

/* ── Nest Hub (1024×600) y pantallas cortas ── */
@media (max-height: 700px) and (min-width: 900px) {
    .hero {
        min-height: 100dvh;
        padding: 90px 40px 30px;
    }

    .hero h1 {
        font-size: 52px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .hero-tag {
        margin-bottom: 10px;
    }
}

/* ============================================================
   EFECTOS PRO
   ============================================================ */

/* ── Keyframes ── */
@keyframes iconGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(83,181,60,0); }
    50%      { box-shadow: 0 0 0 12px rgba(83,181,60,0.14); }
}

@keyframes shimmerLine {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

@keyframes gradientFlow {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

@keyframes badgePop {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.08); }
}

@keyframes heroPulse {
    0%,100% { opacity: 0.55; transform: scale(1); }
    50%     { opacity: 0.85; transform: scale(1.04); }
}

/* ── Hero: orbe animado de fondo + glow en "Caño Negro" ── */
.hero::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,79,21,0.14), transparent 70%);
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
}

.hero h1 span {
    text-shadow: none;
}

/* ── Content icon: pulso verde continuo ── */
.content-icon {
    animation: iconGlow 3.5s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.content-card:hover .content-icon {
    transform: scale(1.12) rotate(-6deg);
    background: linear-gradient(135deg, rgba(83,181,60,0.18), rgba(31,77,46,0.10));
}

/* ── Section h2::after: línea animada ── */
.section h2::after {
    background: linear-gradient(90deg, #71c98a, #53B53C, #1f4d2e, #53B53C, #71c98a);
    background-size: 200% auto;
    animation: shimmerLine 4s linear infinite;
}

/* ── Content cards: glow verde en hover ── */
.content-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 52px rgba(83,181,60,0.18), 0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(83,181,60,0.28);
}

/* ── Species cards: zoom en imagen + glow verde ── */
.card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.card img {
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(16,114,46,0.22), 0 8px 24px rgba(0,0,0,0.10);
}

/* ── Info y text boxes: lift en hover ── */
.info-box,
.text-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover,
.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(83,181,60,0.14), 0 6px 18px rgba(0,0,0,0.08);
}

/* ── Badges: pop en hover ── */
.badge {
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: default;
}

.badge:hover {
    animation: badgePop 0.4s ease;
    background: rgba(83,181,60,0.25);
}

/* ── Closing section: fondo gradiente animado ── */
.closing-section {
    background: linear-gradient(135deg, #edf4ee, #f0f7ef, #e4f0e6, #f7f5ef);
    background-size: 300% 300%;
    animation: gradientFlow 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.closing-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83,181,60,0.10), transparent 70%);
    left: -80px;
    bottom: -80px;
    animation: float 9s ease-in-out infinite;
    pointer-events: none;
}

.closing-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,79,21,0.08), transparent 70%);
    right: -60px;
    top: -60px;
    animation: float 11s ease-in-out infinite reverse;
    pointer-events: none;
}

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

/* ── Paginación: glow en botón activo ── */
.page-btn.active {
    box-shadow: 0 4px 18px rgba(22,56,34,0.40), 0 0 0 3px rgba(83,181,60,0.18);
}