/* =========================================================
   Dr. Fernando Feitosa — Página de Vendas
   Paleta: #0E2D4F (navy)  ·  #E7B170 (dourado)
   Tipografia: Cormorant Garamond (títulos) + EB Garamond (texto)
   Mobile-first · 100% responsiva
   ========================================================= */

:root {
  --navy: #0E2D4F;
  --navy-deep: #0a2138;
  --navy-soft: #16385d;
  --gold: #E7B170;
  --gold-soft: #f0c99b;
  --cream: #f7f1e8;
  --paper: #fbf8f3;
  --ink: #1b2733;
  --muted: #5d6b7a;
  --line: rgba(14, 45, 79, .12);
  --shadow: 0 18px 50px -22px rgba(14, 45, 79, .45);
  --shadow-sm: 0 8px 24px -14px rgba(14, 45, 79, .4);
  --maxw: 1180px;
  --r: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: .2px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 56px 0;
}

/* eyebrow / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.kicker--center {
  justify-content: center;
}

.kicker--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--navy);
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  min-height: 54px;
  line-height: 1.1;
  text-align: center;
}

.btn svg {
  flex: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(231, 177, 112, .7);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(231, 177, 112, .85);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--navy);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--gold svg {
  width: 30px;
  height: 30px;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  transition: box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}

.header.scrolled {
  box-shadow: 0 6px 26px -12px rgba(0, 0, 0, .5);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .4px;
}

.brand__sub {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: rgba(255, 255, 255, .86);
  font-size: 1rem;
  transition: color .2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--gold);
}

.header .btn {
  padding: 12px 22px;
  min-height: 46px;
  font-size: .98rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: .3s;
}

/* mobile drawer */
.mnav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: var(--navy-deep);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  padding: 90px 30px 30px;
  gap: 6px;
}

.mnav.open {
  transform: translateX(0);
}

.mnav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mnav .btn {
  margin-top: 22px;
}

.mnav__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 31, .6);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.scrim.open {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-desktop.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  height: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;


}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, .9);
  margin: 10px 0 10px;
  line-height: 1.65;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.hero .hero__inner {
  position: absolute;
  z-index: 2;

}

/* =========================================================
   SOBRE MIM
   ========================================================= */
.sobre {
  background: var(--paper);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.sobre__photo {
  position: relative;
}

.sobre__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
  display: block;
}

.sobre__photo::after {
  display: none;
}

.sobre__photo::before {
  display: none;
}

.cred-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred-list li {
  position: relative;
  padding-left: 40px;
  font-size: .97rem;
  color: var(--ink);
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* =========================================================
   ÁREAS DE ATUAÇÃO
   ========================================================= */
.areas {
  background: var(--navy);
  color: #fff;
}

.areas .section-title {
  color: #fff;
}

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

.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.area-card {
  border: 1px solid rgba(231, 177, 112, .28);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .02);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.area-card:hover {
  background: rgba(231, 177, 112, .1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.area-card__mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.area-card span {
  font-size: .95rem;
  color: #fff;
}

/* =========================================================
   PROJETO IMPACTO — VÍDEO
   ========================================================= */
.video-sec {
  background: var(--cream);
}

.video-frame {
  position: relative;
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-ph {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  padding: 24px;
}

.video-ph__play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 14px 30px -10px rgba(231, 177, 112, .7);
}

.video-ph__play svg {
  margin-left: 5px;
}

.video-ph code {
  font-family: monospace;
  font-size: .85rem;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .06);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}

/* =========================================================
   POR QUE ESCOLHER
   ========================================================= */
.why {
  background: var(--paper);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card__num {
  font-family: Poppins;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.why-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 14px 0 10px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

.ph-note {
  font-family: monospace;
  font-size: .78rem;
  color: #b08a4f;
  background: #faf2e4;
  border: 1px dashed var(--gold);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testi {
  background: var(--navy);
  color: #fff;
}

.testi .section-title {
  color: #fff;
}

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

.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.testi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(231, 177, 112, .22);
  border-radius: var(--r);
  padding: 34px 30px;
  position: relative;
}

.testi-card__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: .6;
  opacity: .55;
}

.testi-card p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.12rem;
  font-style: italic;
  margin: 8px 0 22px;
}

.testi-card__who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(231, 177, 112, .2);
  border: 1px solid var(--gold);
  flex: none;
}

.testi-card__who b {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.testi-card__who small {
  color: var(--gold);
}

.testi-card__who span {
  line-height: 20px;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(231, 177, 112, .08);
}

.cta-band::before {
  top: -180px;
  left: -120px;
}

.cta-band::after {
  bottom: -220px;
  right: -120px;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 18px;
}

.cta-band p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 32px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--paper);
}

.faq__list {
  max-width: 820px;
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-q__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  position: relative;
  transition: .3s;
}

.faq-q__icon::before,
.faq-q__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-q__icon::before {
  width: 12px;
  height: 2px;
}

.faq-q__icon::after {
  width: 2px;
  height: 12px;
  transition: transform .3s;
}

.faq-item.open .faq-q__icon {
  background: var(--gold);
}

.faq-item.open .faq-q__icon::before,
.faq-item.open .faq-q__icon::after {
  background: var(--navy);
}

.faq-item.open .faq-q__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a__inner {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* =========================================================
   CONTATO
   ========================================================= */
.contato {
  background: var(--navy-deep);
  color: #fff;
}

.contato .section-title {
  color: #fff;
}

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

.contato__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 44px;
}

.ct-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(231, 177, 112, .22);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  width: calc(50% - 20px);
  flex-direction: column;
  justify-content: flex-start;
}

.ct-card__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(231, 177, 112, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.ct-card__ic svg {
  width: 22px;
  height: 22px;
}

.ct-card h4 {
  font-size: 1rem;
  color: var(--gold);
  margin: 0px;
}

.ct-card p,
.ct-card a {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  word-break: break-word;
  margin: 0;
}

.ct-card a:hover {
  color: var(--gold);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background-color: #0a2138;
  border-top: 2px solid #102d4b;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  padding: 20px 0;
}

.footer__copy {
  font-size: .88rem;
  margin: 0;
  line-height: 1.5;
}


/* floating whatsapp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* hero logo */
.hero__logo {
  width: 170px;
  height: auto;
  margin-bottom: 28px;
  display: block;
}

/* contato logo */
.contato__logo {
  width: 140px;
  height: auto;
  margin-bottom: 22px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (min-width:921px) {
  .hero {
    align-items: flex-start;
    justify-content: center;
  }

  .hero .wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .hero .wrap .hero__inner .hero__content {
    align-items: flex-start;
    width: 100%;
    max-width: 510px;
  }

}


@media (max-width:920px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header .btn--gold {
    display: none;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__photo {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width:760px) {
  body {
    font-size: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .hero .wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* ---- HERO empilhado: imagem em cima, texto embaixo ---- */
  .hero__inner {
    display: block;
    min-height: 0;
  }

  .hero__media {
    inset: auto;
    width: 100%;
    background-image: url('assets/hero-mobile.webp');
    background-position: center top;
  }

  .hero__content {
    position: relative;
    max-width: none;
    text-align: center;
  }

  .hero__content .kicker {
    justify-content: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__trust {
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width:760px) {
  .header {
    padding: 14px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .area-card {
    padding: 18px 14px;
  }

  .area-card span {
    font-size: 1rem;
  }

  .btn {
    width: auto;
  }

  .cta-band .btn {
    width: 100%;
  }
}

@media (max-width:430px) {
  .areas__grid {
    grid-template-columns: 1fr;
  }

  .brand__sub {
    font-size: .62rem;
  }
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}