/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1E3342;
  --brown:   #7F6044;
  --gold:    #9D7136;
  --tan:     #BC9E7C;
  --light:   #D9D9D9;
  --slate:   #3F525F;
  --white:   #FFFFFF;
  --off-white: #F7F5F2;
  --text:    #2C2C2C;
  --muted:   #6B6B6B;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 8px;
  --shadow: 0 4px 24px rgba(30,51,66,.10);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; border-radius: var(--radius); }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section--light { background: var(--off-white); }
.section--dark  { background: var(--navy); color: var(--white); }

.section__head { text-align: center; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 12px; }
.section--dark .section__head h2 { color: var(--white); }
.section__head--light h2 { color: var(--white); }

.muted { color: var(--muted); font-size: .95rem; }
.muted--light { color: var(--tan); }

.accent { color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--primary:hover { background: var(--brown); border-color: var(--brown); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--full { width: 100%; text-align: center; }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; flex-direction: column; }
.brand__name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.brand__role { font-size: .72rem; color: var(--tan); letter-spacing: .04em; }

.nav__list { display: flex; gap: 8px; align-items: center; }
.nav__link {
  color: var(--light);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 18px;
}
.nav__link--cta:hover { background: var(--brown); }

.nav__toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 100px 0;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}
.hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 24px; }
.hero__subtitle { font-size: 1.05rem; color: var(--light); margin-bottom: 36px; max-width: 520px; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__badges li { font-size: .85rem; color: var(--tan); }

.hero__image img { width: 100%; max-height: 560px; object-fit: cover; object-position: top; border-radius: 12px; box-shadow: var(--shadow); }

/* ===========================
   SOBRE
=========================== */
.about__image img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; }
.about__text h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 6px; }
.about__role { color: var(--gold); font-size: .9rem; font-weight: 500; margin-bottom: 20px; }
.about__text p { margin-bottom: 16px; }

/* ===========================
   STATS
=========================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__number { display: block; font-family: var(--font-serif); font-size: 3rem; color: var(--tan); font-weight: 700; }
.stat__label { font-size: .85rem; color: var(--light); margin-top: 8px; }

/* ===========================
   CARDS
=========================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(30,51,66,.15); }

.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }

.card__list { padding-left: 0; }
.card__list li { font-size: .85rem; color: var(--slate); padding: 4px 0; border-bottom: 1px solid var(--light); }
.card__list li::before { content: "→ "; color: var(--gold); }

/* ===========================
   STEPS
=========================== */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--light);
}
.step:last-child { border-bottom: none; }

.step__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--tan);
  font-weight: 700;
  min-width: 64px;
  line-height: 1;
}
.step__content h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.step__content p { color: var(--muted); }

/* ===========================
   LISTA BOXED
=========================== */
.list--boxed { display: flex; flex-direction: column; gap: 12px; }
.list--boxed li {
  background: var(--white);
  border: 1px solid var(--light);
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .925rem;
  box-shadow: var(--shadow);
}

/* ===========================
   PRÓXIMOS PASSOS
=========================== */
.next-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.next-step { max-width: 260px; }
.next-step__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.next-step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.next-step p { color: var(--tan); font-size: .875rem; }
.next-step__arrow { font-size: 2rem; color: var(--tan); }

/* ===========================
   FORMULÁRIO
=========================== */
.form { display: flex; flex-direction: column; gap: 16px; }

.form__group label { display: block; font-size: .85rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(157,113,54,.15);
}

.form__note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 4px; }

.contact__image img { width: 100%; max-height: 560px; object-fit: cover; object-position: top; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--navy); color: var(--light); padding: 48px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }

.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer .brand__name { font-size: 1.3rem; }

.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__nav a { color: var(--tan); font-size: .875rem; transition: var(--transition); }
.footer__nav a:hover { color: var(--white); }

.footer__copy { font-size: .8rem; color: var(--muted); }

/* ===========================
   EXP TEXT
=========================== */
.exp__text p { margin-bottom: 20px; color: var(--muted); }
.exp__text p strong { color: var(--navy); }

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 960px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__image   { order: -1; }
  .hero__image img { max-height: 380px; }
  .grid-2        { grid-template-columns: 1fr; }
  .cards         { grid-template-columns: 1fr 1fr; }
  .stats         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .cards   { grid-template-columns: 1fr; }
  .stats   { grid-template-columns: 1fr 1fr; }
  .nav__list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .nav__list--open { display: flex; }
  .nav__toggle { display: block; }
  .header__inner { position: relative; }
  .next-steps { flex-direction: column; }
  .next-step__arrow { transform: rotate(90deg); }
  .hero__actions { flex-direction: column; }
}

/* ===========================
   CONTATO (CTA no lugar do formulário)
=========================== */
.contact-cta { align-items: stretch; }

.contact__panel{
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.contact__kicker{
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}

.contact__title{
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact__lead{
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 14px;
}

.contact__box{
  margin-top: 18px;
  padding: 18px 18px;
  border: 1px solid var(--light);
  border-radius: 12px;
  background: var(--off-white);
}

.contact__box--soft{
  background: #ffffff;
}

.contact__boxTitle{
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.contact__list{
  display: grid;
  gap: 8px;
}

.contact__list li{
  color: var(--slate);
  font-size: .92rem;
}

.contact__steps{
  margin-left: 18px;
  display: grid;
  gap: 8px;
}

.contact__steps li{
  color: var(--slate);
  font-size: .92rem;
}

.contact__urgency{
  margin: 18px 0 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(157, 113, 54, .08);
  border-radius: 10px;
}

.contact__urgencyText{
  color: var(--navy);
  font-size: .92rem;
}

.contact__meta{
  margin-top: 14px;
}

.contact__note{
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 10px;
}

.contact__smallActions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.contact__btnSmall{
  padding: 10px 14px;
  font-size: .88rem;
}

.contact__link{
  color: var(--navy);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 0;
}

.contact__link:hover{
  color: var(--gold);
}

.contact__disclaimer{
  margin-top: 12px;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

/* Responsivo: deixa o painel bem “respirado” no mobile */
@media (max-width: 960px){
  .contact__panel{ padding: 26px 20px; }
}

