/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --success-color: #25d366;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #007bff, #0056b3);
  --gradient-success: linear-gradient(135deg, #28a745, #1e7e34);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
  font-family: "Inter", "Gowun Batang", serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Simplificado */
.simple-header {
  position: fixed; /* Garante que o cabeçalho fique fixo na viewport */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Garante que o cabeçalho fique acima de outros elementos */
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  /* Sem background ou backdrop-filter para ser transparente e se integrar ao slide */
}

.header-logo .logo-img {
  height: 40px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.btn-home-simple {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-home-simple:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-home-simple i {
  font-size: 16px;
}

/* Hero Section Melhorado */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: white;
  overflow: hidden;
  /* Adicionado padding-top para empurrar o conteúdo do hero para baixo,
     deixando espaço para o cabeçalho fixo, mas mantendo o fundo do hero no topo */
  padding-top: 100px; /* Altura do cabeçalho + um pouco de espaço */
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff08" cx="100" cy="100" r="3"/><circle fill="%23ffffff05" cx="300" cy="200" r="2"/><circle fill="%23ffffff08" cx="500" cy="150" r="4"/><circle fill="%23ffffff05" cx="700" cy="300" r="2"/><circle fill="%23ffffff08" cx="900" cy="250" r="3"/><circle fill="%23ffffff05" cx="200" cy="400" r="2"/><circle fill="%23ffffff08" cx="600" cy="450" r="3"/><circle fill="%23ffffff05" cx="800" cy="500" r="2"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  /* Removido padding-top e margin-top do título, pois o padding-top do .hero-section já faz o trabalho */
  padding-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  /* Removido margin-top aqui */
  margin-top: 0;
}

.highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.feature-item i {
  color: #ffd700;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  background: var(--gradient-success);
  color: white;
  box-shadow: var(--shadow);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--success-color), #1da851);
  color: white;
  box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--text-dark);
}

.btn-modality {
  background: var(--gradient-primary);
  color: white;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Seção Informática em Destaque */
.informatica-highlight-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.informatica-highlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23007bff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.highlight-benefits {
  margin-bottom: 40px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.benefit-col {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.benefit-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-col i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 4px;
}

.benefit-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.benefit-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.highlight-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.duration-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.highlight-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visual-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.card-dots span:first-child {
  background: #ff5f56;
}

.card-dots span:nth-child(2) {
  background: #ffbd2e;
}

.card-dots span:last-child {
  background: #27ca3f;
}

.card-title {
  font-weight: 600;
  color: var(--text-dark);
}

.progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.progress-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  min-width: 80px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--light-color);
  border-radius: 4px;
  margin-left: 16px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 2s ease;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.stars i {
  color: #ffd700;
  font-size: 14px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Seção de Cursos com Thumbnails */
.courses-section {
  padding: 100px 0;
  background: white;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.course-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-thumbnail {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.thumbnail-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-primary);
}

.thumbnail-bg.advanced {
  background: var(--gradient-primary);
}

.thumbnail-bg.programming {
  background: var(--gradient-primary);
}

.thumbnail-bg.design {
  background: var(--gradient-primary);
}

.thumbnail-bg.ai {
  background: var(--gradient-primary);
}

.thumbnail-bg.games {
  background: var(--gradient-primary);
}

.thumbnail-bg.robotics {
  background: var(--gradient-primary);
}

.thumbnail-bg i {
  font-size: 4rem;
  color: white;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}

.thumbnail-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.course-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.course-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.course-features {
  list-style: none;
  margin-bottom: 20px;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.course-features i {
  color: var(--success-color);
  font-size: 12px;
}

/* Seção Modalidades com Thumbnails */
.modalities-section {
  padding: 100px 0;
  background: var(--light-color);
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.modality-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modality-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.modality-thumbnail {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.thumbnail-bg.technical {
  background: var(--gradient-primary);
}

.thumbnail-bg.graduation {
  background: var(--gradient-primary);
}

.thumbnail-bg.postgrad {
  background: var(--gradient-primary);
}

.thumbnail-bg.eja {
  background: var(--gradient-primary);
}

.thumbnail-bg.medicina {
  background: var(--gradient-primary);
}

.thumbnail-bg.socorrista {
  background: var(--gradient-primary);
}

.modality-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modality-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modality-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.modality-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.modality-highlights span {
  background: var(--light-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-muted);
  border-left: 3px solid var(--primary-color);
}

/* Seção de Depoimentos */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="%23007bff" cx="10" cy="10" r="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
  opacity: 0.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonial-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-avatar.programming {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-avatar.design {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-avatar.advanced {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-avatar.technical {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-avatar.eja {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 12px;
}

.testimonial-content {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-badge.success {
  background: var(--success-color);
}

.testimonial-badge.entrepreneur {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-badge.promoted {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-badge.corporate {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-badge.restart {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.stat-testimonial {
  text-align: center;
  padding: 20px;
}

.stat-testimonial .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

.stat-testimonial .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.stat-stars i {
  color: #ffd700;
  font-size: 14px;
}

/* Por que escolher */
.why-choose-section {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.benefit-item {
  text-align: center;
  padding: 32px 16px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 2rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.benefit-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Final */
.final-cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.8;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* Rodapé (mantido do institucional) */
.msd-footer {
  background-color: #020743;
  color: #ffffff;
  padding: 3rem 0;
}

.msd-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.msd-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.msd-footer-logo,
.msd-footer-links,
.msd-footer-contact,
.msd-footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1rem;
}

.msd-footer-logo-img {
  max-width: 220px;
  margin-bottom: 1rem;
}

.msd-footer h3 {
  color: #64b5f6;
  margin-bottom: 1rem;
}

.msd-footer ul {
  list-style: none;
  padding: 0;
}

.msd-footer ul li {
  margin-bottom: 0.5rem;
}

.msd-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.msd-footer a:hover {
  color: #64b5f6;
}

.msd-social-icons {
  display: flex;
  gap: 1rem;
}

.msd-social-icons a {
  font-size: 1.5rem;
}

.msd-footer-branches {
  margin-bottom: 2rem;
}

.msd-branches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.msd-branch {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
}

.msd-branch h4 {
  color: #64b5f6;
  margin-bottom: 0.5rem;
}

.msd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.msd-footer-legal {
  display: flex;
  gap: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  /* Header Responsivo */
  .simple-header {
    padding: 15px 20px;
    min-height: 70px;
  }

  .header-logo .logo-img {
    height: 35px;
    max-width: 220px;
  }

  .btn-home-simple span {
    display: none;
  }

  .btn-home-simple {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  /* Hero */
  .hero-section {
    padding-top: 80px; /* Ajuste para mobile */
  }

  .hero-features {
    gap: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  /* Highlight Section */
  .highlight-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Grids */
  .courses-grid,
  .modalities-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Testimonials Responsivo */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Contact Info */
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer */
  .msd-footer-main,
  .msd-branches-list {
    flex-direction: column;
  }

  .msd-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .msd-footer-legal {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding-top: 60px; /* Ajuste para mobile menor */
  }

  .section-header {
    margin-bottom: 40px;
  }

  .course-content,
  .modality-content {
    padding: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 12px;
  }

  .course-thumbnail,
  .modality-thumbnail {
    height: 160px;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card,
.modality-card,
.benefit-item,
.testimonial-item {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
