/* ==========================================================================
   ÊXITO TREINAMENTOS — DESIGN SYSTEM & VANILLA CSS
   ========================================================================== */

/* Importação de Fontes (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* Dynamic Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;

  /* Cores Institucionais */
  --background: #212d32;
  --foreground: #eef4f5;
  --card: #2c3c42;
  --card-foreground: #eef4f5;
  --popover: #2c3c42;
  --popover-foreground: #eef4f5;
  --primary: #08a9b3;
  --primary-foreground: #08181b;
  --secondary: #3c5057;
  --secondary-foreground: #eef4f5;
  --muted: #3c5057;
  --muted-foreground: #a3b8be;
  --accent: #06abb1;
  --accent-foreground: #08181b;
  --destructive: #e2564a;
  --border: rgba(238, 244, 245, 0.12);
  --input: rgba(238, 244, 245, 0.16);
  --ring: #08a9b3;
  --radius: 0.75rem;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   LAYOUT CONTAINERS & GRID UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.font-display {
  font-family: var(--font-display);
}

/* Section Spacing */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.border-b-custom {
  border-bottom: 1px solid var(--border);
}

.border-t-custom {
  border-top: 1px solid var(--border);
}

.border-y-custom {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bg-card-subtle {
  background-color: rgba(44, 60, 66, 0.4);
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   COMPONENT STYLES
   ========================================================================== */

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: rgba(44, 60, 66, 0.6);
  color: var(--foreground);
  font-weight: 600;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--background);
  color: var(--foreground);
  font-weight: 600;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-white:hover {
  opacity: 0.9;
}

/* Section Tag / Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(8, 169, 179, 0.4);
  background-color: rgba(8, 169, 179, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-transform: uppercase;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(238, 244, 245, 0.12);
  background-color: rgba(33, 45, 50, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .header-inner {
  display: flex;
  height: 4rem; /* 64px */
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .site-header .header-inner {
    height: 5rem; /* 80px */
  }
}

.logo-img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 2.75rem;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--card);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  border-radius: 0.375rem;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: var(--secondary);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(33, 45, 50, 0.85);
  z-index: -10;
}

.hero-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.hero-title {
  margin-top: 1.5rem;
  max-width: 48rem;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-destaques {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
}

.hero-destaque-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(238, 244, 245, 0.9);
}

.hero-destaque-item svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

/* Indicadores Section */
.indicadores-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
}

.indicadores-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .indicadores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .indicadores-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.indicador-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .indicador-item:nth-child(odd) {
    padding-right: 1.5rem;
  }
  .indicador-item:nth-child(even) {
    padding-left: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .indicador-item {
    padding: 2rem 2rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .indicador-item:last-child {
    border-right: none;
  }
  .indicador-item:first-child {
    padding-left: 0;
  }
}

.indicador-valor {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

@media (min-width: 1024px) {
  .indicador-valor {
    font-size: 3rem;
  }
}

.indicador-titulo {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.indicador-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* Sobre Section */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.sobre-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 640px) {
  .sobre-title {
    font-size: 2.25rem;
  }
}

.sobre-text {
  margin-top: 1.5rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.sobre-provas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prova-item {
  display: flex;
  gap: 0.75rem;
}

.prova-icon {
  margin-top: 0.125rem;
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(8, 169, 179, 0.15);
}

.prova-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.prova-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(238, 244, 245, 0.9);
}

.sobre-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.sobre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cursos Section */
.cursos-header {
  max-width: 42rem;
}

.cursos-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cursos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cursos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.curso-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.curso-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 169, 179, 0.6);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 25px -5px rgba(8, 169, 179, 0.25);
}

.curso-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.curso-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.curso-card:hover .curso-img {
  transform: scale(1.06);
}

.curso-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  padding: 1.5rem;
}

.curso-titulo {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--foreground);
  text-transform: none;
}

.curso-chamada {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.curso-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(238, 244, 245, 0.8);
  background-color: rgba(238, 244, 245, 0.03);
}

.curso-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.curso-link:hover {
  gap: 0.75rem;
  opacity: 0.9;
}

/* Cursos Complementares Grid */
.cursos-comp-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cursos-comp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.comp-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.comp-card:hover {
  border-color: rgba(8, 169, 179, 0.4);
  transform: translateY(-2px);
}

.comp-titulo {
  font-size: 1.125rem;
  font-weight: 600;
}

.comp-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comp-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.comp-item span {
  color: var(--primary);
}

/* Diferenciais Section */
.diferenciais-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 2.5rem;
}

@media (min-width: 640px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diferencial-icon {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(8, 169, 179, 0.2), rgba(8, 169, 179, 0.05));
  border: 1px solid rgba(8, 169, 179, 0.3);
  color: var(--primary);
  box-shadow: 0 4px 15px -3px rgba(8, 169, 179, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.diferenciais-grid li:hover .diferencial-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--primary);
  box-shadow: 0 8px 20px -3px rgba(8, 169, 179, 0.35);
}

.diferencial-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.diferencial-titulo {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.diferencial-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}


/* Depoimentos Section */
.stars-wrapper {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}

.stars-text {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.depoimentos-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.depoimento-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.75rem;
}

.depoimento-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(238, 244, 245, 0.9);
}

.depoimento-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depoimento-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 12px rgba(8, 169, 179, 0.3);
  flex-shrink: 0;
}

.depoimento-name {
  font-size: 1rem;
  font-weight: 600;
}

.depoimento-role {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Missão / Propósito Section */
.valores-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .valores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.valor-card {
  border-top: 1px solid rgba(8, 169, 179, 0.4);
  padding-top: 1.5rem;
}

.valor-titulo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.valor-texto {
  margin-top: 0.75rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.missao-banner {
  margin-top: 4rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: var(--primary);
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .missao-banner {
    padding: 3rem 3rem;
  }
}

@media (min-width: 1024px) {
  .missao-banner {
    padding: 4rem 3rem;
  }
}

.banner-titulo {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .banner-titulo {
    font-size: 2.25rem;
  }
}

.banner-desc {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  max-width: 42rem;
  line-height: 1.6;
  color: rgba(8, 24, 27, 0.85);
}

.banner-btn {
  margin-top: 2rem;
}

/* Contato Section */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.contato-info-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-info-item {
  display: flex;
  gap: 1rem;
}

.contato-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

.contato-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.contato-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

a.contato-value:hover {
  color: var(--primary);
}

/* Form */
.contato-form {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contato-form {
    padding: 2rem;
  }
}

.form-group-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background-color: var(--card);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input {
  height: 3rem;
}

.form-select {
  height: 3rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  line-height: 1.6;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
}

.form-submit-btn {
  display: inline-flex;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.form-submit-btn:hover {
  opacity: 0.9;
}

.form-note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 1.875rem;
  height: 1.875rem;
}

/* ==========================================================================
   COOKIE & PRIVACY CONSENT BANNER (LGPD)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(33, 45, 50, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  padding: 1.25rem 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text-content {
  max-width: 48rem;
}

.cookie-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.cookie-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-link:hover {
  opacity: 0.85;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-actions {
    width: auto;
    flex-shrink: 0;
  }
}

.btn-cookie-accept {
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cookie-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-cookie-necessary {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-cookie-necessary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   LEGAL PAGES (TERMOS DE USO & POLITICA DE PRIVACIDADE)
   ========================================================================== */
.legal-page {
  min-height: 80vh;
}

.legal-header {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.legal-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .legal-title {
    font-size: 2.75rem;
  }
}

.legal-subtitle {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.legal-content {
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-block {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .legal-block {
    padding: 2.25rem;
  }
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(238, 244, 245, 0.9);
  margin-bottom: 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-block li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(238, 244, 245, 0.85);
}

.legal-inline-link {
  color: var(--primary);
  text-decoration: underline;
}

.legal-inline-link:hover {
  opacity: 0.85;
}

.legal-contact-callout {
  border-radius: 1rem;
  border: 1px solid rgba(8, 169, 179, 0.4);
  background-color: rgba(8, 169, 179, 0.08);
  padding: 1.75rem;
}

.legal-contact-callout h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.legal-contact-callout p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.legal-contact-callout a {
  color: var(--primary);
  font-weight: 500;
}

/* ==========================================================================
   AWWWARDS 9.5+ CREATIVE SIGNATURE & INTERACTIVE COMPONENTS
   ========================================================================== */

/* Telemetry & Industrial HUD Meta Tags */
.hud-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(8, 169, 179, 0.1);
  border: 1px solid rgba(8, 169, 179, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.hud-tag-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Section "Scene": Visual Journey (01 -> 04) */
.jornada-section {
  position: relative;
  background: linear-gradient(180deg, var(--background) 0%, rgba(8, 169, 179, 0.05) 50%, var(--background) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.jornada-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .jornada-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jornada-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jornada-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem 1.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.jornada-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px -5px rgba(8, 169, 179, 0.2);
}

.jornada-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 1rem;
}

.jornada-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.jornada-step-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Category Filter Tabs for Complementary Courses */
.tabs-container {
  margin-top: 2.5rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.tab-btn {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--muted-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tab-btn:hover {
  border-color: rgba(8, 169, 179, 0.5);
  color: var(--foreground);
}

.tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.tab-pane {
  display: none;
  padding-top: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tab-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tab-course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tab-course-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tab-course-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

/* Impact Storytelling Timeline */
.timeline-section {
  position: relative;
}

.timeline-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--primary);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.timeline-desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* Google Reviews 4.9 Star Badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: rgba(44, 60, 66, 0.6);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.google-badge-stars {
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.depoimento-quote-highlight {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}



