/* ==========================================================================
   ACADEMIA DE MÚSICA ESPAÇO HARMONIA
   Identidade Visual Oficial: Azul #3264C7, Navy #0B1F3A, Branco e Neutros
   Tipografia: Montserrat (Títulos) / Inter (Textos)
   ========================================================================== */

:root {
  /* Paleta Oficial */
  --primary: #3264C7;
  --primary-hover: #246BDB;
  --navy: #0B1F3A;
  --navy-dark: #071528;
  --navy-card: #112849;
  --blue-light: #EEF5FF;
  --blue-soft: #E1EDFE;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --gray-border: #E4E8EE;
  --gray-text: #5F6B7A;
  --gray-muted: #8A96A6;
  --dark: #171A1F;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BD5A;
  --star-gold: #F59E0B;

  /* Tipografia */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 3px rgba(11, 31, 58, 0.05);
  --shadow-sm: 0 4px 12px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 28px rgba(11, 31, 58, 0.09);
  --shadow-lg: 0 18px 45px rgba(11, 31, 58, 0.14);
  --shadow-blue: 0 8px 24px rgba(50, 100, 199, 0.28);

  /* Transições e Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

/* ---------------- RESET & BASE ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   EFEITO VISUAL EXCLUSIVO DA PRIMEIRA DOBRA (HERO) - "TOQUE DE UAU"
   Notas musicais flutuantes elegantes, com aceleração GPU e suave brilho
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .section-music-notes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.hero-section .floating-note {
  position: absolute;
  bottom: -60px;
  color: #D8EBFF;
  will-change: transform, opacity;
  animation-name: heroFloatMusicNote;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-iteration-count: infinite;
  pointer-events: none;
  display: block;
  filter: drop-shadow(0 0 12px rgba(85, 160, 255, 0.65));
}

@keyframes heroFloatMusicNote {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--rot-start, -12deg)) scale(0.9);
  }
  18% {
    opacity: var(--note-opacity, 0.35);
  }
  50% {
    transform: translate3d(calc(var(--drift, 30px) * 0.6), calc(var(--travel-y, -900px) * 0.5), 0) rotate(calc((var(--rot-start, -12deg) + var(--rot-end, 18deg)) * 0.5)) scale(1.06);
  }
  82% {
    opacity: var(--note-opacity, 0.35);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 30px), var(--travel-y, -900px), 0) rotate(var(--rot-end, 18deg)) scale(0.94);
  }
}

/* Conteúdo do Hero estritamente à frente das notas */
.hero-container,
.hero-content,
.hero-ctas,
.hero-badges,
.hero-tag {
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .hero-section .floating-note:nth-child(even) {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section .section-music-notes {
    display: none !important;
  }
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ---------------- TIPOGRAFIA GERAL ---------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--primary);
  font-weight: 800;
}

.text-white {
  color: var(--white) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid var(--blue-soft);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: #EEF5FF;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------------- BOTÕES & CTAS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(50, 100, 199, 0.38);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.18);
  font-size: 1rem;
  padding: 15px 32px;
}

.btn-white:hover {
  background-color: #FAFCFF;
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.24);
}

.btn-whatsapp-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(50, 100, 199, 0.25);
}

.btn-whatsapp-header:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.cta-text-mobile {
  display: none;
}

.cta-text-full {
  display: inline;
}

.btn-block {
  width: 100%;
}

/* ---------------- 1. HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: 8px 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: var(--gray-bg);
  cursor: pointer;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: calc(100vh - 76px);
  background-color: var(--white);
  padding: 24px 20px 40px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
  overflow-y: auto;
  border-top: 1px solid var(--gray-border);
}

.mobile-nav-drawer.open {
  display: flex;
  animation: slideDrawer 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDrawer {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mobile-drawer-footer {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------------- 2. HERO — PRIMEIRA DOBRA ---------------- */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.94) 0%,
    rgba(11, 31, 58, 0.88) 45%,
    rgba(11, 31, 58, 0.72) 100%
  );
  z-index: 2;
}

.hero-soundwave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
  opacity: 0.15;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 100, 199, 0.28);
  border: 1px solid rgba(50, 100, 199, 0.6);
  color: #EEF5FF;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-tag svg {
  color: #246BDB;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #5590FF;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E2EAF4;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 660px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #D2E0F2;
}

.hero-badge-item svg {
  color: #4B85E8;
  flex-shrink: 0;
}

/* ---------------- 3. SEÇÃO SOBRE ---------------- */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-pill {
  position: absolute;
  bottom: -20px;
  right: 24px;
  background-color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--gray-border);
}

.about-floating-icon {
  width: 44px;
  height: 44px;
  background-color: var(--blue-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-floating-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.about-floating-sub {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ---------------- EDITORIAL: O QUE VOCÊ ENCONTRA AQUI ---------------- */
.about-editorial {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-border);
  width: 100%;
}

.about-editorial-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.editorial-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.editorial-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}

.editorial-item:first-child {
  padding-top: 0;
}

.editorial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.editorial-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
  min-width: 28px;
  flex-shrink: 0;
}

.editorial-body {
  flex: 1;
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.editorial-desc {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin: 0;
}

/* ---------------- 4. CURSOS ---------------- */
.courses-section {
  padding: 100px 0;
  background-color: var(--gray-bg);
}

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

.course-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.course-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-media img {
  transform: scale(1.05);
}

.course-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.course-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-footer {
  margin-top: auto;
}

.btn-course-cta {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(50, 100, 199, 0.2);
}

.btn-course-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(50, 100, 199, 0.32);
}

/* ---------------- 5. COMO FUNCIONA (JORNADA EDITORIAL) ---------------- */
.journey-section {
  padding: 100px 0;
  background-color: var(--white);
  text-align: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.journey-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(50, 100, 199, 0.35) 0%, rgba(50, 100, 199, 0.35) 100%);
  z-index: 1;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.journey-step-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.journey-step-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  padding: 0 16px;
  background-color: var(--white);
  z-index: 2;
  text-align: center;
  display: inline-block;
}

.journey-step-line {
  display: none;
}

.journey-step-stem {
  width: 2px;
  height: 20px;
  background-color: rgba(50, 100, 199, 0.25);
  margin: 8px auto 14px auto;
}

.journey-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.journey-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
}

.journey-step-desc {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 260px;
  text-align: center;
}

/* ---------------- 6. DIFERENCIAIS ---------------- */
.differentials-section {
  padding: 100px 0;
  background-color: var(--blue-light);
}

.differentials-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}

.differentials-content .section-title {
  text-align: left;
}

.differentials-lead {
  font-size: 1.0625rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 28px;
  max-width: 540px;
}

/* ---------------- EDITORIAL: DIFERENCIAIS ---------------- */
.differentials-editorial {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(50, 100, 199, 0.15);
  padding-top: 12px;
}

.diff-editorial-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(50, 100, 199, 0.15);
}

.diff-editorial-item:first-child {
  padding-top: 0;
}

.diff-editorial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diff-editorial-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 44px;
  flex-shrink: 0;
  padding-top: 2px;
}

.diff-editorial-body {
  flex: 1;
}

.diff-editorial-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  line-height: 1.35;
}

.diff-editorial-desc {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin: 0;
}

.differentials-visual {
  position: relative;
}

.diff-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.14);
  aspect-ratio: 4 / 5;
}

.diff-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diff-quote-badge {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(7, 21, 40, 0.28);
}

.diff-quote-text {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.5;
  color: #F1F5F9;
  margin: 0 0 10px 0;
}

.diff-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93C5FD;
}

.diff-quote-author::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background-color: #93C5FD;
}

/* ---------------- 7. SEÇÃO EMOCIONAL ---------------- */
.emotional-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.emotional-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.emotional-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 31, 58, 0.7) 0%, rgba(11, 31, 58, 0.95) 100%);
}

.emotional-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.emotional-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.emotional-text {
  font-size: 1.1875rem;
  color: #D2E0F2;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ---------------- 8. DEPOIMENTOS ---------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
}

.google-review-badge {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}

.google-g-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.google-rating-score {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
}

.google-stars {
  display: flex;
  gap: 3px;
  color: var(--star-gold);
}

.google-review-count {
  font-size: 0.8125rem;
  color: var(--gray-text);
  font-weight: 600;
}

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

.testimonial-card {
  background-color: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  background-color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.test-stars {
  display: flex;
  gap: 3px;
  color: var(--star-gold);
  margin-bottom: 16px;
}

.test-quote {
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.test-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}

.test-avatar,
.test-avatar-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #FFFFFF;
  flex-shrink: 0;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.test-avatar-l { background: linear-gradient(135deg, #7C4DFF, #536DFE); }
.test-avatar-a { background: linear-gradient(135deg, #E91E63, #FF4081); }
.test-avatar-m { background: linear-gradient(135deg, #00B0FF, #00897B); }

.test-author-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.test-author-meta {
  font-size: 0.78125rem;
  color: var(--gray-text);
  font-weight: 500;
}

.test-verified-badge {
  margin-left: auto;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------------- 9. FAQ ---------------- */
.faq-section {
  padding: 100px 0;
  background-color: var(--gray-bg);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(50, 100, 199, 0.4);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  padding-bottom: 22px;
}

.faq-content {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.faq-content strong {
  color: var(--navy);
}

/* ---------------- 10. LOCALIZAÇÃO ---------------- */
.location-section {
  padding: 100px 0;
  background-color: var(--navy);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info .section-title {
  color: var(--white);
  text-align: left;
}

.location-lead {
  font-size: 1.125rem;
  color: #D2E0F2;
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-address-box {
  background-color: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}

.address-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.address-row:last-child {
  margin-bottom: 0;
}

.address-icon {
  width: 24px;
  height: 24px;
  color: #5590FF;
  flex-shrink: 0;
  margin-top: 2px;
}

.address-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8CAFD9;
  margin-bottom: 2px;
}

.address-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.location-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-facade-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.location-facade-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
  position: relative;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- 11. CTA FINAL ---------------- */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--primary);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.final-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.final-cta-text {
  font-size: 1.1875rem;
  color: #EEF5FF;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-subtext {
  font-size: 0.875rem;
  color: #D2E2FB;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------------- 12. FOOTER ---------------- */
.site-footer {
  background-color: var(--navy);
  color: #9DB1C9;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Logo container: clean white badge to preserve 100% of the original logo colors and contrast */
.footer-logo-badge {
  display: inline-block;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  width: fit-content;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo-badge img {
  height: 44px;
  width: auto;
}

.footer-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9DB1C9;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: #9DB1C9;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #9DB1C9;
}

.footer-contact-item svg {
  color: #5590FF;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy-card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: #7B8FA6;
}

/* ---------------- FLOATING WHATSAPP BUTTON ---------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
}

.floating-whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-whatsapp-tooltip {
  background-color: var(--white);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------- INTERACTIVE MODAL AGENDAMENTO ---------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-border);
  position: relative;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gray-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--blue-light);
  color: var(--primary);
}

.modal-form {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(50, 100, 199, 0.15);
}

.modal-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-muted);
  text-align: center;
  margin-top: 4px;
}

/* ---------------- RESPONSIVIDADE (MOBILE FIRST DETAILS) ---------------- */
@media (max-width: 1080px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .header-cta-desktop {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .about-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-content .section-title {
    text-align: center;
  }
  .about-lead, .about-text {
    text-align: center;
  }
  .about-editorial {
    text-align: center;
    max-width: 520px;
    margin: 32px auto 0;
    width: 100%;
  }
  .about-editorial-title {
    text-align: center;
  }
  .editorial-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .editorial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 6px;
    padding: 18px 0;
  }
  .editorial-num {
    text-align: center;
    min-width: auto;
    margin-bottom: 2px;
  }
  .editorial-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .editorial-title {
    text-align: center;
  }
  .editorial-desc {
    text-align: center;
  }
  .about-image-wrapper {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  .journey-grid::before {
    display: none;
  }
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 36px;
    margin-top: 44px;
    justify-items: center;
  }
  .differentials-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .differentials-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .differentials-content .section-title,
  .differentials-lead {
    text-align: center;
  }
  .differentials-editorial {
    text-align: left;
    max-width: 520px;
    margin: 28px auto 0;
    width: 100%;
  }
  .differentials-visual {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }
  .location-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .location-info .section-title {
    text-align: center;
  }
  .location-lead {
    text-align: center;
  }
  .location-address-box {
    max-width: 440px;
    width: 100%;
    margin: 0 auto 28px;
  }
  .location-visual {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .testimonial-card {
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .header-container {
    height: 64px;
    padding-left: 14px;
    padding-right: 14px;
    gap: 8px;
  }
  .header-brand {
    flex-shrink: 0;
  }
  .brand-logo {
    height: 34px;
    max-width: 115px;
  }
  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }
  .cta-text-full {
    display: none !important;
  }
  .cta-text-mobile {
    display: inline !important;
  }
  .btn-whatsapp-header {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    gap: 5px !important;
    flex-shrink: 0;
  }
  .hamburger-btn {
    display: flex !important;
    width: 36px;
    height: 36px;
    padding: 6px;
    flex-shrink: 0;
  }

  /* ---------------- HERO (NÃO MEXER - MANTIDA ORIGINAL) ---------------- */
  .hero-section {
    min-height: auto;
    padding: 60px 0 80px;
    text-align: left;
  }
  .hero-content {
    text-align: left;
    margin: 0;
    display: block;
    width: 100%;
  }
  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
    white-space: normal;
    text-align: left;
    line-height: 1.35;
    margin: 0 0 20px 0;
    display: inline-flex;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    text-align: left;
  }
  .hero-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 24px;
    text-align: left;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
    width: 100%;
    text-align: left;
  }
  .hero-badge-item {
    justify-content: flex-start;
    text-align: left;
  }
  
  /* ---------------- SEÇÃO SOBRE (CENTRALIZADA) ---------------- */
  .about-section {
    padding: 70px 0;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 36px;
  }
  .about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-content .section-title {
    text-align: center;
  }
  .about-lead, .about-text {
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .about-floating-pill {
    position: static;
    margin-top: 14px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    justify-content: center;
    text-align: left;
  }
  /* ---------------- SOBRE: O QUE VOCÊ ENCONTRA AQUI (CENTRALIZADO NO MOBILE) ---------------- */
  .about-editorial {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    padding-top: 24px;
  }
  .about-editorial-title {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
  .editorial-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .editorial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    gap: 6px;
    padding: 18px 0;
  }
  .editorial-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    min-width: auto;
    margin-bottom: 2px;
  }
  .editorial-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .editorial-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 4px;
  }
  .editorial-desc {
    font-size: 0.9375rem;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.55;
    max-width: 300px;
    margin: 0 auto;
  }

  /* ---------------- CURSOS (CENTRALIZADOS) ---------------- */
  .courses-section {
    padding: 70px 0;
  }
  .courses-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }
  .course-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-align: center;
  }
  .course-header-row {
    justify-content: center;
  }
  .course-desc {
    text-align: center;
  }
  .course-footer {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .btn-course-cta {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  /* ---------------- COMO FUNCIONA (MOBILE - CENTRALIZADO) ---------------- */
  .journey-section {
    padding: 70px 0;
    text-align: center;
  }
  .journey-grid::before {
    display: none;
  }
  .journey-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-top: 36px;
    width: 100%;
  }
  .journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .journey-step-line {
    display: none;
  }
  .journey-step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2px;
  }
  .journey-step-num {
    font-size: 2.25rem;
    padding-right: 0;
    text-align: center;
  }
  .journey-step-stem {
    height: 16px;
    width: 2px;
    margin: 4px auto 12px auto;
  }
  .journey-step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .journey-step-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-align: center;
  }
  .journey-step-desc {
    font-size: 0.9375rem;
    text-align: center;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto;
  }

  /* ---------------- DIFERENCIAIS (CENTRALIZADOS) ---------------- */
  .differentials-section {
    padding: 70px 0;
  }
  .differentials-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 36px;
  }
  .differentials-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .differentials-content .section-title,
  .differentials-lead {
    text-align: center;
  }
  .differentials-editorial {
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    padding-top: 16px;
  }
  .diff-editorial-item {
    gap: 16px;
    padding: 16px 0;
  }
  .diff-editorial-num {
    font-size: 1.5rem;
    min-width: 36px;
  }
  .diff-editorial-title {
    font-size: 0.95rem;
  }
  .diff-editorial-desc {
    font-size: 0.9rem;
  }
  .differentials-visual {
    max-width: 440px;
    width: 100%;
    margin: 20px auto 0;
  }
  .diff-quote-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
    text-align: left;
  }

  /* ---------------- TÍTULOS E ELEMENTOS GERAIS ---------------- */
  .section-title {
    font-size: 1.625rem;
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
  }
  .section-tag {
    margin: 0 auto 14px;
    display: table;
  }

  /* ---------------- SEÇÃO EMOCIONAL (CENTRALIZADA) ---------------- */
  .emotional-section {
    padding: 80px 0;
    text-align: center;
  }
  .emotional-title {
    font-size: 1.85rem;
    text-align: center;
  }
  .emotional-text {
    text-align: center;
  }
  .emotional-container .btn {
    margin: 0 auto;
  }

  /* ---------------- DEPOIMENTOS (CENTRALIZADOS) ---------------- */
  .testimonials-section {
    padding: 70px 0;
  }
  .testimonials-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }
  .testimonial-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    padding: 24px 20px;
  }
  .test-stars {
    justify-content: center;
  }
  .test-quote {
    text-align: center;
  }
  .test-author-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .test-verified-badge {
    margin-left: 0;
  }

  /* ---------------- FAQ (CENTRALIZADO) ---------------- */
  .faq-section {
    padding: 70px 0;
  }
  .faq-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .faq-item {
    width: 100%;
    box-sizing: border-box;
  }

  /* ---------------- LOCALIZAÇÃO (CENTRALIZADA) ---------------- */
  .location-section {
    padding: 70px 0;
  }
  .location-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 32px;
  }
  .location-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .location-info .section-title {
    text-align: center;
  }
  .location-lead {
    text-align: center;
  }
  .location-address-box {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 24px;
    box-sizing: border-box;
  }
  .address-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .address-icon {
    margin: 0 auto;
  }
  .location-info .btn {
    margin: 0 auto;
  }
  .location-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* ---------------- CTA FINAL (CENTRALIZADO) ---------------- */
  .final-cta-section {
    padding: 70px 0;
  }
  .final-cta-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }
  .final-cta-title {
    font-size: 1.85rem;
    text-align: center;
  }
  .final-cta-text {
    text-align: center;
  }
  .final-cta-actions .btn {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  /* ---------------- FOOTER (CENTRALIZADO) ---------------- */
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-brand-box {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-logo-badge {
    margin: 0 auto;
  }
  .footer-bio {
    text-align: center;
    margin: 0 auto;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-col h4 {
    text-align: center;
  }
  .footer-links {
    align-items: center;
    text-align: center;
  }
  .footer-contact-list {
    align-items: center;
    text-align: center;
  }
  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .footer-socials {
    justify-content: center;
    margin: 14px auto 0;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  /* ---------------- WHATSAPP FLUTUANTE ---------------- */
  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 950;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }
}



