/* ===== Creative Wave — Brand Tokens ===== */
:root {
  --charcoal-deep: #1C1B19;
  --charcoal: #2B2A28;
  --charcoal-light: #37352F;
  --gold: #B8894A;
  --gold-light: #D9B475;
  --offwhite: #F2EFE9;
  --gray-text: #A69E8F;
  --gray-border: #45423C;
  --success-bg: #E9F3E9;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--charcoal);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--gray-text); }
p.lead { font-size: 1.15rem; color: #C7C0B2; line-height: 1.7; }

.gold { color: var(--gold); }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 22px 0 26px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal-deep);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border-color: var(--gray-border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 42, 40, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--offwhite);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--offwhite); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-toggle { display: none; background: none; border: none; color: var(--offwhite); font-size: 24px; cursor: pointer; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn span.btn-label { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero p.lead { max-width: 460px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-graphic { position: relative; height: 380px; }
.growth-line {
  width: 100%;
  height: 100%;
}
.growth-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 2.2s ease forwards 0.3s;
}
.growth-line circle {
  fill: var(--charcoal);
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0;
  animation: fadein 0.5s ease forwards;
}
.growth-line circle:nth-of-type(2) { animation-delay: 1s; }
.growth-line circle:nth-of-type(3) { animation-delay: 1.4s; }
.growth-line circle:nth-of-type(4) { animation-delay: 1.8s; }
.growth-line circle:nth-of-type(5) { animation-delay: 2.1s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-graphic { height: 220px; order: -1; }
}

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-alt { background: var(--charcoal-deep); }

/* ===== Cards ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--charcoal-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card .icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }
.card a.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.02em;
}

/* stat cards */
.stat-card { text-align: left; }
.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

/* numbered steps */
.step {
  display: flex;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-border);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  min-width: 50px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.95rem; max-width: 560px; }

/* value cards (sobre page) */
.value-card { text-align: center; }
.value-card .icon { margin: 0 auto 22px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal-light));
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 64px 48px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 480px; margin: 0 auto 32px; }
.cta-banner .hero-ctas { justify-content: center; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--gray-border);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 30px; width: auto; }
.footer-brand span { font-family: var(--font-display); font-size: 1rem; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: var(--gray-text);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--offwhite); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--gray-border);
  font-size: 13px; color: var(--gray-text);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ===== Page header (inner pages) ===== */
.page-header { padding: 70px 0 40px; }
.page-header .divider { margin-top: 10px; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; color: var(--gray-text); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--charcoal-light);
  border: 1px solid var(--gray-border);
  color: var(--offwhite);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.contact-info-card {
  background: var(--charcoal-light);
  border: 1px solid var(--gray-border);
  padding: 36px;
  height: fit-content;
}
.contact-info-card .info-row {
  display: flex; gap: 16px; margin-bottom: 26px;
  padding-bottom: 26px; border-bottom: 1px solid var(--gray-border);
}
.contact-info-card .info-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-card .info-row .icon { width: 40px; height: 40px; flex-shrink: 0; }
.contact-info-card .info-row h4 { font-size: 14px; color: var(--offwhite); margin-bottom: 4px; }
.contact-info-card .info-row p, .contact-info-card .info-row a { font-size: 14px; margin: 0; }

.form-note {
  font-size: 12px; color: var(--gray-text); margin-top: 10px;
}

/* ===== Floating WhatsApp Button ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--charcoal-deep);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-float:hover { background: var(--gold-light); transform: translateY(-2px); }
.wa-float svg { flex-shrink: 0; }
.wa-float .wa-dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 12px; height: 12px;
  background: #6FBF73;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}
@media (max-width: 600px) {
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

/* ===== Trust bar ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-text);
}
.trust-item svg { flex-shrink: 0; color: var(--gold); }

/* ===== Testimonials ===== */
.placeholder-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184, 137, 74, 0.12);
  border: 1px solid rgba(184, 137, 74, 0.35);
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { color: #C7C0B2; font-size: 0.95rem; font-style: italic; flex-grow: 1; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-border); }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--charcoal-deep); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: var(--gold);
}
.testimonial-author h3 { font-family: var(--font-body); font-size: 13.5px; color: var(--offwhite); margin-bottom: 2px; }
.testimonial-author p { font-size: 12px; margin: 0; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--offwhite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 24px; max-width: 680px; font-size: 0.95rem; }

/* ===== Scarcity strip ===== */
.scarcity-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(184, 137, 74, 0.08);
  border: 1px solid rgba(184, 137, 74, 0.3);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--gold-light);
  margin-top: 28px;
}
.scarcity-strip svg { flex-shrink: 0; color: var(--gold); }
