:root {
  --navy: #10203b;
  --navy-dark: #0a1526;
  --gold: #b8935a;
  --gold-light: #d9b98a;
  --ivory: #f7f4ef;
  --text: #1f2937;
  --text-muted: #5b6472;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 20px 40px -20px rgba(16, 32, 59, 0.25);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .brand strong {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--text-muted); }

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75em;
}

.center { text-align: center; }
.section-lead.center { max-width: 620px; margin: 0 auto 2.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16,32,59,0.15);
}
.btn-ghost:hover { background: rgba(16,32,59,0.05); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16,32,59,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-right: 14px;
  border-radius: 6px;
  background: var(--ivory);
  padding: 4px 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 0.94rem;
}
.nav a { color: var(--text); opacity: 0.85; }
.nav a:hover { opacity: 1; color: var(--gold); }

.header-actions { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 90px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  max-width: 620px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .lead { color: rgba(255,255,255,0.78); max-width: 540px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.hero-badges li::before { content: "✓ "; color: var(--gold-light); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.hero-card-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-card p { color: rgba(255,255,255,0.85); font-size: 1.05rem; font-style: italic; }
.hero-card-name { display: block; margin-top: 16px; font-weight: 600; color: var(--gold-light); }

/* Sections */
.section { padding: 90px 0; }
.section-muted { background: var(--ivory); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #e7ddc9, #cbb98f);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
}
.about-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--navy);
}
.about-stats span { font-size: 0.85rem; color: var(--text-muted); }

/* Cards / areas */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(16,32,59,0.08);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.92rem; }

/* Diferenciais */
.diff-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.diff-list { list-style: none; padding: 0; margin: 24px 0 0; }
.diff-list li {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16,32,59,0.08);
}
.diff-list li strong { color: var(--navy); margin-bottom: 4px; }
.diff-list li span { color: var(--text-muted); font-size: 0.92rem; }
.diff-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  border-left: 4px solid var(--gold);
}
.testimonial p { color: var(--text); font-style: italic; }
.testimonial cite { font-size: 0.85rem; color: var(--text-muted); font-style: normal; }
.testimonial-note { text-align: center; font-size: 0.8rem; margin-top: 24px; color: var(--text-muted); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-list { list-style: none; padding: 0; margin-top: 20px; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid rgba(16,32,59,0.08); font-size: 0.95rem; }
.contact-list a { color: var(--navy); font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(16,32,59,0.18);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-status { min-height: 1.2em; font-size: 0.9rem; font-weight: 600; color: #2f7a4d; margin: 12px 0 0; }
.form-disclaimer { font-size: 0.76rem; color: var(--text-muted); margin-top: 10px; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; }
.footer-inner strong { color: var(--white); }
.footer-inner p { margin: 4px 0 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 20px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.8rem; width: 100%; text-align: center; color: rgba(255,255,255,0.4); margin: 20px 0 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .diff-inner, .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual, .about-photo, .diff-visual { display: none; }
  .cards-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(16,32,59,0.08);
  }
  .site-header.open .header-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 190px);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0 24px 20px;
  }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 60px 0; }
  .cards-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
}
