/* ============================================================
   Paulo Lima Turismo Artesanal — Landing Page
   Cores da marca: azul-marinho #16345C | laranja #EE6C2D
   Público terceira idade: fonte base grande, alto contraste,
   botões e áreas de toque generosos.
   ============================================================ */

:root {
  --navy: #16345C;
  --navy-700: #0f2542;
  --navy-100: #eaf0f7;
  --orange: #EE6C2D;
  --orange-600: #d95c20;
  --orange-100: #fdeee4;
  --sand: #FBF7F1;
  --ink: #1b2431;
  --muted: #5a6473;
  --white: #ffffff;
  --line: #e7e2da;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(22, 52, 92, .08);
  --shadow: 0 18px 40px -18px rgba(22, 52, 92, .28);
  --shadow-lg: 0 30px 70px -25px rgba(22, 52, 92, .35);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Sora', 'Inter', system-ui, sans-serif;

  --container: 1180px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;            /* base maior para a terceira idade */
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.18; margin: 0; font-weight: 600; letter-spacing: -.03em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 1.12rem; padding: 1.1rem 2rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -10px rgba(238,108,45,.7); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 16px 30px -10px rgba(238,108,45,.75); }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.ico-wa { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-logo { height: 45px; width: auto; display: block; }
.brand-tag {
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  font-weight: 700; padding-left: .6rem; border-left: 2px solid var(--line); align-self: center;
  line-height: 1.25; max-width: 6em;
}
.brand-logo-light { filter: brightness(0) invert(1); height: 48px; }

.main-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.main-nav a { font-weight: 600; color: var(--navy); font-size: .98rem; position: relative; padding: .3rem 0; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }

.btn-header { padding: .7rem 1.3rem; font-size: .95rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; padding: 84px 0 120px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(238,108,45,.35), transparent 60%),
    radial-gradient(900px 600px at 110% 20%, rgba(70,120,190,.35), transparent 55%),
    linear-gradient(160deg, #16345C 0%, #0f2542 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-block; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  background: rgba(238,108,45,.18); color: #ffd9c2; padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid rgba(238,108,45,.35); margin-bottom: 1.4rem;
}
.eyebrow-dark { background: var(--orange-100); color: var(--orange-600); border-color: rgba(238,108,45,.25); }

.hero-anniv {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.8rem; max-width: 32rem;
  background: linear-gradient(120deg, rgba(238,108,45,.28), rgba(238,108,45,.05));
  border: 1px solid rgba(255,197,150,.5);
  border-radius: 18px; padding: 1rem 1.3rem;
  box-shadow: 0 12px 34px rgba(238,108,45,.28);
}
/* brilho que passa por cima */
.hero-anniv::before {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); animation: anniv-shine 5s ease-in-out infinite;
}
@keyframes anniv-shine { 0%, 55% { left: -70%; } 100% { left: 130%; } }

.hero-anniv-badge {
  width: 104px; height: auto; flex: none; position: relative;
  filter: drop-shadow(0 0 16px rgba(255,184,122,.65));
  animation: anniv-float 3.6s ease-in-out infinite;
}
@keyframes anniv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-anniv-text { position: relative; display: flex; flex-direction: column; gap: .25rem; }
.hero-anniv-text strong {
  color: #fff; font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.1;
}
.hero-anniv-stars { font-size: .95rem; color: #ffb400; letter-spacing: 1px; font-weight: 700; }
.hero-anniv-stars em { color: #ffe6d5; font-style: normal; font-weight: 600; letter-spacing: 0; font-size: .82rem; }
.hero-anniv-desc { font-size: .92rem; line-height: 1.4; color: #cdd8e6; }

.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 700; margin-bottom: 1.3rem; }
.hero-copy .lead { font-size: 1.24rem; color: #d7e0ec; max-width: 33ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.8rem; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; }
.hero-trust span { font-size: .92rem; color: #aebdd0; }

/* Hero card / formulário */
.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-lg); position: relative;
}
.hero-card-badge {
  position: absolute; top: -14px; left: 2rem; background: var(--orange); color: #fff;
  font-size: .82rem; font-weight: 700; padding: .35rem .9rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-card h3 { font-size: 1.5rem; color: var(--navy); margin: .5rem 0 .6rem; }
.hero-card > p { color: var(--muted); font-size: 1.02rem; }

.quick-form { display: flex; flex-direction: column; gap: .85rem; margin-top: .4rem; }
.quick-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.quick-form input {
  font-family: var(--font-sans); font-size: 1.02rem; padding: .85rem 1rem;
  border: 2px solid var(--line); border-radius: 12px; background: var(--sand); color: var(--ink);
  transition: border-color .18s ease, background .18s ease;
}
.quick-form input:focus { border-color: var(--orange); background: #fff; outline: none; }
.quick-form input::placeholder { color: #a7aeb8; font-weight: 400; }
.form-note { color: var(--muted); font-size: .85rem; text-align: center; margin-top: .2rem; }
.hidden-field { position: absolute; left: -9999px; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; }

/* ---------- Strip ---------- */
.strip { background: var(--sand); border-bottom: 1px solid var(--line); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding: 1.3rem 24px; }
.strip-inner span { font-weight: 600; color: var(--navy); font-size: 1rem; }

/* ---------- Seções ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--sand); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .section-head p { color: #c4d0e0; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: inherit; margin-bottom: .8rem; }
.section .section-head h2 { color: var(--navy); }
.section-dark .section-head h2 { color: #fff; }
.section-head p { font-size: 1.15rem; color: var(--muted); margin: 0; }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; min-height: 440px; }
.about-photo { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow); background-size: cover; background-position: center; }
.about-photo-1 {
  width: 72%; height: 340px; top: 0; left: 0; z-index: 1;
  background-image: linear-gradient(135deg, rgba(22,52,92,.15), rgba(22,52,92,.45)), url("../img/rio-corcovado.jpg");
}
.about-photo-2 {
  width: 56%; height: 260px; bottom: 0; right: 0; z-index: 2; border: 6px solid #fff;
  background-image: url("../img/porto-de-galinhas.jpg");
}
.about-stat {
  position: absolute; top: 24px; right: 0; z-index: 3; background: var(--orange); color: #fff;
  padding: 1rem 1.2rem; border-radius: 16px; box-shadow: var(--shadow); max-width: 190px;
}
.about-stat strong { font-family: var(--font-serif); font-size: 2rem; display: block; line-height: 1; }
.about-stat span { font-size: .85rem; line-height: 1.35; display: block; margin-top: .3rem; }
.about-badge {
  position: absolute; bottom: -24px; left: -20px; z-index: 4;
  width: 150px; height: auto;
  filter: drop-shadow(0 10px 20px rgba(22,52,92,.25));
}

.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--navy); margin-bottom: 1.1rem; }
.about-copy > p { font-size: 1.12rem; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 2.2rem; font-weight: 500; color: var(--ink); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.6rem; height: 1.6rem;
  background: var(--navy-100); color: var(--navy); border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: .95rem;
}

/* ---------- Formas de viajar ---------- */
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 940px; margin: 0 auto; }
.way-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.way-tag {
  position: absolute; top: 1.7rem; right: 1.7rem; background: var(--orange); color: #fff;
  font-size: .74rem; font-weight: 700; padding: .3rem .8rem; border-radius: 999px; letter-spacing: .02em;
}
.way-ico {
  font-size: 2.2rem; width: 72px; height: 72px; display: grid; place-items: center;
  background: var(--orange-100); border-radius: 18px; margin-bottom: 1.2rem;
}
.way-card h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: .6rem; }
.way-card > p { color: var(--muted); font-size: 1.05rem; }
.way-list { list-style: none; padding: 0; margin: .4rem 0 1.9rem; display: grid; gap: .65rem; }
.way-list li { position: relative; padding-left: 1.9rem; font-weight: 500; line-height: 1.4; }
.way-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 800; }
.way-card .btn { margin-top: auto; }

/* ---------- Destinos ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dest-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease; position: relative;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 14px 34px rgba(238,108,45,.22);
}
.dest-card-featured:hover { box-shadow: 0 20px 44px rgba(238,108,45,.3); }
.dest-ribbon {
  position: absolute; top: 14px; right: -34px; z-index: 3;
  background: var(--orange); color: #fff; font-size: .78rem; font-weight: 800;
  padding: .35rem 2.6rem; transform: rotate(45deg); box-shadow: var(--shadow-sm);
  letter-spacing: .02em;
}
.dest-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.dest-img-chico { background-image: linear-gradient(0deg, rgba(22,52,92,.35), transparent), url("../img/chico-xavier.jpg"); }
.dest-img-aparecida-rio { background-image: linear-gradient(0deg, rgba(22,52,92,.25), transparent), url("../img/aparecida.jpg"); }
.dest-img-machadinho { background-image: linear-gradient(0deg, rgba(22,52,92,.25), transparent), url("../img/termas-machadinho.jpg"); }
.dest-img-ametista { background-image: linear-gradient(0deg, rgba(22,52,92,.25), transparent), url("../img/ametista.jpg"); }
.dest-img-porto { background-image: linear-gradient(0deg, rgba(22,52,92,.25), transparent), url("../img/porto-de-galinhas.jpg"); }
.dest-tag {
  position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff;
  font-size: .78rem; font-weight: 700; padding: .3rem .75rem; border-radius: 999px;
}
.dest-tag-fe { background: var(--navy); }
.dest-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.dest-body h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: .5rem; }
.dest-body p { color: var(--muted); font-size: .98rem; flex: 1; }
.dest-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .85rem; color: var(--navy); font-weight: 600; margin-bottom: 1rem; }
.dest-link { font-weight: 700; color: var(--orange); font-size: 1rem; }
.dest-link:hover { color: var(--orange-600); }

.dest-cta {
  margin-top: 48px; text-align: center; background: var(--navy-100); border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.dest-cta p { font-size: 1.15rem; color: var(--navy); font-weight: 600; max-width: 46ch; margin: 0 auto 1.4rem; }

/* ---------- Turismo artesanal (editorial) ---------- */
.art-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }

.art-visual { position: relative; }
.art-photo {
  height: 490px; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background-image: linear-gradient(200deg, rgba(22,52,92,.1), rgba(22,52,92,.5)),
    url("../img/rio-cristo.jpg");
  background-size: cover; background-position: center;
}
.art-badge {
  position: absolute; right: -26px; bottom: 40px; margin: 0; max-width: 300px;
  background: #fff; border-radius: 18px; padding: 1.4rem 1.6rem; box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--orange);
}
.art-badge blockquote {
  margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: 1.22rem; line-height: 1.35;
  color: var(--navy); letter-spacing: -.02em;
}
.art-badge em { color: var(--orange); font-style: italic; }

.art-content .eyebrow-dark { margin-bottom: 1.1rem; }
.art-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--navy); margin-bottom: 1.3rem; }
.art-content > p { font-size: 1.12rem; color: var(--muted); }
.art-highlight {
  color: var(--navy); font-weight: 600; font-size: 1.2rem; line-height: 1.5;
  border-left: 4px solid var(--orange); padding-left: 1.2rem; margin: 1.5rem 0;
}
.art-sign { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; }
.art-sign-mono {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700;
  font-size: 1.15rem; letter-spacing: -.02em; flex: none; box-shadow: var(--shadow-sm);
}
.art-sign-photo {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.art-sign strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); }
.art-sign span { color: var(--muted); font-size: .95rem; }

/* ---------- Diferenciais ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-ico { font-size: 2.4rem; width: 68px; height: 68px; display: grid; place-items: center; background: var(--orange-100); border-radius: 18px; margin-bottom: 1.1rem; }
.feat h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .5rem; }
.feat p { color: var(--muted); font-size: 1rem; margin: 0; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; padding: 1rem; position: relative; }
.step-num {
  display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  margin-bottom: 1.2rem; box-shadow: 0 12px 30px -10px rgba(238,108,45,.7);
}
.step h3 { font-size: 1.4rem; color: #fff; margin-bottom: .6rem; }
.step p { color: #c4d0e0; margin: 0; }

/* ---------- Depoimentos ---------- */
.google-reviews {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 1.6rem 2rem; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.4rem;
}
.gr-brand { display: flex; align-items: center; gap: 1rem; }
.gr-logo { flex: none; }
.gr-rating { display: flex; align-items: center; gap: .5rem; line-height: 1; }
.gr-rating strong { font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy); }
.gr-count { display: block; font-size: .9rem; color: var(--muted); margin-top: .35rem; max-width: 34ch; }
.gr-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.gr-actions .btn { padding: .7rem 1.3rem; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); margin: 0; display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }
.testi blockquote { margin: 0; font-size: 1.1rem; color: var(--ink); font-family: var(--font-serif); font-weight: 500; line-height: 1.5; }
.testi figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--c, var(--navy)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; font-family: var(--font-serif); flex: none; }
.testi figcaption strong { display: block; color: var(--navy); }
.testi figcaption small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange) 0%, var(--orange-600) 100%); color: #fff; padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; margin-bottom: .4rem; }
.cta-inner p { font-size: 1.15rem; color: rgba(255,255,255,.92); margin: 0; }
.cta-band .btn-primary { background: #fff; color: var(--orange-600); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }
.cta-band .btn-primary:hover { background: var(--navy); color: #fff; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 1rem; }
.faq-list details {
  background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: .3rem 1.4rem;
  transition: background .2s ease;
}
.faq-list details[open] { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--orange); }
.faq-list summary {
  cursor: pointer; font-weight: 700; font-size: 1.1rem; color: var(--navy); padding: 1.1rem 2rem 1.1rem 0;
  list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--orange); font-weight: 400; transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--muted); font-size: 1.02rem; padding-bottom: 1.2rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-700); color: #cdd8e6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; }
.brand-footer .brand-text strong { color: #fff; }
.footer-about { color: #9fb0c6; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 1rem; color: #fff; margin-bottom: 1rem; letter-spacing: .02em; }
.footer-col a, .footer-col p { display: block; color: #b7c3d4; margin-bottom: .6rem; font-size: .98rem; transition: color .18s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px;
  font-size: .9rem; color: #8ea0b8;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff; padding: 14px 18px; border-radius: 999px;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float-label { font-size: 1rem; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; background: #25D366;
  z-index: -1; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { opacity: .5; transform: scale(1);} 70%,100% { opacity: 0; transform: scale(1.5);} }

/* ---------- Animações reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy .lead { max-width: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { min-height: 400px; max-width: 480px; }
  .about-badge { width: 120px; bottom: -18px; left: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid, .testi-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .art-split { grid-template-columns: 1fr; gap: 40px; max-width: 620px; }
  .art-photo { height: 380px; }
  .art-badge { right: 16px; bottom: 16px; max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav, .btn-header { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 1rem 24px 1.5rem; box-shadow: var(--shadow); gap: .2rem; border-top: 1px solid var(--line);
  }
  .site-header.nav-open .main-nav a { padding: .9rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 90px; }
  .cards-grid, .feat-grid, .testi-grid, .steps, .footer-grid, .ways-grid { grid-template-columns: 1fr; }
  .google-reviews { flex-direction: column; align-items: flex-start; text-align: left; }
  .gr-actions { width: 100%; }
  .gr-actions .btn { flex: 1; text-align: center; }
  .art-photo { height: 300px; }
  .art-badge { position: static; margin-top: 1rem; max-width: none; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .cta-inner .btn { width: 100%; }
  .wa-float-label { display: none; }
  .brand-tag { display: none; }
  .brand-logo { height: 40px; }
  .about-stat { max-width: 160px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float::before { animation: none; }
  .hero-anniv::before, .hero-anniv-badge { animation: none; }
  .thanks-card, .thanks-check { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Página de agradecimento ---------- */
.thanks {
  min-height: 100vh; display: grid; place-items: center; padding: 48px 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(238,108,45,.22), transparent 42%),
    radial-gradient(circle at 85% 90%, rgba(238,108,45,.14), transparent 40%),
    var(--navy);
}
.thanks-card {
  background: #fff; border-radius: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.4);
  max-width: 560px; width: 100%; padding: 3.2rem 2.6rem; text-align: center;
  animation: thanks-rise .5s ease both;
}
@keyframes thanks-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.thanks-check {
  width: 86px; height: 86px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: #22a35a; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(34,163,90,.4);
  animation: thanks-pop .55s cubic-bezier(.2,.8,.3,1.35) .15s both;
}
@keyframes thanks-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-logo { height: 46px; width: auto; margin: 0 auto 1.2rem; display: block; }
.thanks-card h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--navy); margin-bottom: .8rem; }
.thanks-lead { color: var(--muted); font-size: 1.1rem; line-height: 1.55; margin-bottom: 2rem; }
.thanks-steps {
  list-style: none; margin: 0 0 2rem; padding: 1.5rem; text-align: left;
  display: grid; gap: 1.1rem; background: var(--navy-100); border-radius: 16px;
}
.thanks-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.thanks-steps span {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; font-family: var(--font-serif);
}
.thanks-steps strong { display: block; color: var(--navy); margin-bottom: .1rem; }
.thanks-steps small { color: var(--muted); font-size: .92rem; line-height: 1.4; }
.thanks-tip { font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
