/* ===== Design tokens ===== */
:root {
  --navy: #0b1623;
  --slate: #334155;
  --teal: #2fa4a9;
  --teal-dark: #24838a;
  --light: #e5e7eb;
  --gray: #9ca3af;
  --white: #ffffff;
  --bg: #f8f9fb;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(11, 22, 35, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 22, 35, 0.14);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--teal-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section { padding: 96px 0; }
.section-alt { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 48px;
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--slate);
  color: var(--slate);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 17px 38px; font-size: 17px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 35, 0.96);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo-img { height: 28px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
}
.main-nav a:hover { color: var(--teal); }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
}
.nav-dropdown-trigger:hover { color: var(--teal); }
.nav-dropdown-caret { font-size: 10px; line-height: 1; transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 270px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: #eaf6f6; color: var(--teal-dark); }

.btn-header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: url('../images/hero-bridge.jpg') center center / cover no-repeat;
  color: var(--white);
  text-align: center;
}
.cta-repeat {
  position: relative;
  background-color: #0b1623;
  background-image:
    linear-gradient(180deg, #0b1623 0%, #16232d 100%),
    radial-gradient(circle, rgba(47, 164, 169, 0.14) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.4px, transparent 1.4px);
  background-size: cover, 28px 28px, 28px 28px;
  background-position: center, 0 0, 14px 14px;
  background-repeat: no-repeat, repeat, repeat;
  color: var(--white);
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,35,0.88) 0%, rgba(11,22,35,0.82) 50%, rgba(11,22,35,0.94) 100%);
}
.hero-content {
  position: relative;
  padding: 130px 24px 100px;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  text-align: left;
}
.hero-text { flex: 1; max-width: 600px; }
.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-subhead {
  font-size: 19px;
  color: var(--light);
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.whatsapp-link:hover { color: var(--teal); opacity: 1; }
.whatsapp-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.hero-whatsapp-link { margin-top: 20px; }
.hero-disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .hero-disclaimer { margin-left: 0; margin-right: 0; max-width: 460px; }

.hero-photo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 164, 169, 0.35) 0%, rgba(47, 164, 169, 0) 70%);
  filter: blur(6px);
  z-index: 0;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  width: 300px;
  aspect-ratio: 1 / 1.08;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(47, 164, 169, 0.55);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: var(--navy);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Erros section ===== */
.erros-section {
  position: relative;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(47, 164, 169, 0.12) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(11, 22, 35, 0.05) 1.4px, transparent 1.4px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}

.erros-grid { margin-top: 8px; }
.erro-card {
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: block;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.erro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.erro-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eaf6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}
.erro-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal-dark);
  transition: stroke 0.2s ease;
}
.erro-card:hover .erro-icon { background: var(--teal); }
.erro-card:hover .erro-icon svg { stroke: var(--white); }
.erro-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.erro-card p { margin: 0; color: var(--slate); font-size: 14.5px; }
.erro-card-cost {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #eaf6f6;
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 700;
}
.erro-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal-dark);
}
.erro-card-link .arrow { transition: transform 0.15s ease; }
.erro-card:hover .erro-card-link .arrow { transform: translateX(4px); }

.erros-toggle {
  display: none;
  margin: 28px auto 0;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: 24px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.erros-toggle:hover { border-color: var(--teal); color: var(--teal-dark); }
.erros-toggle-icon {
  font-size: 17px;
  line-height: 1;
  color: var(--teal-dark);
  transition: transform 0.2s ease;
}
.erros-toggle[aria-expanded="true"] .erros-toggle-icon { transform: rotate(45deg); }

.erros-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 56px auto 0;
  max-width: 420px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
}
.erros-closing:hover { color: var(--teal-dark); }
.erros-closing-arrow {
  font-size: 18px;
  color: var(--teal-dark);
  animation: erros-arrow-bounce 2.2s ease-in-out infinite;
}
@keyframes erros-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== Sobre ===== */
.sobre-section {
  position: relative;
  background-color: #eef1f5;
  background-image:
    radial-gradient(circle, rgba(47, 164, 169, 0.06) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(11, 22, 35, 0.03) 1.4px, transparent 1.4px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.sobre-text p { font-size: 17px; }
.sobre-facts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre-facts li {
  padding-left: 26px;
  position: relative;
  font-weight: 600;
  color: var(--navy);
}
.sobre-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

/* ===== Guia Gratuito ===== */
.guia-section .container.guia-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.guia-cover { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.guia-cover-mock {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy) 0%, #1c3a45 100%);
  border: 1px dashed rgba(47, 164, 169, 0.5);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  position: relative;
}
.guia-cover-mock-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 20px;
}
.guia-cover-mock-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.guia-cover-mock h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}
.guia-cover-mock-brand {
  margin-top: 18px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.guia-cover-label {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  text-align: center;
}
.guia-text .section-lead { margin-bottom: 24px; }
.guia-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guia-features li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--slate);
  font-weight: 500;
}
.guia-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf6f6;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Áreas de Foco ===== */
.foco-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.foco-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.foco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.foco-card {
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.foco-card-flagship {
  padding: 32px;
  border: 1px solid #e9ebef;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-lg);
}
.foco-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.foco-card-flagship .foco-icon { width: 52px; height: 52px; }
.foco-icon svg { width: 22px; height: 22px; stroke: var(--teal-dark); }
.foco-card-flagship .foco-icon svg { width: 26px; height: 26px; }
.foco-card h3 { font-size: 18px; margin-bottom: 8px; }
.foco-card-flagship h3 { font-size: 21px; }
.foco-card p { color: var(--slate); font-size: 14.5px; margin: 0; }
.foco-card-flagship p { font-size: 15.5px; }

/* ===== Pacotes overview (lightweight, links to service pages) ===== */
.pacotes-section {
  position: relative;
  background-color: #0b1623;
  background-image:
    linear-gradient(180deg, #0b1623 0%, #16232d 100%),
    radial-gradient(circle, rgba(47, 164, 169, 0.16) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.4px, transparent 1.4px);
  background-size: cover, 28px 28px, 28px 28px;
  background-position: center, 0 0, 14px 14px;
  background-repeat: no-repeat, repeat, repeat;
}
.pacotes-section .eyebrow { color: var(--teal); }
.pacotes-section h2 { color: var(--white); }
.pacotes-section .section-lead { color: var(--light); }
.precos-whatsapp-link { margin-bottom: 36px; margin-top: -16px; }

.pacotes-grid { align-items: stretch; }
.overview-card {
  background: #12222d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--teal);
  background: #16303f;
}
.overview-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 164, 169, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s ease;
}
.overview-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  transition: stroke 0.2s ease;
}
.overview-card:hover .overview-icon { background: var(--teal); }
.overview-card:hover .overview-icon svg { stroke: var(--navy); }
.overview-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--white); }
.overview-preco {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}
.overview-preco span { font-size: 13px; font-weight: 500; color: var(--gray); }
.overview-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.overview-tag {
  background: rgba(47, 164, 169, 0.16);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.overview-tag-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.overview-card p { flex: 1; color: var(--light); font-size: 14.5px; margin: 0; opacity: 0.85; }
.overview-card-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.overview-card-cta .btn { padding: 10px 18px; font-size: 14px; }
.overview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.overview-card-link .arrow { transition: transform 0.15s ease; }
.overview-card-link:hover .arrow,
.overview-card:hover .overview-card-link .arrow { transform: translateX(4px); }
.overview-card-link:hover { color: var(--white); }

.mentoria-banner {
  margin-top: 40px;
  border: 2px solid var(--teal);
  background: linear-gradient(135deg, #16303c 0%, #1c4550 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mentoria-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.mentoria-banner:hover .overview-card-link .arrow { transform: translateX(4px); }
.mentoria-banner-tag {
  position: absolute;
  top: -13px;
  left: 40px;
  background: var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.mentoria-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(47, 164, 169, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mentoria-banner-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.mentoria-banner-text { flex: 1; }
.mentoria-banner-text h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.mentoria-banner-text h3 a { color: inherit; text-decoration: none; }
.mentoria-banner-text h3 a:hover { color: var(--teal); }
.mentoria-banner-text .overview-tags { margin-bottom: 10px; }
.mentoria-banner-text p { color: var(--light); font-size: 15px; margin: 0; max-width: 480px; }
.mentoria-banner-preco {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  text-align: right;
}
.mentoria-banner-preco span { display: block; font-size: 13px; font-weight: 500; color: var(--gray); }
.mentoria-banner .overview-card-link { color: var(--teal); }
.mentoria-banner-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.mentoria-banner-cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.mentoria-banner-cta .btn { padding: 11px 20px; font-size: 14px; }

/* ===== Preços (hourly model) ===== */
.preco-sessao {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #12222d;
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.preco-sessao-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(47, 164, 169, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preco-sessao-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.preco-sessao-text { flex: 1; }
.preco-sessao-text h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.preco-sessao-text h3 a { color: inherit; text-decoration: none; }
.preco-sessao-text h3 a:hover { color: var(--teal); }
.preco-sessao-text p { color: var(--light); font-size: 14.5px; margin: 0; opacity: 0.9; }
.preco-sessao-price {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  text-align: right;
}
.preco-sessao-price span { display: block; font-size: 13px; font-weight: 500; color: var(--gray); }
.preco-sessao-cta { flex-shrink: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.preco-sessao-cta .btn { padding: 11px 20px; font-size: 14px; }

.preco-subheading {
  margin: 48px 0 4px;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.preco-subheading span { color: var(--gray); font-weight: 400; font-size: 14px; }
.preco-tiers-grid { margin-top: 16px; }
.preco-tiers-note {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--gray);
  text-align: center;
}

.pacotes-closing {
  display: block;
  text-align: center;
  margin: 40px auto 0;
  max-width: 520px;
  color: var(--light);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.pacotes-closing:hover { color: var(--teal); }
.pacotes-closing-light { color: var(--slate); text-align: left; margin: 0 0 40px; max-width: none; }
.pacotes-closing-light:hover { color: var(--teal-dark); }

/* ===== Categorias de pacotes (homepage, grouped view) ===== */
.categoria-grid { align-items: stretch; }
.categoria-card {
  background: #12222d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.categoria-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 164, 169, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.categoria-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.categoria-card h3 { font-size: 19px; color: var(--white); margin-bottom: 8px; }
.categoria-card > p { color: var(--light); font-size: 14.5px; opacity: 0.85; margin-bottom: 20px; }
.categoria-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}
.categoria-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  transition: background 0.15s ease, color 0.15s ease;
}
.categoria-item:hover { background: rgba(47, 164, 169, 0.1); color: var(--white); }
.categoria-item-preco { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.categoria-item-tag {
  display: inline-block;
  margin-left: 8px;
  background: rgba(47, 164, 169, 0.18);
  color: var(--teal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
}

/* ===== Depoimentos ===== */
.depoimento-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--teal);
}
.depoimento-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.depoimento-texto {
  font-size: 15.5px;
  color: var(--slate);
  font-style: italic;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.depoimento-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--teal);
}
.depoimento-nome { font-weight: 700; color: var(--navy); font-size: 14px; }
.depoimento-local { font-weight: 400; color: var(--gray); font-size: 13px; }

/* ===== Como funciona ===== */
.como-funciona-section {
  position: relative;
  background-color: #eef1f5;
  background-image:
    radial-gradient(circle, rgba(47, 164, 169, 0.06) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(11, 22, 35, 0.03) 1.4px, transparent 1.4px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}
.como-funciona-photo {
  margin: 24px 0 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.como-funciona-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.passos-grid { position: relative; }
.passo-card { text-align: center; padding: 12px; position: relative; z-index: 1; }
.passo-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.passo-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.passo-numero-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #eef1f5;
}
.passo-card h3 { font-size: 19px; }
.passo-card p { color: var(--slate); font-size: 15px; }

@media (min-width: 901px) {
  .passos-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.5%;
    right: 16.5%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--teal) 15%, var(--teal) 85%, transparent 100%);
    opacity: 0.85;
    z-index: 0;
  }
}

.passos-cta { text-align: center; margin-top: 48px; }

/* ===== Repeat CTA ===== */
.cta-repeat-content {
  position: relative;
  padding: 90px 24px;
  max-width: 680px;
}
.cta-repeat h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); }
.cta-repeat p { color: var(--light); font-size: 17px; margin-bottom: 32px; }
.cta-repeat-secondary {
  display: block;
  margin-top: 18px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.cta-repeat-secondary:hover { color: var(--teal); }

/* ===== Blog ===== */
.blog-empty {
  text-align: center;
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.blog-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.blog-empty-icon svg { width: 26px; height: 26px; stroke: var(--teal-dark); }
.blog-empty h3 { font-size: 20px; margin-bottom: 10px; }
.blog-empty p { color: var(--slate); font-size: 15px; margin-bottom: 0; }

.blog-grid { margin-top: 8px; }
.blog-card {
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.blog-card-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: #eef1f5; }
.blog-card-icon-panel {
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #0b1623;
  background-image:
    linear-gradient(135deg, #0b1623 0%, #16232d 100%),
    radial-gradient(circle, rgba(47, 164, 169, 0.14) 1.4px, transparent 1.4px);
  background-size: cover, 22px 22px;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-icon-panel svg { width: 42px; height: 42px; stroke: var(--teal); position: relative; z-index: 1; }
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(47, 164, 169, 0.18);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.blog-card { position: relative; }
.blog-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.blog-card p { color: var(--slate); font-size: 14.5px; flex: 1; margin: 0; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--teal-dark); }
.blog-card-link .arrow { transition: transform 0.15s ease; }
.blog-card:hover .blog-card-link .arrow { transform: translateX(4px); }

.blog-post-meta { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 13.5px; margin-bottom: 24px; }
.blog-post-body { font-size: 16.5px; color: var(--slate); }
.blog-post-body p { margin-bottom: 1.3em; }
.blog-post-body h2 { font-size: 24px; margin: 1.4em 0 0.6em; }
.blog-post-body h3 { font-size: 19px; margin: 1.2em 0 0.5em; }
.blog-post-image {
  margin: 8px 0 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.blog-post-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== FAQ ===== */
.faq-section {
  position: relative;
  background-color: #eef1f5;
  background-image:
    radial-gradient(circle, rgba(47, 164, 169, 0.06) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(11, 22, 35, 0.03) 1.4px, transparent 1.4px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid #e0e3e8;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eaf6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.faq-icon-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-dark);
  transition: stroke 0.2s ease;
}
.faq-question-text { flex: 1; }
.faq-icon {
  font-size: 22px;
  color: var(--teal-dark);
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-question { color: var(--teal-dark); }
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-icon-badge { background: var(--teal); }
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-icon-badge svg { stroke: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 4px 22px 50px;
  color: var(--slate);
  font-size: 15.5px;
}

/* ===== Service pages ===== */
.breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin: 20px 0 0;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--teal); }

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.page-hero-text { max-width: 580px; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.page-hero-lead { color: var(--light); font-size: 17px; margin-bottom: 20px; }
.page-hero-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero-preco {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}
.page-hero-preco span { font-size: 14px; font-weight: 500; color: var(--gray); }
.page-hero-sessoes { color: var(--gray); font-size: 14px; }
.page-hero-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-visual {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(47, 164, 169, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-visual svg { width: 108px; height: 108px; stroke: var(--teal); }

.topics-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 40px; }
.topic-chip {
  background: #eaf6f6;
  color: var(--teal-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

.session-list { display: flex; flex-direction: column; gap: 18px; margin: 24px 0 44px; }
.session-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.session-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}
.session-item h4 { margin: 0 0 6px; font-size: 16.5px; color: var(--navy); font-family: var(--font-body); }
.session-item p { margin: 0; font-size: 14.5px; color: var(--slate); }

.terms-box {
  background: var(--white);
  border: 1px solid #e9ebef;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin: 8px 0 48px;
}
.terms-box h3 { font-size: 19px; margin-bottom: 16px; }
.terms-box p { font-size: 14px; color: var(--slate); margin-bottom: 12px; }
.terms-box p:last-child { margin-bottom: 0; }
.terms-box strong { color: var(--navy); }

.page-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  margin: 8px 0 8px;
}
.page-cta h3 { color: var(--white); font-size: 24px; }
.page-cta p { color: var(--light); margin-bottom: 24px; }
.page-cta-secondary { margin-top: 20px; margin-bottom: 0; font-size: 14px; color: var(--gray); }
.page-cta-secondary a { color: var(--teal); font-weight: 600; }
.page-cta-secondary a:hover { color: var(--teal-dark); }
.page-cta-whatsapp { margin-top: 14px; }

.page-testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--teal);
  margin: 8px 0 48px;
}

.related-pacotes { margin: 8px 0 8px; }
.related-pacotes h3 { font-size: 18px; margin-bottom: 16px; }
.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.related-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #e9ebef;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.related-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.related-item-preco { color: var(--teal-dark); font-weight: 700; }
.related-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--light);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: var(--gray); font-size: 14px; margin-top: 12px; }
.logo-footer { display: inline-block; margin-bottom: 4px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p { margin-bottom: 8px; font-size: 14px; }
.footer-col a { color: var(--gray); }
.footer-col a:hover { color: var(--teal); }

.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.social-icon:hover { background: var(--teal); color: var(--navy); }

.footer-legal { padding: 32px 24px 40px; }
.footer-disclaimer {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 980px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--gray); }
.footer-links a:hover { color: var(--teal); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre-photo { max-width: 280px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mentoria-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .mentoria-banner-preco { text-align: left; }
  .mentoria-banner-right { align-items: flex-start; width: 100%; }
  .mentoria-banner-cta { justify-content: flex-start; }
  .foco-grid { grid-template-columns: 1fr; }
  .foco-layout { grid-template-columns: 1fr; gap: 32px; }
  .foco-photo img { max-width: 280px; margin: 0 auto; display: block; }
  .como-funciona-photo img { height: 220px; }
  .preco-sessao { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px; }
  .preco-sessao-price { text-align: left; }
  .preco-sessao-cta { width: 100%; }
  .page-hero .container { flex-direction: column; text-align: center; }
  .page-hero-meta { justify-content: center; }
  .page-hero-cta { justify-content: center; }
  .page-hero-visual { width: 150px; height: 150px; }
  .page-hero-visual svg { width: 80px; height: 80px; }
  .session-item { padding: 18px; gap: 14px; }

  .erro-card-extra { display: none; }
  .erros-grid.expanded .erro-card-extra { display: block; }
  .erros-toggle { display: inline-flex; }

  .hero-content { flex-direction: column; text-align: center; gap: 32px; padding: 100px 24px 70px; }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-content .hero-disclaimer { margin-left: auto; margin-right: auto; max-width: 460px; }
  .hero-photo { order: -1; }
  .hero-photo::before { width: 260px; height: 260px; }
  .hero-photo-frame { width: 220px; }
  .hero-cta-group { justify-content: center; }

  .guia-section .container.guia-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guia-cover-mock { margin: 0 auto; }
  .guia-features { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav, .btn-header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    order: 3;
    gap: 18px;
    padding: 20px 0 8px;
    align-items: flex-start;
  }
  .nav-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown-trigger { padding: 0; pointer-events: none; }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    padding-top: 0;
    margin-top: 12px;
    width: 100%;
  }
  .nav-dropdown-menu-inner {
    background: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-dropdown-menu a {
    color: var(--gray);
    padding: 6px 0 6px 14px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
  }
  .nav-dropdown-menu a:hover { background: none; color: var(--teal); }
  .site-header.nav-open .btn-header-cta {
    display: inline-block;
    flex: 1 1 100%;
    order: 4;
    margin-bottom: 20px;
  }
  .section { padding: 64px 0; }
  .hero-content { padding: 110px 24px 80px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
