/* ============================================================
   CIA de Rodeios Alterosa — site público
   Estética: dark, tipografia display gigante, acento quente
   ============================================================ */

/* ---------- Fontes self-hosted ---------- */
@font-face {
    font-family: 'Anton';
    src: url('../fonts/anton.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/archivo-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/archivo-bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
    --bg: #0b0908;
    --bg-2: #14100d;
    --panel: #1a1512;
    --line: #2c241d;
    --tx: #f5f0ea;
    --mut: #a89d90;
    --acc: #c6a13b;
    --acc-2: #e4c464;
    --acc-tx: #14100d;
    --display: 'Anton', Impact, sans-serif;
    --body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --pad: clamp(1.25rem, 5vw, 5rem);
    --radius: 14px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--tx);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

::selection { background: var(--acc); color: var(--acc-tx); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--acc); color: var(--acc-tx); }
.btn--primary:hover { background: #d8b64e; }
.btn--ghost { background: transparent; color: var(--tx); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc-2); }
.btn--icon { background: transparent; color: var(--mut); border-color: var(--line); }
.btn--icon:hover { color: var(--tx); border-color: var(--acc); }

/* ---------- Topbar ---------- */
.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem var(--pad);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.topbar.is-scrolled {
    background: rgba(11, 9, 8, .88);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding-top: .55rem;
    padding-bottom: .55rem;
}
.topbar__logo img { height: 52px; width: auto; transition: height .3s ease; }
.topbar.is-scrolled .topbar__logo img { height: 42px; }
.topbar__nav { display: flex; align-items: center; gap: 1.6rem; }
.topbar__nav a {
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mut);
    transition: color .2s;
    position: relative;
}
.topbar__nav a:hover, .topbar__nav a.is-active { color: var(--tx); }
.topbar__nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--acc);
}
.topbar__backstage {
    border: 1px solid var(--line);
    padding: .45rem 1rem !important;
    border-radius: 999px;
}
.topbar__backstage:hover { border-color: var(--acc); }
.topbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 130;
}
.topbar__burger span {
    width: 26px; height: 2px;
    background: var(--tx);
    transition: transform .3s ease, opacity .3s ease;
}
body.menu-open .topbar__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .topbar__burger span:nth-child(2) { opacity: 0; }
body.menu-open .topbar__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(11, 9, 8, .97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: .4rem; text-align: center; }
.mobile-menu__nav a {
    font-family: var(--display);
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--tx);
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .4s ease var(--d, 0ms), transform .4s ease var(--d, 0ms), color .2s;
}
body.menu-open .mobile-menu__nav a { opacity: 1; transform: none; }
.mobile-menu__nav a:hover, .mobile-menu__nav a.is-active { color: var(--acc); }
.mobile-menu__backstage { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; color: var(--mut) !important; margin-top: 1.4rem; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: var(--pad);
    padding-bottom: clamp(4rem, 10vh, 7rem);
    overflow: hidden;
}
.hero__bg, .hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__bg img { animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,9,8,.55) 0%, rgba(11,9,8,.15) 40%, rgba(11,9,8,.92) 100%),
        radial-gradient(ellipse at 20% 90%, rgba(198,161,59,.26), transparent 55%);
}
.hero__content { position: relative; max-width: 1100px; }
.hero__kicker {
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: .8rem;
    font-weight: 700;
    color: var(--acc-2);
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--display);
    font-size: clamp(3.2rem, 11vw, 9rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin-bottom: 1.4rem;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span { display: block; animation: lineUp .9s cubic-bezier(.2,.7,.2,1) both .15s; }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: none; } }
.hero__subtitle { max-width: 560px; color: var(--mut); font-size: 1.08rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
    position: absolute;
    right: var(--pad);
    bottom: 2rem;
    width: 26px; height: 42px;
    border: 2px solid rgba(245,240,234,.4);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll span {
    width: 4px; height: 8px;
    background: var(--acc);
    border-radius: 2px;
    animation: scrollHint 1.6s ease infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--bg-2);
    padding: 1rem 0;
}
.marquee__track {
    display: flex;
    gap: 2.4rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee__track span {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: .05em;
    color: var(--tx);
    white-space: nowrap;
}
.marquee__track em { color: var(--acc); font-style: normal; font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) var(--pad); }
.section--narrow { max-width: 900px; margin-inline: auto; }
.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.section__kicker {
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--acc);
    margin-bottom: .8rem;
}
.section__title {
    font-family: var(--display);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: .98;
    text-transform: uppercase;
}
.section__link {
    color: var(--mut);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .05em;
    transition: color .2s;
    white-space: nowrap;
}
.section__link:hover { color: var(--acc-2); }
.section__empty { color: var(--mut); font-size: 1.05rem; }
.lead { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.6; color: var(--tx); max-width: 900px; }
.lead strong { color: var(--acc-2); }

/* ---------- Split (texto + imagem) ---------- */
.section--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.section--reverse .split__media { order: 2; }
.split__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}
.split__text p { color: var(--mut); margin-bottom: 1.1rem; }
.split__text p strong { color: var(--tx); }
.split__text .section__title { margin-bottom: 1.4rem; }
.split__text .btn { margin-top: .6rem; }
.checklist { list-style: none; margin: 0 0 1.2rem; }
.checklist li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--mut);
    margin-bottom: .7rem;
}
.checklist li::before { content: '✔'; position: absolute; left: 0; color: var(--acc); font-weight: 700; }
.checklist strong { color: var(--tx); }

/* ---------- Cards genéricos ---------- */
.cards { display: grid; gap: 1.6rem; }
.cards--events { grid-template-columns: repeat(3, 1fr); }
.cards--animals { grid-template-columns: repeat(4, 1fr); }

.event-card {
    display: block;
    text-decoration: none;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s;
}
.event-card:hover { transform: translateY(-6px); border-color: var(--acc); }
.event-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .event-card__img img { transform: scale(1.06); }
.event-card__date {
    position: absolute;
    left: 1rem; bottom: 1rem;
    background: var(--acc);
    color: var(--acc-tx);
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .8rem;
    border-radius: 999px;
}
.event-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.event-card__body h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: .3rem; }
.event-card__body p { color: var(--mut); font-size: .9rem; }

.animal-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
}
.animal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.animal-card:hover img { transform: scale(1.07); }
.animal-card__info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.2rem 1.2rem 1.1rem;
    background: linear-gradient(transparent, rgba(11,9,8,.92));
}
.animal-card__info h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: .03em; }
.animal-card__info p { color: var(--acc-2); font-size: .85rem; font-weight: 700; }

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}
.stat strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: var(--acc);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat span { color: var(--mut); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
    position: relative;
    min-height: 62svh;
    display: flex;
    align-items: flex-end;
    padding: var(--pad);
    padding-top: 9rem;
    overflow: hidden;
}
.page-hero--compact { min-height: 44svh; background: radial-gradient(ellipse at 15% 110%, rgba(198,161,59,.2), transparent 60%), var(--bg-2); }
.page-hero__bg, .page-hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,9,8,.5), rgba(11,9,8,.94));
}
.page-hero__content { position: relative; }
.page-hero__kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; font-weight: 700; color: var(--acc-2); margin-bottom: .8rem; }
.page-hero__title {
    font-family: var(--display);
    font-size: clamp(2.8rem, 9vw, 7rem);
    line-height: .96;
    text-transform: uppercase;
}

/* ---------- Agenda ---------- */
.agenda-list { display: grid; gap: 2rem; }
.agenda-card {
    display: grid;
    grid-template-columns: minmax(280px, 480px) 1fr;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s;
}
.agenda-card:hover { border-color: var(--acc); }
.agenda-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.agenda-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.agenda-card:hover .agenda-card__img img { transform: scale(1.05); }
.agenda-card__body { padding: clamp(1.4rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.agenda-card__date {
    display: inline-block;
    width: fit-content;
    background: var(--acc);
    color: var(--acc-tx);
    font-size: .8rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: .9rem;
}
.agenda-card__title { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.02; margin-bottom: .4rem; }
.agenda-card__place { color: var(--mut); margin-bottom: 1.4rem; }
.agenda-card__actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.agenda-list--past .agenda-card { opacity: .75; }

/* Compartilhar (dropdown) */
.share { position: relative; }
.share__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 190px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .5rem;
    display: none;
    flex-direction: column;
    z-index: 40;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.share.is-open .share__menu { display: flex; }
.share__menu a, .share__menu button {
    text-align: left;
    background: none;
    border: 0;
    color: var(--tx);
    text-decoration: none;
    font-size: .92rem;
    padding: .55rem .8rem;
    border-radius: 8px;
    cursor: pointer;
}
.share__menu a:hover, .share__menu button:hover { background: var(--panel); color: var(--acc-2); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,4,3,.8); backdrop-filter: blur(6px); }
.modal__box {
    position: relative;
    max-width: 860px;
    margin: 4vh auto;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    animation: modalIn .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes modalIn { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close {
    position: sticky;
    top: .8rem;
    margin-left: calc(100% - 3.4rem);
    z-index: 5;
    width: 2.6rem; height: 2.6rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(11,9,8,.7);
    color: var(--tx);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.modal__close:hover { border-color: var(--acc); color: var(--acc); }
.modal__img { margin-top: -3.4rem; }
.modal__img img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.modal__content { padding: clamp(1.4rem, 4vw, 2.6rem); }
.modal__content h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1; margin: .8rem 0 .4rem; }
.modal__place { color: var(--mut); margin-bottom: 1.2rem; }
.modal__desc { color: var(--mut); margin-bottom: 1.6rem; }
.modal__videos h4 { text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; color: var(--acc); margin-bottom: 1rem; }
.video-embed {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}
.video-embed img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 74px; height: 74px;
    border-radius: 50%;
    border: 0;
    background: var(--acc);
    color: var(--acc-tx);
    font-size: 1.6rem;
    cursor: pointer;
    transition: transform .25s;
}
.video-embed:hover .video-embed__play { transform: scale(1.1); }
.video-embed__title {
    position: absolute;
    left: 1rem; bottom: .8rem;
    background: rgba(11,9,8,.75);
    padding: .3rem .8rem;
    border-radius: 8px;
    font-size: .85rem;
}
.modal__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---------- Filtros (Plantel) ---------- */
.filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.filter {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--mut);
    padding: .55rem 1.3rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
}
.filter:hover { border-color: var(--acc); color: var(--tx); }
.filter.is-active { background: var(--acc); border-color: var(--acc); color: var(--acc-tx); }

/* ---------- Fichas do plantel ---------- */
.cards--plantel { grid-template-columns: repeat(3, 1fr); }
.animal-ficha {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s, transform .3s, opacity .3s;
}
.animal-ficha:hover { border-color: var(--acc); }
.animal-ficha.is-hidden { display: none; }
.animal-ficha__photo {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.animal-ficha__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.animal-ficha__photo:hover img { transform: scale(1.06); }
.animal-ficha__count {
    position: absolute;
    right: .8rem; bottom: .8rem;
    background: rgba(11,9,8,.78);
    color: var(--tx);
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 999px;
}
.animal-ficha__body { padding: 1.3rem 1.4rem 1.5rem; }
.animal-ficha__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .6rem; }
.tag {
    background: rgba(198,161,59,.14);
    color: var(--acc-2);
    border: 1px solid rgba(198,161,59,.4);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .22rem .65rem;
    border-radius: 999px;
}
.animal-ficha__body h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; letter-spacing: .02em; margin-bottom: .8rem; }
.ficha { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1rem; margin-bottom: .9rem; }
.ficha div { display: flex; gap: .5rem; align-items: baseline; }
.ficha dt { color: var(--mut); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.ficha dd { font-weight: 700; font-size: .92rem; }
.animal-ficha__desc { color: var(--mut); font-size: .92rem; margin-bottom: .7rem; }
.animal-ficha__achv { color: var(--acc-2); font-size: .88rem; font-weight: 700; }

/* ---------- Estruturas ---------- */
.structures { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.structure-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s;
}
.structure-card:hover { border-color: var(--acc); }
.structure-card__photo {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.structure-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.structure-card__photo:hover img { transform: scale(1.05); }
.structure-card__body { padding: 1.5rem 1.6rem 1.7rem; }
.structure-card__body h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; margin-bottom: .6rem; }
.structure-card__body p { color: var(--mut); font-size: .95rem; margin-bottom: .8rem; }
.structure-card__specs { color: var(--acc-2) !important; font-size: .85rem !important; font-weight: 700; }
.structure-card__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.1rem; }

.cta-box {
    margin-top: 4rem;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    background: radial-gradient(ellipse at 50% 120%, rgba(198,161,59,.2), transparent 65%), var(--bg-2);
}
.cta-box h2 { font-family: var(--display); font-size: clamp(1.8rem, 4.5vw, 3.2rem); text-transform: uppercase; margin-bottom: .8rem; }
.cta-box p { color: var(--mut); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-box__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-item__icon { font-size: 1.5rem; line-height: 1.4; }
.contact-item strong { display: block; text-transform: uppercase; font-size: .78rem; letter-spacing: .12em; color: var(--mut); margin-bottom: .15rem; }
.contact-item a, .contact-item span { color: var(--tx); font-size: 1.05rem; text-decoration: none; }
.contact-item a:hover { color: var(--acc-2); }
.contact-social { display: flex; gap: .7rem; flex-wrap: wrap; }

.contact-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.6rem);
}
.contact-form h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.8rem; margin-bottom: 1.4rem; }
.contact-form label { display: block; font-size: .85rem; font-weight: 700; color: var(--mut); margin-bottom: 1.1rem; }
.contact-form input, .contact-form textarea {
    display: block;
    width: 100%;
    margin-top: .4rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--tx);
    padding: .8rem 1rem;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--acc); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-ok { text-align: center; padding: 2rem 0; }
.form-ok h3 { font-family: var(--display); font-size: 2rem; text-transform: uppercase; margin-bottom: .6rem; }
.form-ok p { color: var(--mut); }
.form-err {
    background: #3b1210;
    border: 1px solid #7a2820;
    border-radius: 10px;
    padding: .8rem 1.1rem;
    margin-bottom: 1.2rem;
    font-size: .92rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(5,4,3,.92); }
.lightbox__stage { position: relative; max-width: min(1100px, 90vw); text-align: center; }
.lightbox__stage img {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 10px;
    animation: modalIn .25s ease;
}
.lightbox__stage figcaption { margin-top: .9rem; color: var(--mut); font-size: .95rem; }
.lightbox__title { font-weight: 700; color: var(--tx); text-transform: uppercase; letter-spacing: .06em; }
.lightbox__close {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    z-index: 5;
    width: 3rem; height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(11,9,8,.7);
    color: var(--tx);
    font-size: 1.7rem;
    cursor: pointer;
}
.lightbox__nav {
    position: relative;
    z-index: 5;
    width: 3.4rem; height: 3.4rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(11,9,8,.7);
    color: var(--tx);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    margin: 0 1.2rem;
    flex-shrink: 0;
}
.lightbox__nav:hover, .lightbox__close:hover { border-color: var(--acc); color: var(--acc); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__cta { text-align: center; padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(3rem, 6vw, 5rem); }
.footer__kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .78rem; font-weight: 700; color: var(--acc); margin-bottom: 1rem; }
.footer__title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 8vw, 6.4rem);
    line-height: .96;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.footer__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.footer__bottom {
    border-top: 1px solid var(--line);
    padding: 2rem var(--pad) 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.footer__brand { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1.2rem; }
.footer__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer__social a { color: var(--mut); text-decoration: none; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.footer__social a:hover { color: var(--acc-2); }
.footer__legal { display: flex; flex-direction: column; gap: .2rem; color: var(--mut); font-size: .82rem; }

/* ---------- Griffe (produtos) ---------- */
.cards--griffe { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }
.product-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s;
}
.product-card:hover { border-color: var(--acc); transform: translateY(-4px); }
.product-card__photo {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card__photo:hover img { transform: scale(1.06); }
.product-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; margin-bottom: .5rem; }
.product-card__desc { color: var(--mut); font-size: .92rem; margin-bottom: 1rem; }
.product-card__buy { margin-top: auto; display: flex; flex-direction: column; gap: .7rem; }
.product-card__price {
    font-family: var(--display);
    font-size: 1.6rem;
    color: var(--acc-2);
    letter-spacing: .02em;
}
.product-card__buy .btn { justify-content: center; }
@media (max-width: 1100px) { .cards--griffe { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards--griffe { grid-template-columns: 1fr; } }

/* ---------- Página de evento ---------- */
.evento-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.evento-local { color: var(--acc-2); font-weight: 700; margin-top: .8rem; }
.evento-desc { color: var(--mut); font-size: 1.08rem; line-height: 1.75; }
.evento-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    position: sticky;
    top: 6rem;
}
.evento-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; margin-bottom: .9rem; }
.evento-share { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.evento-share .btn { justify-content: center; }
@media (max-width: 900px) {
    .evento-grid { grid-template-columns: 1fr; }
    .evento-card { position: static; }
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0,0,0,.45);
    transition: transform .25s ease;
}
.whats-float:hover { transform: scale(1.08); }
@media (max-width: 640px) {
    .whats-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}

/* ---------- Animação reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__bg img, .hero__line span { animation: none; }
    .marquee__track { animation-duration: 90s; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
    .cards--animals { grid-template-columns: repeat(2, 1fr); }
    .cards--plantel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .topbar__nav { display: none; }
    .topbar__burger { display: flex; }
    .cards--events { grid-template-columns: 1fr; }
    .section--split { grid-template-columns: 1fr; }
    .section--reverse .split__media { order: 0; }
    .agenda-card { grid-template-columns: 1fr; }
    .structures { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cards--plantel { grid-template-columns: 1fr; }
    .cards--animals { grid-template-columns: 1fr 1fr; gap: .9rem; }
    .form-row { grid-template-columns: 1fr; }
    .ficha { grid-template-columns: 1fr; }
    .lightbox__nav { position: absolute; bottom: 4vh; top: auto; }
    .lightbox__nav--prev { left: 18vw; }
    .lightbox__nav--next { right: 18vw; }
    .modal__box { margin: 2vh 3vw; }
}
