/* ============ JANELA PRODUTORA — LP ============ */
:root {
  --bg: #F7F3EC;
  --ink: #1A1A1A;
  --gold: #F5B800;
  --white: #FFFFFF;
  --dark: #111111;
  --whats: #25D366;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "DM Sans", -apple-system, sans-serif;
  --maxw: 1180px;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.0; }
h1, h2 { text-transform: uppercase; letter-spacing: 0.01em; font-weight: 800; }
h2, h3 { text-wrap: balance; }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

/* ============ LOGO ============ */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 42px; width: auto; display: block; }
.footer-brand .logo img { height: 52px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover { border-bottom-color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 16px 32px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { box-shadow: 0 8px 24px rgba(245, 184, 0, 0.35); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { box-shadow: 0 8px 24px rgba(17, 17, 17, 0.25); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 20px 44px; font-size: 18px; }
.btn-ghost {
  background: none; font-weight: 500; padding: 16px 8px;
  text-decoration: none; border-bottom: none; color: var(--ink);
}
.btn-ghost:hover { color: #000; }

/* ============ HERO ============ */
.hero { overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
  min-height: calc(100vh - 72px); padding-top: 48px; padding-bottom: 48px;
}
.hero h1 {
  font-size: clamp(48px, 6.2vw, 84px);
  margin: 22px 0 20px;
  text-wrap: pretty;
}
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 12px; background: var(--gold); z-index: -1; opacity: 0.9;
}
.hero-sub { font-size: 18px; color: #444; max-width: 46ch; }
.hero-ctas { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(26, 26, 26, 0.12); padding-top: 24px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; }
.trust-item svg { flex-shrink: 0; }
.trust-item.trust-strong { font-weight: 700; }
.trust-item.trust-strong b { color: var(--gold); font-weight: 800; }

.hero-photo { position: relative; --frame: clamp(16px, 2.2vw, 26px); }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
}
.hero-photo::after {
  content: ""; position: absolute;
  inset: var(--frame) calc(-1 * var(--frame)) calc(-1 * var(--frame)) var(--frame);
  border: 2px solid var(--gold); z-index: -1;
}

/* ============ SECTION SCAFFOLD ============ */
section { padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(38px, 4.6vw, 60px); margin-top: 18px; }
.sec-head p { margin-top: 16px; color: #444; font-size: 17px; }

/* ============ QUEM É A JANELA ============ */
.about { background: var(--white); }
.about .wrap {
  display: grid; grid-template-columns: 1fr 0.85fr;
  gap: 72px; align-items: center;
}
.about h2 { font-size: clamp(34px, 4vw, 52px); margin: 18px 0 24px; }
.about-sub { font-family: var(--sans); font-size: 19px; font-weight: 400; color: #6B6B6B; margin: -12px 0 24px; text-wrap: pretty; }
.about-copy p { margin-bottom: 16px; color: #333; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-photo::before {
  content: ""; position: absolute; inset: -24px 24px 24px -24px;
  background: var(--bg); z-index: -1;
}
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.fact { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 500; line-height: 1.45; }
.fact svg { flex-shrink: 0; margin-top: 2px; }

/* ============ ENSAIOS ============ */
.ensaios-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.25s;
}
.card:hover { border-color: rgba(26, 26, 26, 0.25); box-shadow: 0 12px 32px rgba(26, 26, 26, 0.07); }
.card-photo { overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-photo img { transform: scale(1.04); }
.card-body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.card h3 { font-size: 30px; }
.card-price { text-align: right; flex-shrink: 0; }
.card-price small { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #777; font-weight: 500; }
.card-price strong { font-size: 19px; font-weight: 700; white-space: nowrap; }
.card-meta { margin: 14px 0 20px; color: #555; font-size: 14px; line-height: 1.6; }
.card-meta b { color: var(--ink); font-weight: 600; }
.card-emotion {
  font-family: var(--sans);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  margin: 10px 0 4px;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.card-cta {
  margin-top: auto; align-self: flex-start;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 0; border-bottom: 2px solid var(--gold);
  transition: gap 0.2s;
}
.card-cta:hover { gap: 14px; }

.card-help { position: relative; background: var(--dark); border-color: var(--dark); }
.card-help-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.card-help::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.9) 100%);
}
.card-help .card-body { position: relative; z-index: 2; flex: 1; justify-content: flex-end; padding: 28px; }
.card-help .kicker, .card-help .kicker::before { color: var(--white); }
.card-help .kicker::before { background: var(--gold); }
.card-help h3 { color: var(--white); font-size: 30px; }
.card-help .card-meta { color: #e0ddd6; }
.card-help .card-cta { color: var(--white); }
.card:hover .card-help-bg { transform: scale(1.04); transition: transform 0.5s ease; }

.ensaios-foot { margin-top: 64px; text-align: center; }
.ensaios-foot p { font-size: 17px; margin-bottom: 20px; }

/* info gerais */
.info-gerais { margin-top: 72px; background: var(--white); border: 1px solid rgba(26,26,26,0.1); }
.info-gerais summary {
  cursor: pointer; list-style: none; padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15px;
}
.info-gerais summary::-webkit-details-marker { display: none; }
.info-gerais summary .chev { transition: transform 0.25s; }
.info-gerais[open] summary .chev { transform: rotate(180deg); }
.info-gerais ul {
  padding: 0 28px 28px 28px; list-style: none;
  columns: 2; column-gap: 48px;
}
.info-gerais li {
  font-size: 14px; color: #444; padding: 8px 0 8px 22px;
  position: relative; break-inside: avoid;
}
.info-gerais li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 10px; height: 2px; background: var(--gold);
}

/* ============ EQUIPE ============ */
.team { background: #EDE8DF; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card {
  background: var(--white); border: 1px solid #e5e0d5;
  padding: 20px; border-radius: 2px;
  display: flex; flex-direction: column;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); color: #111;
  font-family: var(--display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden;
}
.team-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; border-radius: 50%; }
.team-role {
  color: var(--gold); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
}
.team-name {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin: 6px 0 2px; line-height: 1.1;
}
.team-handle { font-size: 11px; color: #9a9a9a; text-decoration: none; transition: color 0.18s; }
a.team-handle:hover { color: var(--gold); }
.team-desc { font-size: 12px; color: #6B6B6B; line-height: 1.6; margin-top: 12px; }

/* ============ CASAMENTOS E EVENTOS ============ */
.casamentos { background: var(--dark); color: var(--white); }
.casamentos .wrap {
  display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: center;
}
.casamentos .kicker { color: var(--white); }
.casamentos h2 { font-size: clamp(34px, 4.2vw, 56px); margin: 18px 0 22px; }
.casamentos-copy p { color: #b3b3b3; font-size: 17px; max-width: 50ch; margin-bottom: 32px; }
.casamentos-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.casamentos-media img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.casamentos-media img:nth-child(2) { margin-top: 28px; }
.casamentos-media img:nth-child(3) { margin-top: -14px; }

/* ============ DEPOIMENTOS ============ */
.testi-carousel { display: flex; align-items: stretch; gap: 10px; }
.testi-viewport { overflow: hidden; flex: 1; }
.testi-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.testi-slide { flex: 0 0 100%; box-sizing: border-box; padding: 6px 14px; display: flex; }
@media (min-width: 700px) { .testi-slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testi-slide { flex-basis: 33.3333%; } }
.testi-arrow {
  flex: 0 0 auto; align-self: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(26, 26, 26, 0.14); color: var(--dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.testi-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.testi-arrow svg { width: 20px; height: 20px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(26, 26, 26, 0.18); transition: background 0.2s, transform 0.2s; }
.testi-dot.active { background: var(--gold); transform: scale(1.25); }
.quote {
  background: var(--white); border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 36px 32px; display: flex; flex-direction: column; flex: 1; width: 100%;
}
.quote-mark { font-family: var(--display); font-size: 68px; line-height: 0.5; color: var(--gold); margin-bottom: 22px; }
.quote p { font-size: 15.5px; color: #333; flex: 1; }
.quote-who { margin-top: 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.quote-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-top: 6px; }

/* ============ CTA FINAL ============ */
.final { background: var(--dark); color: var(--white); text-align: center; padding: 128px 0; }
.final h2 { font-size: clamp(40px, 5vw, 72px); max-width: 16ch; margin: 0 auto; }
.final .kicker { justify-content: center; }
.final p { color: #aaa; margin: 24px auto 40px; font-size: 18px; max-width: 48ch; }
.final small { display: block; margin-top: 20px; color: #777; font-size: 13.5px; }
.final .slogan { display: block; margin-top: 26px; font-style: italic; font-size: 15px; color: #8a8a8a; text-transform: none; letter-spacing: 0; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark); color: #999;
  border-top: 1px solid var(--gold);
  padding: 56px 0;
}
footer .wrap {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px 64px; flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo img { margin-bottom: 18px; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; color: #8f8f8f; }
.footer-brand .logo-word { color: var(--white); }
.footer-brand .logo-sub { color: var(--white); }
.footer-info { font-size: 13px; line-height: 2; text-align: right; }
.footer-info a { color: #ccc; text-decoration: none; }
.footer-info a:hover { color: var(--gold); }
.footer-slogan { width: 100%; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-style: italic; font-size: 13px; color: #6f6f6f; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whats); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .tip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  padding: 8px 14px; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .tip { opacity: 1; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(17, 17, 17, 0.66);
  display: none; align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
@media (min-width: 720px) { .modal-overlay.open { align-items: center; } }
.modal {
  background: var(--bg); width: 100%; max-width: 640px;
  max-height: 88vh; overflow-y: auto;
  padding: 44px 44px 40px; position: relative;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--ink); opacity: 0.6; transition: opacity 0.15s;
}
.modal-close:hover { opacity: 1; }
.modal h3 { font-size: 40px; margin: 8px 0 4px; text-transform: uppercase; }
.modal-ideal { font-size: 14px; color: #666; margin-bottom: 28px; }
.plan-row {
  background: var(--white); border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 20px 24px; margin-bottom: 12px;
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
}
.plan-row h4 { font-size: 16px; font-weight: 700; }
.plan-row .plan-specs { font-size: 13.5px; color: #555; margin-top: 6px; }
.plan-row .plan-price { font-family: var(--display); font-size: 26px; font-weight: 800; white-space: nowrap; }
.plan-row .plan-price small { font-family: var(--sans); font-size: 11px; font-weight: 500; color: #777; }
.modal-notes { font-size: 13px; color: #666; margin: 20px 0 28px; line-height: 1.7; }
.modal .btn { width: 100%; }

/* ============ REVEAL ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .ensaios-grid { gap: 24px; }
  .about .wrap { gap: 48px; }
}
@media (max-width: 860px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; gap: 40px; }
  .hero-photo { order: -1; margin: 0 -24px; --frame: clamp(12px, 4vw, 20px); }
  .hero-photo::after { display: block; inset: var(--frame) var(--frame) calc(var(--frame) * 2) calc(var(--frame) * 2); }
  .hero-photo img { aspect-ratio: 4 / 5; object-position: center 22%; max-height: 62vh; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .about-photo::before { display: none; }
  .about-facts { grid-template-columns: 1fr; }
  .ensaios-grid { grid-template-columns: 1fr; }
  .info-gerais ul { columns: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .casamentos .wrap { grid-template-columns: 1fr; gap: 36px; }
  .casamentos-media img:nth-child(2), .casamentos-media img:nth-child(3) { margin-top: 0; }
  /* depoimentos: carrossel compacto no mobile */
  .testi-arrow { width: 38px; height: 38px; }
  .testi-slide { padding: 4px 6px; }
  .modal { padding: 36px 24px 28px; }
  footer .wrap { flex-direction: column; }
  .footer-info { text-align: left; }
  .footer-brand { max-width: none; }
  /* WhatsApp flutuante: menor e sem cobrir texto */
  .wa-float { width: 48px; height: 48px; right: 16px; bottom: 16px; }
  .wa-float .tip { display: none; }
}
