/* =====================================================================
   GIRAVIDEO ENTRETENIMENTO — Folha de estilo do site público
   Identidade: neon roxo + laranja sobre quase-preto (giravideo.com.br).
   ===================================================================== */

:root {
    --bg:        #0c0616;
    --bg-2:      #150a26;
    --bg-3:      #1b0e33;
    --purple:    #7c2ae8;
    --purple-2:  #b158ff;
    --orange:    #ff9f1c;
    --orange-2:  #ffbc42;
    --text:      #f9f6ff;
    --muted:     #b6a8d6;
    --muted-2:   #8f7fb0;
    --card:      #1c0f30;
    --card-2:    #251642;
    --border:    rgba(255,255,255,.09);
    --light-bg:  #f2f1f6;
    --light-card:#ffffff;
    --light-text:#1c1330;
    --light-muted:#6b6480;
    --radius:    18px;
    --radius-sm: 12px;
    --shadow:    0 20px 50px rgba(0,0,0,.45);
    --grad-orange: linear-gradient(135deg, var(--orange) 0%, #ff7a1c 100%);
    --grad-hero: radial-gradient(ellipse 900px 600px at 25% 30%, rgba(177,88,255,.30) 0%, transparent 60%),
                 radial-gradient(ellipse 700px 500px at 85% 15%, rgba(255,159,28,.18) 0%, transparent 55%),
                 linear-gradient(170deg, rgba(51,6,95,.55) 0%, rgba(22,6,43,.62) 55%, rgba(12,6,22,.72) 100%);
    --font-display: 'Rubik', 'Nunito', sans-serif;
    --font-body: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,159,28,.5);
    background: rgba(255,159,28,.08);
    color: var(--orange-2);
    font-weight: 800; font-size: 13px; letter-spacing: .4px;
    padding: 9px 20px; border-radius: 999px; margin-bottom: 22px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
    font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-transform: uppercase;
    margin-bottom: 12px; letter-spacing: .3px;
}
.section-head p { color: var(--muted); font-size: 16px; }
.section-light .section-head p { color: var(--light-muted); }

.section { padding: 88px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section-light { background: var(--light-bg); color: var(--light-text); }

/* ---- Botões -------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 34px; border-radius: 999px;
    font-weight: 800; font-size: 15px; letter-spacing: .3px; text-transform: uppercase;
    border: 2px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn-primary {
    background: var(--grad-orange); color: #24100a;
    box-shadow: 0 12px 30px rgba(255,159,28,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255,159,28,.5); }
.btn-outline {
    background: transparent; border-color: rgba(255,159,28,.6); color: var(--orange-2);
}
.btn-outline:hover { background: rgba(255,159,28,.1); border-color: var(--orange); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ---- Header ---------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12,6,22,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container { display: flex; align-items: center; gap: 24px; height: 84px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; flex: 1; }
.main-nav a {
    font-weight: 700; font-size: 14.5px; color: var(--text); opacity: .85;
    text-transform: uppercase; letter-spacing: .3px; transition: opacity .15s, color .15s;
}
.main-nav a:hover { opacity: 1; color: var(--orange-2); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.icon-link {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.06); color: var(--text); transition: all .18s ease; flex-shrink: 0;
}
.icon-link:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.header-cta {
    background: var(--grad-orange); color: #24100a; font-weight: 800; font-size: 13.5px;
    text-transform: uppercase; padding: 12px 22px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 8px 22px rgba(255,159,28,.3);
}
.menu-toggle { display: none; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
    position: relative; padding: 120px 0 130px; overflow: hidden;
    background: var(--grad-hero), url('../../uploads/hero/hero-bg.jpg');
    background-size: cover, cover;
    background-position: center, center 30%;
    background-repeat: no-repeat, no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.hero h1 {
    font-size: clamp(38px, 7vw, 100px); font-weight: 800; text-transform: uppercase;
    margin-bottom: 22px; letter-spacing: .2px; text-wrap: balance;
    text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.hero p.lead { text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hero h1 .accent { color: var(--orange); }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---- WhatsApp flutuante -------------------------------------------------- */
.wa-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center;
    box-shadow: 0 10px 28px rgba(37,211,102,.45);
    transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---- Grade de atrações --------------------------------------------- */
.grid-atracoes {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card-atracao {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card-atracao:hover { transform: translateY(-6px); border-color: rgba(255,159,28,.4); box-shadow: var(--shadow); }
.card-atracao-img { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.card-atracao-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-atracao:hover .card-atracao-img img { transform: scale(1.08); }
.card-atracao-body { padding: 22px 24px 26px; }
.card-atracao-body h3 {
    font-size: 19px; font-weight: 800; color: var(--orange-2); text-transform: uppercase;
    margin-bottom: 10px; letter-spacing: .3px;
}
.card-atracao-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.card-link { font-weight: 800; font-size: 13.5px; color: var(--text); text-transform: uppercase; letter-spacing: .3px; }
.card-link:hover { color: var(--orange-2); }

/* ---- Outros serviços ------------------------------------------------ */
.grid-servicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-servico {
    background: var(--card-2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; display: flex; gap: 18px; align-items: flex-start;
    transition: border-color .2s ease, transform .2s ease;
}
.card-servico:hover { border-color: rgba(177,88,255,.5); transform: translateY(-4px); }
.card-servico-img {
    width: 68px; height: 68px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: var(--bg-2);
}
.card-servico-img img { width: 100%; height: 100%; object-fit: cover; }
.card-servico h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.card-servico p { font-size: 13.5px; color: var(--muted); }

/* ---- Quem somos ------------------------------------------------------- */
.sobre-wrap {
    display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center;
    background: linear-gradient(135deg, var(--bg-3) 0%, var(--card) 100%);
    border: 1px solid var(--border); border-radius: 28px; padding: 44px; overflow: hidden;
}
.sobre-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-text .eyebrow { margin-bottom: 16px; }
.sobre-text h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; margin-bottom: 18px; text-transform: uppercase; }
.sobre-text p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; }
.sobre-text p:last-of-type { margin-bottom: 28px; }

/* ---- Diferenciais (seção clara) --------------------------------------- */
.grid-diferenciais { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card-diferencial { text-align: center; }
.card-diferencial .icon {
    width: 100px; height: 100px; border-radius: 18px; margin: 0 auto 18px;
    display: grid; place-items: center; font-size: 56px;
    background: linear-gradient(135deg, rgba(255,159,28,.15), rgba(177,88,255,.15));
    border: 1px solid rgba(124,42,232,.18);
}
.card-diferencial h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .3px; }
.card-diferencial p { font-size: 18px; color: var(--light-muted); }

/* ---- Avaliações -------------------------------------------------------- */
.reviews-summary { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 36px; }
.reviews-summary .label { font-weight: 800; letter-spacing: .5px; text-transform: uppercase; font-size: 14px; color: var(--text); }
.reviews-summary .stars { color: #fbbc04; font-size: 20px; letter-spacing: 3px; }
.reviews-summary .count { color: var(--muted); font-size: 13px; }
.reviews-wrap { position: relative; }
.reviews-track {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 8px; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
    scroll-snap-align: start; flex: 0 0 320px;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: #fbbc04; letter-spacing: 2px; }
.review-card .autor { font-weight: 800; font-size: 14.5px; }
.review-card .tempo { color: var(--muted-2); font-size: 12px; }
.review-card .texto { color: var(--muted); font-size: 14px; flex: 1; }
.review-more {
    align-items: center; justify-content: center; text-align: center; gap: 8px;
    border-style: dashed; text-decoration: none; transition: border-color .2s ease;
}
.review-more:hover { border-color: var(--orange); }
.review-more span { color: var(--orange-2); font-size: 13px; }
.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.reviews-nav button {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--card); color: var(--text); display: grid; place-items: center;
    transition: all .15s ease;
}
.reviews-nav button:hover { border-color: var(--orange); color: var(--orange-2); }

/* ---- CTA / Contato ------------------------------------------------------ */
.cta-section {
    background: linear-gradient(170deg, #2c0a52 0%, #170830 60%, #0c0616 100%);
}
.cta-section .section-head h2 { color: var(--text); }
.contact-form {
    max-width: 780px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
    background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 14.5px;
    transition: border-color .15s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--orange);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form select option { color: #1a1a1a; background: #fff; }
.checks-atracoes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.check-item input { width: auto; accent-color: var(--orange); }
.form-note { text-align: center; margin-top: 18px; font-weight: 700; display: none; }
.form-note.show { display: block; }
.form-note.ok { color: #34d399; }
.form-note.err { color: #fb7185; }

/* ---- Blog preview ------------------------------------------------------- */
.grid-blog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.blog-card {
    background: var(--light-card); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 8px 24px rgba(20,10,40,.08); transition: transform .2s ease;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 11.5px; color: var(--light-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.blog-card-title { font-size: 15.5px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; color: var(--light-text); flex: 1; }
.blog-card-resumo { font-size: 13px; color: var(--light-muted); margin-bottom: 12px; }
.blog-card-link { font-size: 12.5px; font-weight: 800; color: var(--orange); text-transform: uppercase; }
.blog-empty { text-align: center; color: var(--light-muted); padding: 40px 0; }

/* ---- Blog: listagem e post -------------------------------------------- */
.blog-hero { padding: 70px 0 30px; text-align: center; }
.blog-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.blog-hero p { color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-filtros { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.blog-filtro {
    padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(0,0,0,.12);
    font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
    color: var(--light-muted); text-decoration: none; transition: all .15s ease;
}
.blog-filtro:hover { border-color: var(--orange); color: var(--orange); }
.blog-filtro.is-active { background: var(--orange); border-color: var(--orange); color: #24100a; }
.blog-post { padding: 64px 0 90px; }
.blog-post-back { display: inline-block; margin-bottom: 20px; color: var(--orange-2); font-weight: 700; font-size: 14px; }
.blog-post-date { color: var(--muted); font-size: 13px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.blog-post h1 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; margin-bottom: 24px; max-width: 820px; }
.blog-post-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); margin-bottom: 34px; }
.blog-post-body { max-width: 760px; color: var(--muted); font-size: 16px; }
.blog-post-body h2, .blog-post-body h3, .blog-post-body h4 { color: var(--text); margin: 30px 0 14px; font-weight: 800; }
.blog-post-body p { margin-bottom: 16px; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 16px 22px; }
.blog-post-body img, .blog-post-body figure { border-radius: var(--radius-sm); margin: 20px 0; }
.blog-post-body blockquote { border-left: 3px solid var(--orange); padding-left: 18px; color: var(--orange-2); font-weight: 700; margin: 22px 0; font-size: 18px; }
.blog-post-body a { color: var(--orange-2); text-decoration: underline; }

/* ---- Página de detalhe da atração ("página de produto") --------------- */
.atracao-detalhe { padding: 64px 0 40px; }
.atracao-hero {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
    margin-bottom: 48px;
}
.atracao-hero-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.atracao-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.atracao-hero-info h1 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.atracao-lead { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.atracao-conteudo { margin-bottom: 40px; }
.section-alt { background: var(--bg-3); }

/* Player de vídeo (dentro do modal) — a caixa se adapta ao formato do vídeo */
.video-embed { width: 100%; border-radius: var(--radius); background: var(--card); }

/* YouTube/Vimeo horizontal (16:9) — iframe nosso, caixa de proporção fixa */
.video-embed--h { position: relative; padding-top: 56.25%; overflow: hidden; }
.video-embed--h iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* YouTube Shorts vertical (9:16) — mesma lógica, mais estreito pra não ficar gigante */
.video-embed--v { position: relative; width: min(100%, 380px); margin: 0 auto; padding-top: 177.78%; overflow: hidden; }
.video-embed--v iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Instagram/TikTok — widget deles controla a própria altura; só limitamos a largura */
.video-embed--widget { max-width: 400px; margin: 0 auto; background: transparent; border-radius: 0; }
.video-embed--widget iframe { width: 100% !important; }

/* Arquivo de vídeo direto — o <video> já respeita a proporção real do arquivo */
.video-embed--file { display: flex; justify-content: center; background: transparent; }
.video-embed--file video { max-width: 100%; max-height: 80vh; width: auto; height: auto; border-radius: var(--radius); display: block; }

.atracao-galeria-title { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.atracao-galeria { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.atracao-galeria-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1;
    display: block; border: none; padding: 0; cursor: pointer; background: var(--card);
}
.atracao-galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.atracao-galeria-item:hover img { transform: scale(1.06); }

/* Miniatura "Ver vídeo" (primeiro item da grade de fotos e vídeos) */
.atracao-galeria-item--video::after {
    content: ''; position: absolute; inset: 0; background: rgba(12,6,22,.4); transition: background .2s ease; z-index: 1;
}
.atracao-galeria-item--video:hover::after { background: rgba(12,6,22,.55); }
.video-thumb-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
    width: 46px; height: 46px; border-radius: 50%; background: var(--grad-orange);
    color: #24100a; display: grid; place-items: center; font-size: 17px; z-index: 2;
    box-shadow: 0 8px 22px rgba(255,159,28,.4);
}
.video-thumb-label {
    position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 2;
    color: var(--text); font-weight: 800; text-transform: uppercase; letter-spacing: .3px; font-size: 11px;
    text-shadow: 0 2px 8px rgba(0,0,0,.6); white-space: nowrap;
}

/* Lightbox (galeria e vídeo) */
.lightbox-overlay {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(6,3,12,.94); align-items: center; justify-content: center; padding: 24px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-img { max-width: min(90vw, 1100px); max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-video-body { width: min(94vw, 900px); max-height: 88vh; overflow-y: auto; display: flex; justify-content: center; }
.lightbox-close {
    position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: none; color: var(--text); font-size: 18px; cursor: pointer; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.16); }
.lightbox-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: none; color: var(--text); font-size: 30px; cursor: pointer; line-height: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.16); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 860px) {
    .atracao-hero { grid-template-columns: 1fr; }
    .atracao-galeria { grid-template-columns: repeat(3, 1fr); }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 22px; }
}
@media (max-width: 560px) {
    .atracao-galeria { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: #08040f; border-top: 1px solid var(--border); padding: 34px 0; }
.site-footer .container {
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-info { color: var(--muted-2); font-size: 13px; line-height: 1.7; }
.footer-info strong { color: var(--muted); }
.footer-dev { color: var(--muted-2); font-size: 12px; }
.footer-dev a { color: var(--orange-2); font-weight: 700; }

/* ---- Flash message ------------------------------------------------------- */
.site-flash { padding: 14px 0; text-align: center; font-weight: 700; }
.site-flash-success { background: rgba(52,211,153,.15); color: #34d399; }
.site-flash-error { background: rgba(251,113,133,.15); color: #fb7185; }

/* ---- Responsivo ----------------------------------------------------------- */
@media (max-width: 980px) {
    .grid-atracoes, .grid-servicos { grid-template-columns: repeat(2, 1fr); }
    .grid-diferenciais { grid-template-columns: repeat(2, 1fr); }
    .grid-blog, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-wrap { grid-template-columns: 1fr; padding: 32px; }
    .sobre-img { max-width: 340px; margin: 0 auto; }
    .main-nav { display: none; }
    .menu-toggle {
        display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
        background: rgba(255,255,255,.08); border: none; color: var(--text);
    }
    .header-cta { display: none; }
}

@media (max-width: 720px) {
    .contact-form { grid-template-columns: 1fr; padding: 24px; }
    .checks-atracoes { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 60px 0 80px; background-position: center, center; }
    .section { padding: 60px 0; }
}

@media (max-width: 560px) {
    .grid-atracoes, .grid-servicos, .grid-diferenciais, .grid-blog, .blog-grid { grid-template-columns: 1fr; }
    .checks-atracoes { grid-template-columns: 1fr; }
    .site-footer .container { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
}
