/* =========================================================================
   JOTA Advocacia — Direito da Saúde
   Estilos do site institucional / landing page
   ========================================================================= */

/* ---------------------------------------------------------------------
   1. FONTES DA MARCA
   --------------------------------------------------------------------- */
@font-face {
  font-family: "Rollgates";
  src: url("../assets/fonts/Rollgates.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Absara Sans SC";
  src: url("../assets/fonts/AbsaraSansTF-LightSC.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eidetic Modern";
  src: url("../assets/fonts/EideticModern-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   2. TOKENS / VARIÁVEIS DE MARCA
   --------------------------------------------------------------------- */
:root {
  /* Paleta extraída da marca JOTA Advocacia */
  --navy-950: #0d1c2e;
  --navy-900: #142c47;
  --navy-800: #1a3a5c;
  --navy-700: #204066; /* cor oficial do logo */
  --navy-600: #2b4f78;
  --navy-500: #3d6390;
  --navy-100: #e8edf3;
  --navy-50: #f4f7fa;

  --gold-600: #a9803f;
  --gold-500: #c39a52;
  --gold-400: #d4b578;
  --gold-100: #f3e9d6;

  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #1c2530;
  --gray-700: #4b5563;
  --gray-500: #7c8794;
  --gray-300: #d6dbe1;
  --gray-100: #eef1f4;

  --success: #2e7d4f;

  --font-display: "Rollgates", cursive;
  --font-heading: "Lato", Arial, sans-serif;
  --font-label: "Absara Sans SC", "Lato", sans-serif;
  --font-ui: "Eidetic Modern", "Lato", sans-serif;
  --font-body: "Lato", Arial, sans-serif;

  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(13, 28, 46, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 28, 46, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 28, 46, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------------
   3. RESET & BASE
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 720px) {
  .section-pad {
    padding: 64px 0;
  }
}

/* foco acessível */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   4. TIPOGRAFIA / UTILITÁRIOS DE TEXTO
   --------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--gold-600);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow.on-dark {
  color: var(--gold-400);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.section-title .highlight {
  color: var(--gold-600);
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.text-white .section-title,
.services .section-title {
  color: var(--white);
}

.text-white .section-title .highlight,
.services .section-title .highlight {
  color: var(--gold-400);
}

.section-desc {
  margin-top: 16px;
  color: var(--gray-700);
  font-size: 17px;
  max-width: 600px;
}

.section-head.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.text-white .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------------------------------------------------------------------
   5. BOTÕES
   --------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 17px 30px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  --btn-bg: var(--gold-600);
  --btn-fg: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(169, 128, 63, 0.35);
}

.btn-whatsapp:hover {
  background: var(--gold-500);
  box-shadow: 0 14px 32px rgba(169, 128, 63, 0.45);
}

.btn-gold {
  --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  --btn-fg: var(--white);
  background: var(--btn-bg);
}

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-navy {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--navy-800);
}

.btn-outline-navy:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-header-cta {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  padding: 13px 24px;
  box-shadow: none;
}

.btn-header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-header.is-scrolled .btn-header-cta {
  --btn-fg: var(--navy-800);
  border-color: var(--navy-800);
}

.site-header.is-scrolled .btn-header-cta:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 20px 38px;
  font-size: 17px;
}

/* ---------------------------------------------------------------------
   6. HEADER
   --------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
  transition: filter 0.3s var(--ease);
}

.site-header:not(.is-scrolled) .brand .logo-navy {
  display: none;
}

.site-header.is-scrolled .brand .logo-white {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .main-nav a {
  color: var(--navy-800);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--gold-400);
}

.site-header.is-scrolled .main-nav a.is-active {
  color: var(--gold-600);
}

.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions .btn {
  padding: 13px 24px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.site-header.is-scrolled .nav-toggle {
  background: var(--navy-100);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: background 0.3s var(--ease);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy-800);
}

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 110px 32px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    color: var(--white) !important;
    font-size: 15px;
  }

  .header-actions .btn-outline-navy-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .nav-cta-text {
    display: none;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 28, 46, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 90;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 148px 0 96px;
}

.hero--cutout {
  overflow: hidden;
  padding: 132px 0 0;
}

.hero--cutout .container {
  align-items: start;
}

.hero--cutout .hero-content {
  align-self: start;
  padding-top: 36px;
  margin-top: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 18% 24%, var(--navy-600), var(--navy-900) 54%, var(--navy-950) 100%);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-navy-subtle.jpg");
  background-size: 900px;
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.88fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-visual {
  justify-self: end;
  width: min(460px, 100%);
}

.hero--cutout .hero-visual {
  align-self: end;
  width: min(400px, 100%);
  margin-bottom: 0;
}

.hero-visual--mobile {
  display: none;
}

.hero-visual--desktop {
  display: block;
  width: 100%;
}

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(13, 28, 46, 0.28),
    0 0 0 1px rgba(212, 181, 120, 0.35);
  border: 2px solid rgba(212, 181, 120, 0.45);
  background: var(--navy-800);
}

.hero-frame--cutout {
  aspect-ratio: auto;
  height: auto;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-frame-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: rgba(13, 28, 46, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 181, 120, 0.35);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-dots {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-dot.is-active {
  background: var(--gold-400);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-frame--cutout .hero-slides {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  height: auto;
  align-items: end;
}

.hero-frame--cutout .hero-slide {
  grid-area: 1 / 1;
  position: relative;
  inset: auto;
  align-self: end;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-frame--cutout .hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1);
}

.hero-frame--cutout .hero-slide picture {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

.hero-frame--cutout .hero-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  filter: drop-shadow(0 12px 28px rgba(8, 18, 32, 0.28));
}

.hero-frame--cutout .hero-slide.is-active img {
  animation: none;
}

.hero-frame--cutout .hero-slide[data-slide="1"] img {
  transform: scale(1.08);
  transform-origin: center bottom;
}

/* Foto 1 (meio-corpo) — maior para equilibrar com a foto 2 */
.hero-frame--cutout .hero-slide[data-slide="0"] img {
  transform: scale(1.32);
  transform-origin: center bottom;
}

.hero-frame--cutout .hero-frame-badge {
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-frame--cutout .hero-dots {
  top: 8px;
  right: 12px;
  bottom: auto;
  transform: none;
}

.hero-slide.is-active img {
  animation: heroKenBurns 6.5s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-content h1 {
  color: var(--white);
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-kicker {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0;
}

/* Nome da marca em Rollgates — destaque principal do hero */
.hero-display {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 110px);
  line-height: 0.9;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* Título legível em Lato */
.hero-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(21px, 2.8vw, 28px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
  max-width: 540px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-proof {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.hero-proof .stars,
.hero-proof .star-rating {
  color: var(--gold-400);
}

.hero-content .section-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-top: 22px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  position: relative;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-400);
  animation: scrollDown 1.8s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

@media (max-width: 940px) {
  .hero {
    padding: 128px 0 64px;
  }

  .hero--cutout {
    overflow: hidden;
    padding: 118px 0 48px;
  }

  .hero--cutout .hero-content {
    align-self: auto;
    padding-top: 8px;
    padding-bottom: 0;
    margin-top: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }

  .hero-visual {
    order: -1;
    justify-self: center;
    width: min(300px, 78vw);
  }

  .hero--cutout .hero-visual {
    margin-top: 18px;
    margin-bottom: 8px;
    width: min(288px, 76vw);
  }

  .hero-visual--desktop {
    display: none !important;
  }

  .hero-visual--mobile {
    display: block;
    width: 100%;
    margin: 0;
  }

  /* Moldura editorial: filete dourado + passepartout navy + cantos */
  .hero-portrait {
    position: relative;
  }

  .hero-portrait__outer {
    padding: 3px;
    border-radius: 6px;
    background:
      linear-gradient(
        160deg,
        rgba(232, 208, 154, 0.95) 0%,
        var(--gold-400) 22%,
        var(--gold-600) 52%,
        var(--gold-400) 78%,
        rgba(232, 208, 154, 0.9) 100%
      );
    box-shadow:
      0 22px 48px rgba(13, 28, 46, 0.4),
      0 2px 0 rgba(255, 255, 255, 0.2) inset;
  }

  .hero-portrait__mat {
    padding: 12px 12px 14px;
    border-radius: 4px;
    background:
      radial-gradient(circle at 50% 0%, rgba(43, 79, 120, 0.55), transparent 55%),
      linear-gradient(180deg, var(--navy-800), var(--navy-950));
    box-shadow: inset 0 0 0 1px rgba(212, 181, 120, 0.18);
  }

  .hero-portrait__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px;
    background: var(--navy-900);
    box-shadow:
      inset 0 0 0 1px rgba(212, 181, 120, 0.45),
      inset 0 0 28px rgba(8, 18, 32, 0.22);
  }

  .hero-portrait__photo picture,
  .hero-portrait__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-portrait__corner {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-color: var(--gold-400);
    opacity: 0.9;
    pointer-events: none;
  }

  .hero-portrait__corner--tl {
    top: 8px;
    left: 8px;
    border-top: 1.5px solid;
    border-left: 1.5px solid;
  }

  .hero-portrait__corner--tr {
    top: 8px;
    right: 8px;
    border-top: 1.5px solid;
    border-right: 1.5px solid;
  }

  .hero-portrait__corner--bl {
    bottom: 8px;
    left: 8px;
    border-bottom: 1.5px solid;
    border-left: 1.5px solid;
  }

  .hero-portrait__corner--br {
    bottom: 8px;
    right: 8px;
    border-bottom: 1.5px solid;
    border-right: 1.5px solid;
  }

  .hero-portrait__badge {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 4;
    transform: translateX(-50%);
    margin: 0;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(13, 28, 46, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 181, 120, 0.4);
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    white-space: nowrap;
  }

  .hero-title,
  .hero-lead {
    max-width: none;
  }
}

/* ---------------------------------------------------------------------
   7b. FAIXA DE CONFIANÇA
   --------------------------------------------------------------------- */
.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(13, 28, 46, 0.04);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.trust-item__title {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.25;
}

.trust-item__desc {
  display: block;
  color: var(--gray-500);
  font-size: 12.5px;
  line-height: 1.3;
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-top: 1px;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--gold-500);
  vertical-align: middle;
}

.star-rating svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.star-rating--sm svg {
  width: 12px;
  height: 12px;
}

.star-rating--lg svg {
  width: 18px;
  height: 18px;
}

.review-card .star-rating {
  margin-bottom: 2px;
}

.rating-card--compact .star-rating {
  margin-bottom: 0;
}

.final-cta-note .star-rating {
  color: var(--gold-600);
}

@media (max-width: 940px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 18px 24px;
  }
}

@media (max-width: 520px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   8. FAIXA DE PROBLEMAS / EMPATIA
   --------------------------------------------------------------------- */
.problems {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.problem-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.problem-card .icon svg {
  width: 26px;
  height: 26px;
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.problem-card p {
  color: var(--gray-700);
  font-size: 15px;
}

@media (max-width: 940px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   9. SERVIÇOS
   --------------------------------------------------------------------- */
.services {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-navy-medium.jpg");
  background-size: 700px;
  opacity: 0.18;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-400);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
  font-size: 16.5px;
  line-height: 1.35;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  flex-grow: 1;
}

.service-card .service-link {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.service-card .service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   10. SOBRE
   --------------------------------------------------------------------- */
.about {
  background: var(--white);
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual .photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-visual .photo-frame img {
  width: 100%;
  height: auto;
}

.final-cta-photo .frame img {
  width: 100%;
  height: auto;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-signature {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
}

.about-signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-800);
}

.about-signature span {
  display: block;
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 2px;
}

.about-text .section-desc {
  margin-top: 18px;
}

.about-text p + p {
  margin-top: 14px;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0 34px;
}

.about-badge {
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  border: 1px solid var(--navy-100);
}

.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy-800);
}

.about-badge span {
  display: block;
  font-size: 12px;
  color: var(--gray-700);
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 940px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 380px;
    margin: 0 auto 30px;
  }
  .about-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .about-badges {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------------------------------------------------
   11. DIFERENCIAIS
   --------------------------------------------------------------------- */
.differentials {
  background: var(--navy-50);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.differential-card {
  text-align: center;
  padding: 10px;
}

.differential-card .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}

.differential-card .icon svg {
  width: 34px;
  height: 34px;
}

.differential-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.differential-card p {
  font-size: 14.5px;
  color: var(--gray-700);
}

@media (max-width: 940px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 520px) {
  .differentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   12. COMO FUNCIONA / PROCESSO
   --------------------------------------------------------------------- */
.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gray-300) 0 10px, transparent 10px 18px);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step .num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.process-step:nth-child(even) .num {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
}

.process-step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-700);
}

@media (max-width: 940px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   13. PROVA SOCIAL / AVALIAÇÕES
   --------------------------------------------------------------------- */
.social-proof {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(32, 64, 102, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-text {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.review-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--navy-900);
}

.review-author span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--gray-500);
}

.social-proof-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.rating-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 42px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.rating-card--compact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  text-align: left;
  flex-wrap: wrap;
}

.rating-card--compact .score {
  font-size: 36px;
  line-height: 1;
}

.rating-card--compact .google-tag {
  margin-top: 0;
}

.rating-card .score {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  color: var(--navy-800);
}

.rating-card .score small {
  font-size: 20px;
  color: var(--gray-500);
  font-weight: 400;
}

.rating-card p {
  color: var(--gray-700);
  margin-top: 10px;
}

.rating-card .google-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.social-copy .section-desc {
  margin-top: 18px;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .rating-card--compact {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------
   14. FAQ
   --------------------------------------------------------------------- */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy-900);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .plus::before {
  width: 11px;
  height: 1.6px;
}

.faq-question .plus::after {
  width: 1.6px;
  height: 11px;
  transition: opacity 0.25s var(--ease);
}

.faq-item.is-open .faq-question .plus {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question .plus::before,
.faq-item.is-open .faq-question .plus::after {
  background: var(--white);
}

.faq-item.is-open .faq-question .plus::after {
  opacity: 0;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s var(--ease);
}

.faq-answer p {
  padding: 0 4px 24px;
  color: var(--gray-700);
  font-size: 15.5px;
  max-width: 680px;
}

/* ---------------------------------------------------------------------
   15. CTA FINAL
   --------------------------------------------------------------------- */
.final-cta {
  background: var(--cream);
  color: var(--navy-900);
  overflow: hidden;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-light-subtle.jpg");
  background-size: 900px;
  opacity: 0.35;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.final-cta-photo {
  justify-self: center;
  position: relative;
}

.final-cta-photo .frame {
  width: min(300px, 70vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(32, 64, 102, 0.08);
}

.final-cta-text {
  max-width: 560px;
}

.final-cta h2 {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

.final-cta .section-desc {
  color: var(--gray-700);
  max-width: 520px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.final-cta-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 940px) {
  .final-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .final-cta-actions {
    justify-content: center;
  }
  .final-cta-note {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------
   16. FORMULÁRIO DE CONTATO
   --------------------------------------------------------------------- */
.contact {
  background: var(--cream);
}

.contact .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-navy-medium.jpg");
  background-size: 600px;
  opacity: 0.16;
}

.contact-info-card > * {
  position: relative;
  z-index: 2;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.contact-info-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list a,
.contact-info-list .info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 15px;
}

.contact-info-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list .icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-list small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 22px;
}

.contact-form-card > p {
  color: var(--gray-700);
  margin-top: 8px;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px var(--navy-100);
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12.5px;
  color: var(--gray-500);
}

.form-feedback {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  display: none;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.success {
  background: #e7f5ec;
  color: var(--success);
  border: 1px solid #c3e6cf;
}

.form-feedback.error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f5c2c0;
}

@media (max-width: 940px) {
  .contact .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
}

/* ---------------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 32px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold-500);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   18. BOTÃO FLUTUANTE WHATSAPP
   --------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease);
}

body.is-loaded .whatsapp-float {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.2s;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.4s infinite;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #20bd5a;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 88px;
    right: 18px;
  }
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 76px;
  }

  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -8px 24px rgba(13, 28, 46, 0.08);
  }

  .mobile-cta-bar .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* ---------------------------------------------------------------------
   19. ANIMAÇÕES DE ENTRADA (JS: adiciona .is-visible)
   --------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade"] {
  transform: none;
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------------------------------------------------------------------
   20. SPLASH SCREEN
   --------------------------------------------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.splash.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.splash.is-hidden {
  display: none;
}

.splash__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--navy-600), var(--navy-950) 70%);
}

.splash__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-navy-subtle.jpg");
  background-size: 800px;
  opacity: 0.22;
  mix-blend-mode: soft-light;
}

.splash__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.splash__logo-main {
  width: min(240px, 62vw);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
  animation: splashLogoIn 1s var(--ease) 0.15s forwards;
}

@keyframes splashLogoIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.splash__emblem {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  animation: splashEmblemIn 1s var(--ease) both;
}

.splash__icon {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.splash__badge {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.splash__logo {
  height: 36px;
  width: auto;
  opacity: 0;
  animation: splashFadeUp 0.8s var(--ease) 0.35s forwards;
}

.splash__tagline {
  margin: 20px 0 0;
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0;
  animation: splashFadeUp 0.8s var(--ease) 0.55s forwards;
}

.splash__divider {
  width: 0;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  animation: splashLineExpand 0.9s var(--ease) 0.75s forwards;
}

.splash__loader {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.splash__loader-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  animation: splashProgress 2.2s var(--ease) 0.2s forwards;
}

@keyframes splashEmblemIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splashFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashLineExpand {
  to {
    width: 120px;
  }
}

@keyframes splashRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes splashProgress {
  to {
    width: 100%;
  }
}

body.is-splashing {
  overflow: hidden;
}

/* ---------------------------------------------------------------------
   21. BARRA DE PROGRESSO DE ROLAGEM
   --------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  box-shadow: 0 0 12px rgba(212, 181, 120, 0.5);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ---------------------------------------------------------------------
   22. ENTRADA DO HERO APÓS SPLASH
   --------------------------------------------------------------------- */
body:not(.is-loaded) .hero-content > *,
body:not(.is-loaded) .hero-visual {
  opacity: 0;
}

body.is-loaded .hero-kicker {
  animation: heroReveal 0.9s var(--ease) 0.05s both;
}

body.is-loaded .hero-display {
  animation: heroReveal 0.9s var(--ease) 0.15s both;
}

body.is-loaded .hero-title {
  animation: heroReveal 0.9s var(--ease) 0.28s both;
}

body.is-loaded .hero-lead {
  animation: heroReveal 0.9s var(--ease) 0.4s both;
}

body.is-loaded .hero-cta-row {
  animation: heroReveal 0.9s var(--ease) 0.52s both;
}

body.is-loaded .hero-proof {
  animation: heroReveal 0.9s var(--ease) 0.62s both;
}

body.is-loaded .hero-visual {
  animation: heroVisualIn 1.1s var(--ease) 0.2s both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------------------------------------------------------------------
   23. EFEITOS NOS CARDS E SEÇÕES
   --------------------------------------------------------------------- */
.problem-card,
.service-card,
.differential-card,
.rating-card,
.contact-form-card,
.contact-info-card {
  position: relative;
  overflow: hidden;
}

.problem-card::after,
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}

.problem-card:hover::after,
.service-card:hover::after {
  left: 140%;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 75ms);
}

[data-stagger] > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .site-header {
  animation: headerDrop 0.8s var(--ease) 0.1s both;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .splash {
    display: none !important;
  }

  body.is-splashing {
    overflow: auto;
  }

  [data-animate],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  body.is-loaded .hero-content > *,
  body.is-loaded .hero-visual,
  body.is-loaded .site-header,
  body.is-loaded .whatsapp-float {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-slide {
    transition: none !important;
  }

  .hero-slide.is-active img {
    animation: none !important;
    transform: none !important;
  }

  .scroll-progress {
    display: none;
  }
}

/* ---------------------------------------------------------------------
   24. RESPONSIVO GERAL / AJUSTES FINOS
   --------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .btn {
    padding: 15px 24px;
    font-size: 14.5px;
  }
  .rating-card {
    padding: 34px 24px;
  }
}
