/* =============================================
   AGÊNCIA WESLEY — Flávia Almeida Psicanalista
   Paleta: Off-White / Azul Petróleo / Ouro Velho / Terracota
   ============================================= */

/* --- Variáveis --- */
:root {
  --petroleo:     #0C1A3E;
  --petroleo-2:   #162E5C;
  --salvia:       #2C4A3E;
  --terracota:    #0C1A3E;
  --terracota-2:  #081330;
  --ouro:         #C8901E;
  --ouro-bright:  #DDA530;
  --ouro-dark:    #A67018;
  --white:        #FFFFFF;
  --off-white:    #F8F6F2;
  --cream:        #F0E5D5;
  --nude:         #E8D7C0;
  --text:         #0C1A3E;
  --text-light:   #5A5048;
  --border:       #DDD0C0;
  --border-light: #EAE0D0;
  --font-title:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       10px;
  --radius-photo: 20px;
  --shadow:       0 18px 60px rgba(0,0,0,.08);
  --shadow-ouro:  0 8px 24px rgba(200, 144, 30, 0.28);
  --transition:   300ms ease;
  --max-width:    1200px;
  --text-secondary: #6B625D;

  /* Escala de 8pt */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.75;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* --- Utilitários --- */
.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--ouro);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--petroleo);
  color: var(--white);
  border-color: var(--petroleo);
  box-shadow: 0 4px 16px rgba(12, 26, 62, 0.18);
}
.btn--primary:hover {
  background: var(--petroleo-2);
  border-color: var(--petroleo-2);
  box-shadow: 0 8px 32px rgba(12, 26, 62, 0.30);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--petroleo);
  border-color: var(--ouro);
}
.btn--ghost:hover {
  background: var(--petroleo);
  border-color: var(--petroleo);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--cta {
  background: var(--ouro);
  color: var(--petroleo);
  border-color: var(--ouro);
  height: 44px;
  padding: 0 24px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
}
.btn--cta:hover {
  background: var(--ouro-dark);
  box-shadow: var(--shadow-ouro);
  transform: translateY(-1px);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* Seções */
.section {
  padding: 7rem 0;
}
.section__header {
  max-width: 620px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__header p {
  color: var(--text-light);
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouro-dark);
  margin-bottom: 0.85rem;
}
.section__tag::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--ouro);
  border-radius: 2px;
}

/* Tipografia */
h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--petroleo);
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
}
em {
  font-style: italic;
  color: var(--ouro-dark);
}
p {
  color: var(--text-light);
}

/* Fade-in ao scroll */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 550ms ease-out, transform 550ms ease-out;
}
.fade-in--delay {
  transition-delay: 0.12s;
}
.fade-in--delay2 {
  transition-delay: 0.24s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid rgba(200, 144, 30, 0.08);
  box-shadow: 0 2px 20px rgba(12, 26, 62, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 28px rgba(12, 26, 62, 0.10);
}

/* Assinatura institucional — logo + nome + subtítulo */
.header__brand {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 2;
}
.header__logo-img {
  height: 54px;
  width: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 4px rgba(12,26,62,0.08));
  transition: opacity 250ms ease;
  flex-shrink: 0;
}
.header__brand:hover .header__logo-img { opacity: 0.85; }
.header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.header__brand-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}
.header__brand-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: #77706A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 82px;
}

/* Botão CTA e toggle fixos à direita */
.header__inner > .btn--cta {
  position: absolute;
  right: 0;
}
.header__inner > .header__menu-toggle {
  position: absolute;
  right: 0;
}

.header__nav {
  display: flex;
  gap: 28px;
}
.header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.785rem;
  letter-spacing: 0.055em;
  color: var(--text-light);
  transition: color 250ms ease;
}
.header__nav a:hover {
  color: var(--petroleo);
}
.header__nav a i {
  font-size: 0.72rem;
  color: var(--ouro);
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--petroleo);
  transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 72% 45%, rgba(212,175,55,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 60%, rgba(12,26,62,0.03) 0%, transparent 70%),
    #F7F2EC;
  position: relative;
  overflow: hidden;
}

/* --- Feixe de luz --- */
.hero__light-beam {
  position: absolute;
  top: -30%;
  left: -15%;
  width: 65%;
  height: 130%;
  background: radial-gradient(ellipse at top left,
    rgba(183,138,46,0.10) 0%,
    rgba(247,242,236,0) 60%);
  pointer-events: none;
  z-index: 0;
  animation: beamPulse 10s ease-in-out infinite;
}
@keyframes beamPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* --- Globo animado --- */
.hero__globe-wrap {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 45vw, 600px);
  height: clamp(340px, 45vw, 600px);
  opacity: 0.13;
  filter: blur(0.8px);
  z-index: 0;
  pointer-events: none;
  animation: globeFloat 18s ease-in-out infinite, globeBreathe 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes globeFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50%       { transform: translate(-50%, calc(-50% - 10px)) rotate(0.5deg); }
}
@keyframes globeBreathe {
  0%, 100% { opacity: 0.13; }
  50%       { opacity: 0.18; }
}
.hero__globe-svg { width: 100%; height: 100%; }

/* --- Canvas partículas --- */
.hero__particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- Layout do hero --- */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
  column-gap: var(--sp-8);
  padding-top: 106px;
  padding-bottom: var(--sp-10);
}

/* --- Foto --- */
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-photo);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--nude);
  box-shadow: var(--shadow);
  width: 95%;
}
.hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: calc(var(--radius-photo) - 4px);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

/* Badge centralizado */
.hero__badge {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  width: max-content;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero__badge strong {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--ouro-dark);
}
.hero__badge span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

/* --- Logo SVG no hero --- */
.hero__logo-svg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--sp-3);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hero__logo-svg {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  animation: fadeIn 550ms ease-out 0.2s both;
  filter: drop-shadow(0 2px 10px rgba(200,144,30,0.15));
}

/* --- Logo refinada no hero --- */
.hero__logo-impact-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hero__logo-impact-wrap::before,
.hero__logo-impact-wrap::after {
  display: none;
}
.hero__logo-impact {
  width: clamp(100px, 13vw, 150px);
  height: auto;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  animation: fadeIn 1s ease 0.3s both, coinFloat 6s ease-in-out 1.3s infinite;
  filter: drop-shadow(0 2px 10px rgba(200,144,30,0.20));
}

/* --- Conteúdo --- */
.hero__content--centered {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
  align-self: start;
  row-gap: 0;
}

/* Logo moeda 3D — hero */
.hero__logo-coin {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  /* Aro dourado metálico em gradiente (borda da moeda) */
  border: 3px solid transparent;
  background-image: url('assets/logo-flavia-almeida.png');
  background-size: cover;
  background-clip: content-box;
  /* Efeito 3D: sombras em camadas simulando profundidade e luz */
  box-shadow:
    /* brilho superior-esquerdo (luz incidindo) */
    inset 0 2px 4px rgba(255,255,255,0.55),
    /* sombra interna inferior (profundidade) */
    inset 0 -2px 4px rgba(12,26,62,0.25),
    /* aro dourado externo */
    0 0 0 3px #c8901e,
    0 0 0 5px #e8b84b,
    0 0 0 7px #a67018,
    /* sombra de elevação (moeda levantada da superfície) */
    0 6px 0 rgba(100,68,10,0.55),
    0 8px 16px rgba(12,26,62,0.35),
    0 12px 32px rgba(183,138,46,0.18);
  /* Perspectiva leve */
  transform: perspective(300px) rotateX(6deg);
  animation: fadeIn 1s ease 0.5s both, coinFloat 5s ease-in-out 1.5s infinite;
}
@keyframes coinFloat {
  0%, 100% { transform: perspective(300px) rotateX(6deg) translateY(0); }
  50%       { transform: perspective(300px) rotateX(6deg) translateY(-5px); }
}

/* Logo moeda 3D — rodapé */
.footer__logo-coin {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.85rem;
  border: 3px solid transparent;
  background-image: url('assets/logo-flavia-almeida.png');
  background-size: cover;
  background-clip: content-box;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.3),
    0 0 0 3px #c8901e,
    0 0 0 5px #e8b84b,
    0 0 0 7px #a67018,
    0 6px 0 rgba(80,50,5,0.6),
    0 8px 18px rgba(0,0,0,0.45),
    0 12px 30px rgba(183,138,46,0.15);
  transform: perspective(300px) rotateX(6deg);
  clip-path: none;
  animation: coinFloat 5s ease-in-out 2s infinite;
}

/* Logo flutuante em camadas */
.hero__logo-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-radius: 10px;
  /* Camada 3 — aureola externa difusa */
  filter: drop-shadow(0 0 40px rgba(183,138,46,0.22));
}

/* Logo posicionada no topo, espalhada em largura total acima das colunas */
.hero__logo-wrap--top {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Camada 1 — glow de fundo pulsante */
.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at center,
    rgba(183,138,46,0.14) 0%,
    rgba(247,242,236,0.0) 70%);
  border-radius: 50%;
  filter: blur(18px);
  animation: logoAura 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes logoAura {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Camada 2 — anel dourado sutil */
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  border: 1px solid rgba(183,138,46,0.2);
  box-shadow:
    0 0 0 1px  rgba(183,138,46,0.08),
    0 0 0 6px  rgba(183,138,46,0.04),
    0 0 0 14px rgba(183,138,46,0.02);
  animation: logoRing 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoRing {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.04); opacity: 1; }
}

/* Camada 4 — a logo propriamente dita (topo da pilha) */
.hero__logo-float {
  position: relative;
  z-index: 2;
  width: min(520px, 88%);
  height: auto;
  border-radius: 10px;
  display: block;
  /* Recorte que remove o símbolo do Gemini no canto inferior direito */
  clip-path: inset(0 7% 12% 0);
  animation: logoEntrance 1s cubic-bezier(0.22,1,0.36,1) 0.4s both,
             logoFloat 6s ease-in-out 1.5s infinite;
  /* Sombra em múltiplas camadas */
  filter:
    drop-shadow(0 4px 6px  rgba(12,26,62,0.12))
    drop-shadow(0 12px 24px rgba(12,26,62,0.10))
    drop-shadow(0 1px 2px  rgba(183,138,46,0.20));
}
@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.9) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Camada 5 — brilho dourado passando */
.hero__logo-shine {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(183,138,46,0.5) 50%,
    transparent 70%);
  background-size: 250% 100%;
  background-position: -100% 0;
  animation: logoShine 1s ease 1.8s 1 forwards;
  pointer-events: none;
  border-radius: 16px;
  z-index: 3;
}
@keyframes logoShine {
  to { background-position: 250% 0; }
}

/* Tag credencial */
.hero__tag {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #77706A;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-1);
  font-weight: 500;
  animation: fadeSlideUp 550ms ease-out 0.6s both;
}
.hero__tag--reveal { animation: fadeSlideUp 550ms ease-out 0.6s both; }

/* Especialidade */
.hero__specialty {
  font-size: 13px;
  color: #77706A;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-1);
  animation: fadeIn 550ms ease-out 0.75s both;
  opacity: 0;
}
.hero__specialty i { color: var(--ouro); font-size: 12px; }

/* Instagram */
.hero__instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ouro-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  transition: color var(--transition);
  animation: fadeIn 550ms ease-out 0.9s both;
  opacity: 0;
}
.hero__instagram:hover { color: var(--ouro); }
.hero__instagram:focus-visible { outline: 2px solid var(--ouro); border-radius: 4px; }
.hero__instagram i { font-size: 14px; }

/* Headline */
.hero__headline {
  font-family: var(--font-title);
  font-size: clamp(2.625rem, 5vw, 3.75rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--petroleo);
  max-width: 560px;
  margin-bottom: var(--sp-2);
  font-weight: 400;
  animation: fadeSlideUp 550ms ease-out 1.0s both;
}

/* Subheadline */
.hero__sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-3);
  animation: fadeSlideUp 550ms ease-out 1.15s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Subtítulo stagger */
.hero__subtitle-stagger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-1);
  margin: 0 0 var(--sp-3);
}
.stagger-word {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ouro-dark);
  opacity: 0;
  animation: staggerIn 0.5s ease forwards;
}
.stagger-word:nth-child(1) { animation-delay: 1.55s; }
.stagger-word:nth-child(3) { animation-delay: 1.75s; }
.stagger-word:nth-child(5) { animation-delay: 1.95s; }
.stagger-dot {
  color: var(--ouro);
  font-size: 0.8rem;
  opacity: 0;
  animation: staggerIn 0.4s ease forwards;
}
.stagger-dot:nth-child(2) { animation-delay: 1.65s; }
.stagger-dot:nth-child(4) { animation-delay: 1.85s; }
@keyframes staggerIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Benefícios */
.hero__benefits {
  list-style: none;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  text-align: left;
  width: 100%;
  max-width: 420px;
  animation: fadeSlideUp 550ms ease-out 1.6s both;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 14px;
  color: var(--text-secondary);
}
.hero__benefits li i {
  color: var(--ouro-dark);
  font-size: 11px;
  flex-shrink: 0;
}

/* Ações */
.hero__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fadeSlideUp 550ms ease-out 1.8s both;
}

/* Glow nos botões */
.btn--glow {
  position: relative;
  overflow: hidden;
}
.btn--glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(183,138,46,0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn--glow:hover::after { opacity: 1; }
.btn--glow:hover {
  box-shadow: 0 0 24px rgba(183,138,46,0.35), 0 8px 28px rgba(12,26,62,0.35);
  transform: translateY(-2px) scale(1.02);
}
.btn--primary {
  transition: background var(--transition), border-color var(--transition),
              box-shadow 0.45s ease, transform 0.45s ease;
}
.btn--ghost {
  transition: all 0.45s ease;
}
.btn--ghost:hover { transform: translateY(-2px); }

/* ===================== DORES ===================== */
.dores {
  background: var(--cream);
}
.dores__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.dor-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--ouro);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--petroleo);
  transition: var(--transition);
}
.dor-card:hover {
  border-color: var(--ouro);
  border-left-color: var(--ouro);
  box-shadow: var(--shadow-ouro);
  transform: translateY(-4px);
}

/* ===================== TRANSFORMAÇÃO ===================== */
.transformacao {
  background: linear-gradient(135deg, var(--petroleo) 0%, var(--petroleo-2) 100%);
}
.transformacao__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.transformacao .section__tag {
  color: var(--ouro);
}
.transformacao .section__tag::before {
  background: var(--ouro);
}
.transformacao h2 {
  color: var(--white);
}
.transformacao__content > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin: 1.25rem 0 2rem;
}
.transformacao__lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 2.25rem;
}
.transformacao__lista li {
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: var(--ouro);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.transformacao__frase {
  color: var(--white);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.2rem;
}

/* ===================== SOBRE ===================== */
.sobre {
  background: var(--white);
}
.sobre__inner {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
  gap: var(--sp-8);
}

.sobre__image {
  position: relative;
  border-radius: var(--radius-photo);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.sobre__image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border: none;
  display: block;
}
.sobre__image::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: calc(var(--radius-photo) - 4px);
  z-index: 1;
  pointer-events: none;
}

.sobre__content h2 {
  margin-bottom: 1.5rem;
}
.sobre__content p {
  margin-bottom: 1rem;
}

.sobre__credenciais {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sobre__credenciais li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
}
.sobre__credenciais li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ouro-dark);
}

/* ===================== ATENDIMENTO (SERVIÇOS) ===================== */
.atendimento {
  background: var(--cream);
}
.atendimento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.servico-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ouro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.servico-card:hover::before {
  transform: scaleX(1);
}
.servico-card:hover {
  box-shadow: var(--shadow);
}

.servico-card__num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--ouro-dark);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.servico-card h3 {
  margin-bottom: 0.85rem;
}
.servico-card p {
  font-size: 0.95rem;
}

/* ===================== DIFERENCIAIS ===================== */
.diferenciais {
  background: var(--white);
}
.diferenciais__lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.diferenciais__lista li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--petroleo);
  font-weight: 500;
  transition: var(--transition);
}
.diferenciais__lista li:hover {
  background: var(--nude);
  transform: translateX(4px);
}
.diferenciais__lista li i {
  color: var(--ouro-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  background: var(--cream);
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depoimento {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--ouro);
  position: relative;
  transition: var(--transition);
}
.depoimento:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.depoimento::before {
  content: "\201C";
  font-family: var(--font-title);
  font-size: 5rem;
  color: var(--ouro);
  opacity: 0.45;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.depoimento p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text);
}
.depoimento cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ouro-dark);
  font-style: normal;
}

/* ===================== COMO FUNCIONA ===================== */
.como-funciona {
  background: var(--white);
}
.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 3.5rem;
}
.passos--4 {
  grid-template-columns: repeat(4, 1fr);
}
.passo {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.passo__icon {
  font-size: 1.5rem;
  color: var(--ouro-dark);
}
.passo__num {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--ouro-dark);
  line-height: 1;
}
.como-funciona__cta {
  text-align: center;
}

/* ===================== ATENDIMENTO INTERNACIONAL ===================== */
.internacional {
  background: linear-gradient(135deg, var(--petroleo-2) 0%, var(--petroleo) 100%);
}
.internacional .section__tag {
  color: var(--ouro);
}
.internacional .section__tag::before {
  background: var(--ouro);
}
.internacional h2 {
  color: var(--white);
}
.internacional .section__header p {
  color: rgba(255, 255, 255, 0.78);
}
.internacional__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.pais {
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===================== CTA EMOCIONAL ===================== */
.cta-emocional {
  background: linear-gradient(135deg, #C8901E 0%, #A67018 60%, #0C1A3E 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-emocional::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-emocional__inner h2 {
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-inline: auto;
  text-shadow: 0 2px 16px rgba(12,26,62,0.3);
}
.cta-emocional .btn--primary {
  background: var(--white);
  color: var(--petroleo);
  border-color: var(--white);
  box-shadow: 0 10px 30px rgba(12, 26, 62, 0.35);
  font-weight: 700;
}
.cta-emocional .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 14px 40px rgba(12, 26, 62, 0.5);
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--off-white);
}
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq__lista {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__item summary {
  padding: 1.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--petroleo);
  transition: color var(--transition);
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--ouro-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq__item[open] summary {
  color: var(--ouro-dark);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* ===================== CONTATO ===================== */
.contato {
  background: var(--cream);
}
.contato__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contato__card {
  background: var(--white);
  border: 1px solid rgba(198,161,91,0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.contato__card:hover {
  box-shadow: 0 12px 40px rgba(12,26,62,0.1);
  transform: translateY(-4px);
}
.contato__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(198,161,91,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ouro-dark);
}
.contato__card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--petroleo);
  margin: 0;
}
.contato__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.contato__card-badge {
  display: inline-block;
  background: rgba(198,161,91,0.12);
  color: var(--ouro-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(198,161,91,0.3);
}
.depoimento__pais {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: normal;
  margin-left: 0.3rem;
}
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__grupo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__grupo label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form__grupo input,
.form__grupo textarea {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  resize: vertical;
}
.form__grupo input::placeholder,
.form__grupo textarea::placeholder {
  color: #a89e92;
}
.form__grupo input:focus,
.form__grupo textarea:focus {
  outline: none;
  border-color: var(--ouro);
}

.form__consentimento {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.form__consentimento input {
  margin-top: 0.2rem;
  accent-color: var(--petroleo);
}
.form__consentimento a {
  color: var(--ouro-dark);
  text-decoration: underline;
}

.form__aviso {
  font-size: 0.875rem;
  min-height: 1.2rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--petroleo);
  padding: 4rem 0 3rem;
  border-top: 2px solid var(--ouro);
  position: relative;
  overflow: hidden;
}

/* Globo de fundo */
.footer__globe-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 500px);
  height: clamp(300px, 50vw, 500px);
  opacity: 0.07;
  pointer-events: none;
  animation: globeBreathe 10s ease-in-out infinite;
}
.footer__globe-bg svg { width: 100%; height: 100%; }

/* Linhas curvas */
.footer__curves {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  opacity: 0.6;
  pointer-events: none;
}
.footer__curves svg { width: 100%; height: 100%; }

/* Pontos dourados — desativados */
.footer__dots {
  display: none;
}
.footer__dot {
  display: none;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ouro);
  opacity: 0.4;
  animation: dotPulse 4s ease-in-out infinite;
}
.footer__dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.footer__dot:nth-child(2) { top: 70%; left: 20%; animation-delay: 0.8s; }
.footer__dot:nth-child(3) { top: 35%; right: 15%; animation-delay: 1.6s; }
.footer__dot:nth-child(4) { top: 65%; right: 25%; animation-delay: 2.4s; }
.footer__dot:nth-child(5) { top: 50%; left: 50%; animation-delay: 3.2s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.5); }
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
/* Logo do rodapé */
.footer__logo-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 0.75rem;
  z-index: 2;
}
.footer__logo-img {
  display: block;
  margin: 0 auto;
}
.footer__divider {
  display: none;
}

/* Globo + tagline agrupados */
.footer__tagline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer__tagline-group .footer__globe-stack {
  margin: 0 auto;
  margin-bottom: -4px;
}

/* Tagline destaque */
.footer__tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}
.footer__tagline strong {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--ouro-bright);
  display: block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(183,138,46,0.35);
  border-radius: 999px;
  background: rgba(183,138,46,0.07);
}
/* Globo + logo em camadas no rodapé */
.footer__globe-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 4.8rem auto 0.75rem;
}
.footer__globe-icon {
  font-size: 38px; /* metade dos 76px anteriores */
  color: var(--ouro);
  opacity: 0.55;
  animation: globeBreathe 5s ease-in-out infinite;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.footer__logo-over-globe {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  /* Efeito moeda 3D premium */
  border: 2px solid transparent;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.4),
    inset 0 -2px 3px rgba(0,0,0,0.2),
    0 0 0 2px #c8901e,
    0 0 0 4px #e8b84b,
    0 0 0 6px #a67018,
    0 4px 0 rgba(80,50,5,0.5),
    0 6px 14px rgba(0,0,0,0.4);
  transform: perspective(280px) rotateX(5deg);
  animation: coinFloat 5s ease-in-out 1s infinite;
  filter: drop-shadow(0 0 10px rgba(183,138,46,0.25));
}

.footer__sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.footer__copy a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ===================== PREFERS-REDUCED-MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  .hero__globe-wrap,
  .hero__light-beam,
  .hero__logo-float,
  .hero__logo-shine,
  .stagger-word,
  .stagger-dot,
  .hero__tag--reveal,
  .hero__headline,
  .hero__sub,
  .hero__benefits,
  .hero__actions,
  .footer__globe-bg,
  .footer__dot,
  .footer__globe-icon,
  .hero__specialty,
  .hero__instagram {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===================== LOGO FIXA FLUTUANTE ===================== */
@keyframes deslizarDaDireita {
  0% {
    transform: translateX(150vw);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.logo-fixa-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}
.logo-redonda-animada {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(12,26,62,0.15);
  animation: deslizarDaDireita 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .logo-redonda-animada { animation: none; }
}

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 960px) {
  .header__logo-img {
    height: 48px;
    width: auto;
  }
  .header__brand-name { font-size: 14px; }
  .header__brand-subtitle { font-size: 9.5px; }
  .header__nav {
    display: none;
  }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow);
  }
  .header__menu-toggle {
    display: flex;
  }

  .hero__inner,
  .sobre__inner,
  .contato__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .contato__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }
  .hero__inner {
    padding-top: calc(80px + var(--sp-6));
    padding-bottom: var(--sp-6);
  }
  .hero__image {
    max-width: 380px;
    margin: 0 auto;
  }
  .hero__image-wrap {
    width: 100%;
  }
  .hero__badge {
    left: 0;
  }
  .hero__globe-wrap {
    top: 10%;
    right: -20%;
    width: 280px;
    height: 280px;
    transform: none;
    opacity: 0.08;
  }
  .hero__content--centered {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .hero__headline {
    max-width: 100%;
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .hero__sub {
    max-width: 100%;
    font-size: 16px;
  }
  .hero__logo-svg {
    width: 110px;
    height: 110px;
  }
  .hero__logo-svg-wrap {
    margin-bottom: var(--sp-3);
  }
  .hero__subtitle-stagger {
    justify-content: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__benefits {
    max-width: 100%;
    align-items: center;
  }

  .dores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atendimento__grid {
    grid-template-columns: 1fr;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
  .passos,
  .passos--4 {
    grid-template-columns: 1fr;
  }
  .diferenciais__lista {
    grid-template-columns: 1fr;
  }

  .sobre__image::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .header__logo-img {
    height: 44px;
    width: auto;
  }
  .header__brand-name { font-size: 13px; }
  .header__brand-subtitle { display: none; }
  .header__inner > .btn--cta { display: none; }
  .section {
    padding: 4.5rem 0;
  }
  .hero__instagram {
    margin-bottom: var(--sp-3);
  }
  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    letter-spacing: -0.01em;
  }
  .hero__sub {
    font-size: 15px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--sp-2);
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
  .hero__badge {
    display: none;
  }
  .dores__grid {
    grid-template-columns: 1fr;
  }
}
