/* ============================================================
   Viajei Vistos — Landing Page
   ============================================================ */
:root{
  --ink:#1A1A1A;
  --ink-2:#2a2a2a;
  --cream:#FAF7F0;
  --cream-2:#F2EEE3;
  --gold:#C9A961;
  --gold-2:#b59648;
  --muted:#6b6b6b;
  --line: rgba(26,26,26,.12);

  --font-display:"Playfair Display", "Times New Roman", serif;
  --font-body:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container:1240px;
  --radius:14px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-size:17px;
  line-height:1.55;
}
img,svg{display:block;max-width:100%}
a{color:inherit}
button{font:inherit}

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

em{ font-style:italic; font-family:var(--font-display); }

/* ---------- Eyebrow / shared section head ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--ink);opacity:.7;margin:0 0 18px;font-weight:500;
}
.eyebrow .dot{
  width:6px;height:6px;border-radius:50%;background:var(--gold);
  display:inline-block;
}
.section-head{ margin-bottom:48px; max-width:760px; }
.h-display{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(36px,6vw,68px);
  line-height:1.04;
  letter-spacing:-.01em;
  margin:0;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;border-radius:999px;
  font-weight:500;font-size:15px;letter-spacing:.01em;
  text-decoration:none;border:1px solid transparent;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn-primary{ background:var(--ink); color:var(--cream); }
.btn-primary:hover{ background:var(--gold); color:var(--ink); transform:translateY(-1px); }
.btn-ghost{
  background:transparent; color:var(--ink);
  border-color:var(--line);
  padding:10px 16px;font-size:14px;
}
.btn-ghost:hover{ border-color:var(--ink); }
.btn-gold{
  background:var(--gold); color:var(--ink);
  font-weight:600;
}
.btn-gold:hover{ background:var(--ink); color:var(--cream); transform:translateY(-1px); }
.btn-link{
  padding:14px 4px;
  border-bottom:1px solid var(--line);
  border-radius:0;
  color:var(--ink);
}
.btn-link:hover{ border-color:var(--ink); }

/* ---------- (1) Header ---------- */
.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(250,247,240,.85);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:auto; min-height:80px; padding:14px 0;
}
.brand{
  display:inline-flex;align-items:center;gap:12px;
  text-decoration:none;color:var(--ink);
}
.brand-mark{
  width:36px;height:36px;border-radius:50%;
  background:var(--ink); color:var(--gold);
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--font-display); font-style:italic;
  font-weight:600; font-size:15px; letter-spacing:.5px;
}
.brand-name{
  font-family:var(--font-display);
  font-size:20px; font-weight:500; letter-spacing:.01em;
}
.brand-name em{ color:var(--ink); }
.brand-text{ display:inline-flex; flex-direction:column; gap:4px; line-height:1; }
.brand-row{ display:inline-flex; align-items:center; gap:10px; }
.brand-name-text{
  font-family:"Playfair Display", serif;
  font-weight:800;
  font-size:30px;
  letter-spacing:.01em;
  color:#A88B45;
  line-height:1;
}
.brand-plane{
  color:#C9A961;
  transform:rotate(-25deg);
  display:inline-block;
}
.brand-tag{
  font-family:"Inter", sans-serif;
  font-weight:500;
  font-size:10.5px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(26,26,26,.75);
}
.brand--light .brand-name-text{ color:#C9A961; }
.brand--light .brand-tag{ color:rgba(250,247,240,.75); }
.brand-img{
  height:68px; width:auto; display:block; max-width:100%;
}
@media (min-width:640px){ .brand-img{ height:88px; } }
.foot-brand-img{ height:96px; max-width:100%; }
.header-cta{ display:none; }
@media (min-width:640px){ .header-cta{ display:inline-flex; } }

/* ---------- (2) Hero ---------- */
.hero{ padding:56px 0 72px; }
.hero-grid{
  display:grid; gap:48px;
  grid-template-columns:1fr;
  align-items:center;
}
@media (min-width:980px){
  .hero{ padding:96px 0 120px; }
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:72px; }
}
.display{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(44px,8.4vw,104px);
  line-height:1.02;
  letter-spacing:-.015em;
  margin:0 0 24px;
}
.display em{ color:var(--gold); font-weight:500; }
.lede{
  font-size:clamp(16px,1.5vw,19px);
  color:var(--ink); opacity:.78;
  max-width:52ch; margin:0 0 32px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:8px 18px; align-items:center; }

.hero-figure{
  position:relative; margin:0;
  aspect-ratio: 4/5;
  width:100%;
}
.hero-img{
  position:absolute; inset:0;
  background:#E9DFC8;
  border-radius:var(--radius);
  overflow:hidden;
}
.hero-photo{
  width:100%; height:100%; object-fit:cover; object-position:center;
  display:block;
}
.ph-tag{
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(26,26,26,.85); color:var(--cream);
  padding:6px 10px; border-radius:6px;
  backdrop-filter:blur(4px);
}
.hero-stamp{
  position:absolute; right:-18px; bottom:-18px;
  width:130px; height:130px;
  background:var(--cream);
  border-radius:50%;
  border:1px solid var(--line);
  padding:8px;
  box-shadow:0 30px 60px -30px rgba(0,0,0,.25);
}
@media (min-width:980px){
  .hero-stamp{ right:-30px; bottom:-30px; width:160px; height:160px; }
}

/* ---------- (3) Stats ---------- */
.stats{
  background:var(--ink); color:var(--cream);
}
.stats-grid{
  display:grid; grid-template-columns:1fr;
  padding:40px 24px;
}
@media (max-width:779px){
  .stats-grid > .stat{ border-right:none; border-bottom:1px solid rgba(250,247,240,.1); padding:22px 0; }
  .stats-grid > .stat:last-child{ border-bottom:none; }
}
@media (min-width:560px) and (max-width:779px){
  .stats-grid{ grid-template-columns:repeat(3,1fr); padding:48px 24px; }
  .stats-grid > .stat{ border-bottom:none; padding:18px 12px; }
}
@media (min-width:780px){
  .stats-grid{ grid-template-columns:repeat(3,1fr); padding:64px 40px; }
}
.stat{
  display:flex; flex-direction:column; gap:8px;
  padding:18px 8px; text-align:left;
  border-right:1px solid rgba(250,247,240,.1);
}
.stat:nth-child(2n){ border-right:none; }
@media (min-width:780px){
  .stat{ padding:0 24px; }
  .stat:nth-child(2n){ border-right:1px solid rgba(250,247,240,.1); }
  .stat:last-child{ border-right:none; }
}
.stat-num{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(38px,5vw,72px); line-height:1;
  letter-spacing:-.02em;
  color:var(--cream);
}
.stat-num sup{ font-size:.45em; color:var(--gold); top:-.5em; margin-left:2px; font-weight:400;}
.stat-num .star{ color:var(--gold); margin-left:4px; font-size:.7em; }
.stat-label{
  font-size:13px; letter-spacing:.04em;
  color:rgba(250,247,240,.62);
  text-transform:lowercase;
  white-space:nowrap;
}
@media (max-width:559px){
  .stat-label{ font-size:14px; white-space:normal; }
}

/* ---------- (4) Services ---------- */
.services{ padding:96px 0; }
.services-grid{
  display:grid; grid-template-columns:1fr; gap:24px;
}
@media (min-width:820px){
  .services-grid{ grid-template-columns:repeat(3,1fr); gap:28px; }
}
.service-card{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:0 30px 60px -40px rgba(0,0,0,.3); }
.service-img{
  aspect-ratio:4/3; position:relative;
  display:flex; align-items:flex-end; padding:14px;
  background-size:cover; background-position:center;
}
.service-img::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
}
.service-img .ph-tag, .service-img .svc-badge{ position:relative; z-index:2; }
.tone-coral{ background:linear-gradient(160deg,#E8C7B8,#B6603F); }
.tone-sage { background:linear-gradient(160deg,#C9D6BD,#5E7A50); }
.tone-blue { background:linear-gradient(160deg,#BFCFD9,#3F5C78); }
.svc-badge{
  position:absolute; top:14px; right:14px;
  background:var(--gold); color:var(--ink);
  font-family:"Inter",sans-serif; font-weight:600; font-size:11px;
  letter-spacing:.08em; text-transform:uppercase;
  padding:6px 10px; border-radius:999px;
}
.service-body{ padding:28px 26px 32px; display:flex; flex-direction:column; gap:12px; }
.service-num{
  font-family:var(--font-display); font-style:italic;
  color:var(--gold); font-size:18px;
}
.service-body h3{
  font-family:var(--font-display); font-weight:500;
  font-size:30px; margin:0; letter-spacing:-.005em;
}
.service-body p{ margin:0; color:var(--muted); font-size:15.5px; line-height:1.6; }
.card-link{
  margin-top:auto;
  text-decoration:none; color:var(--ink); font-weight:500;
  border-bottom:1px solid var(--line); padding:10px 0; align-self:flex-start;
  font-size:14px;
}
.card-link:hover{ border-color:var(--ink); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:58px;height:58px;border-radius:50%;
  background:#25D366; color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  box-shadow:0 18px 40px -10px rgba(37,211,102,.55), 0 4px 14px rgba(0,0,0,.18);
}
.wa-pulse{
  position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:.55;
  animation:wa-pulse 1.8s ease-out infinite;
  z-index:-1;
}
@keyframes wa-pulse{
  0%{ transform:scale(1); opacity:.55; }
  100%{ transform:scale(1.7); opacity:0; }
}
@media (min-width:640px){
  .wa-float{ right:28px; bottom:28px; width:64px;height:64px; }
}

/* ---------- (5) Renata ---------- */
.about{ padding:96px 0; background:var(--cream-2); }
.about-grid{
  display:grid; gap:48px; grid-template-columns:1fr; align-items:center;
}
@media (min-width:900px){
  .about-grid{ grid-template-columns:.85fr 1.15fr; gap:80px; }
}
.about-photo{
  aspect-ratio:3/4; border-radius:var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(26,26,26,.05) 0 2px, transparent 2px 14px),
    linear-gradient(180deg,#E9DFC8 0%, #C9A961 100%);
  display:flex; align-items:flex-end; padding:18px;
  position:relative; overflow:hidden;
}
.about-copy h2{ margin:0 0 28px; }
.about-copy p{ font-size:18px; line-height:1.7; color:var(--ink); margin:0 0 18px; max-width:56ch; }
.signature{
  font-family:var(--font-display); font-style:italic;
  font-size:34px; color:var(--gold); margin-top:28px; line-height:1;
}
.signature small{ display:block; font-size:12px; color:var(--muted); font-family:var(--font-body); font-style:normal; letter-spacing:.18em; text-transform:uppercase; margin-top:10px; }

/* ---------- (6) Steps ---------- */
.steps{ padding:96px 0; }
.steps-grid{
  display:grid; gap:24px; grid-template-columns:1fr; counter-reset:step;
}
@media (min-width:820px){ .steps-grid{ grid-template-columns:repeat(3,1fr); gap:32px; } }
.step{
  border-top:1px solid var(--ink);
  padding:28px 0 0;
  display:flex; flex-direction:column; gap:14px;
}
.step-icon{
  width:56px;height:56px;border-radius:50%;
  background:var(--ink); color:var(--gold);
  display:flex;align-items:center;justify-content:center;
}
.step-num{
  font-family:var(--font-display); font-style:italic; color:var(--gold);
  font-size:18px;
}
.step h3{
  font-family:var(--font-display); font-weight:500;
  font-size:30px; margin:0;
}
.step p{ margin:0; color:var(--muted); font-size:16px; line-height:1.6; }

/* ---------- (7) Guarantee ---------- */
.guarantee{
  background:var(--ink); color:var(--cream);
  padding:96px 0;
}
.guarantee-inner{
  display:grid; gap:40px; align-items:center;
  grid-template-columns:1fr;
}
@media (min-width:820px){
  .guarantee-inner{ grid-template-columns:auto 1fr; gap:64px; }
}
.shield{
  width:120px;height:140px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto;
}
@media (min-width:820px){ .shield{ margin:0; } }
.guarantee h2{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(34px,5vw,56px); line-height:1.05; letter-spacing:-.01em;
  margin:0 0 18px;
}
.guarantee h2 em{ color:var(--gold); }
.guarantee p{
  margin:0; max-width:60ch; color:rgba(250,247,240,.8); font-size:17px; line-height:1.7;
}

/* ---------- (8) Testimonials ---------- */
.testimonials{ padding:96px 0; }
.shorts-grid{
  display:grid; grid-template-columns:1fr; gap:24px;
  margin-bottom:56px;
}
@media (min-width:760px){
  .shorts-grid{ grid-template-columns:repeat(3,1fr); gap:28px; }
}
.short{ margin:0; display:flex; flex-direction:column; gap:14px; }
.short-frame{
  aspect-ratio:9/16;
  border-radius:16px;
  overflow:hidden;
  background:#0e0e0e;
  box-shadow:0 30px 60px -30px rgba(0,0,0,.35), 0 6px 18px -10px rgba(0,0,0,.18);
}
.short-frame iframe{ width:100%; height:100%; display:block; border:0; }
.video-caption{
  margin:0;
  font-size:13px; letter-spacing:.04em; color:var(--muted);
  text-align:left;
}
.play-btn{
  width:80px;height:80px;border-radius:50%;
  background:var(--gold); color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  border:none; cursor:pointer;
  transition:transform .25s ease;
  box-shadow:0 30px 60px -20px rgba(201,169,97,.6);
}
.play-btn:hover{ transform:scale(1.06); }
.video-label{
  position:absolute; left:18px; bottom:18px;
  font-family: ui-monospace, monospace; font-size:11px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--cream); opacity:.7;
}
.tcards{
  display:grid; grid-template-columns:1fr; gap:20px; margin-bottom:32px;
}
@media (min-width:820px){ .tcards{ grid-template-columns:repeat(3,1fr); gap:24px; } }
.tcard{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:28px;
  display:flex;flex-direction:column;gap:16px;
}
.tstars{ color:var(--gold); letter-spacing:2px; font-size:14px; }
.tcard blockquote{
  font-family:var(--font-display); font-weight:400;
  font-size:20px; line-height:1.4; margin:0;
  letter-spacing:-.005em;
}
.tcard cite{
  font-style:normal; font-size:13px; letter-spacing:.05em;
  text-transform:uppercase; color:var(--muted);
  margin-top:auto;
}
.elfsight-widget-wrap{
  max-width:1200px;
  margin:60px auto 40px;
}
.gReviews{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--ink);
  border-bottom:1px solid var(--ink);
  padding-bottom:6px;
  font-size:14px; letter-spacing:.04em;
}
.gReviews .star{ color:var(--gold); }

/* ---------- (9) FAQ + CTA + footer ---------- */
.faq{ padding:96px 0; background:var(--cream-2); }
.faq-grid{
  display:grid; grid-template-columns:1fr; gap:48px;
}
@media (min-width:980px){ .faq-grid{ grid-template-columns:.8fr 1.2fr; gap:80px; } }
.faq-list{ display:flex; flex-direction:column; }
.faq-item{ border-top:1px solid var(--line); }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
summary{ list-style:none; }
summary::-webkit-details-marker{ display:none; }
.faq-q{
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:24px 0; text-align:left;
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(20px,2.4vw,26px); color:var(--ink);
  letter-spacing:-.005em;
}
.faq-q .toggle{
  width:32px;height:32px;border-radius:50%;
  border:1px solid var(--ink); display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:transform .25s ease, background .25s ease, color .25s ease;
  font-size:14px;
}
.faq-item.open .faq-q .toggle{ background:var(--ink); color:var(--gold); transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .3s ease;
  color:var(--muted); font-size:16px; line-height:1.65;
}
.faq-a-inner{ padding:0 0 24px; max-width:60ch; }

/* ---------- SEO Local ---------- */
.seo-local{
  padding:96px 0; background:var(--cream-2);
  border-top:1px solid var(--line);
}
.seo-local h2{ margin:0 0 22px; max-width:24ch; }
.seo-local .seo-lead{
  color:var(--muted); font-size:16px; line-height:1.7;
  max-width:68ch; margin:0 0 48px;
}
.seo-grid{
  display:grid; gap:24px; grid-template-columns:1fr;
}
@media (min-width:820px){ .seo-grid{ grid-template-columns:repeat(3,1fr); } }
.seo-card{
  border-top:1px solid var(--ink);
  padding:24px 0 0;
}
.seo-card h3{
  font-family:var(--font-display); font-weight:500;
  font-size:24px; margin:0 0 10px;
}
.seo-card p{ margin:0; color:var(--muted); font-size:15px; line-height:1.6; }

.cta-final{
  padding:120px 0; text-align:center; background:var(--cream);
}
.cta-final h2{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(40px,7vw,88px); line-height:1.02; letter-spacing:-.015em;
  margin:0 0 24px; max-width:14ch; margin-left:auto; margin-right:auto;
}
.cta-final h2 em{ color:var(--gold); }
.cta-final p{ color:var(--muted); max-width:54ch; margin:0 auto 36px; font-size:17px; }

footer.site-footer{
  background:var(--ink); color:var(--cream);
  padding:64px 0 32px;
}
.foot-top{
  display:grid; gap:32px; grid-template-columns:1fr;
  padding-bottom:48px; border-bottom:1px solid rgba(250,247,240,.1);
}
@media (min-width:820px){ .foot-top{ grid-template-columns:1.4fr 1fr 1fr; gap:48px; } }
.foot-top h4{
  font-family:var(--font-body); font-weight:500;
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); margin:0 0 18px;
}
.foot-top p, .foot-top a{ color:rgba(250,247,240,.78); font-size:15px; line-height:1.7; text-decoration:none; }
.foot-top a:hover{ color:var(--gold); }
.foot-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.foot-brand .brand-name{ color:var(--cream); font-size:24px; }
.foot-brand .brand-mark{ background:var(--gold); color:var(--ink); }
.foot-brand p{ margin-top:18px; max-width:38ch; }
.foot-bottom{
  display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between;
  padding-top:28px;
  font-size:12px; color:rgba(250,247,240,.5); letter-spacing:.02em;
}
.disclaimer{
  margin-top:24px; padding:24px; background:rgba(250,247,240,.04);
  border-radius:10px; font-size:12.5px; line-height:1.7;
  color:rgba(250,247,240,.65); max-width:100%;
}
