:root {
  --primary-color: #0D2A35;
  --secondary-color: #0052a3;
  --accent-color: #ff7b00;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #4bb543;
  --danger-color: #ff3333;
  --warning-color: #ffcc00;
  --info-color: #33b5e5;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

/* Header */
.header {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header .logo img {
  height: 40px;
}

.header .nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header .nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.header .nav-link {
  color: var(--dark-color);
  transition: color 0.3s;
}

.header .nav-link:hover {
  color: var(--primary-color);
}

.header .btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.header .btn-primary:hover {
  background-color: #e66f00;
}

/* Hero Section */
.hero {
  background: var(--primary-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 80px 1rem 2rem;
}

.hero .hero-content {
  max-width: 800px;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 200px;
}

.hero .btn-primary:hover {
  background-color: white;
  color: var(--primary-color);
}

.hero .btn-secondary {
  background-color: #005249;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 200px;
}

.hero .btn-secondary:hover {
  background-color: #00705c;
  color: white;
}

/* Segunda Seção - Cards de Benefícios */
.why-radiante {
  padding: 4rem 0;
  background-color: white;
}

.why-radiante .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.why-radiante h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-radiante h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-radiante p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid var(--accent-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.benefit-card p {
  color: var(--dark-color);
  line-height: 1.6;
}

/* Terceira Seção - Sobre */
.about {
  padding: 4rem 0;
  background-color: #f5f7fa;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.about-header h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.about-video {
  flex: 1;
}

.about-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.about-cards .about-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-cards .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-cards .about-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-weight: 600;
}

.about-cards .about-card p {
  color: var(--dark-color);
  line-height: 1.6;
}

/* Quarta Seção - Simulador */
.simulator {
  padding: 4rem 0;
  background-color: white;
  position: relative;
}

.simulator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.simulator .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.simulator-content {
  flex: 1;
}

.simulator h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.simulator h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.simulator p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.simulator-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--success-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.feature-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.feature-content p {
  color: var(--dark-color);
  line-height: 1.6;
}

.simulator-image {
  flex: 1;
  text-align: center;
}

.simulator-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 0rem;
}

.btn-primary:hover {
  background-color: #e66f00;
}

/* Quinta Seção - Processo Seletivo */
.process {
  padding: 4rem 0;
  background-color: #f5f7fa;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.process .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.process h3 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.step-content p {
  color: var(--dark-color);
  line-height: 1.6;
}

/* Última Seção - CTA */
.cta {
  padding: 4rem 0;
  background-color: white;
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 200px;
}

.cta .btn-primary:hover {
  background-color: #005249;
  color: white;
}

.cta .btn-secondary {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 200px;
}

.cta .btn-secondary:hover {
  background-color: #005249;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
  .about-content, .simulator .container {
    flex-direction: column;
  }

  .about-text, .about-video, .simulator-content, .simulator-image {
    width: 100%;
  }

  .about-video, .simulator-image {
    margin-top: 2rem;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .header .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-primary, .hero .btn-secondary {
    width: 100%;
    padding: 1rem;
  }

  .benefits-grid, .about-cards, .simulator-features {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta .btn-primary, .cta .btn-secondary {
    width: 100%;
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

/* Estilos para a seção de "em breve" */
.simulator .coming-soon {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
  color: #6c757d;
}

.simulator .coming-soon i {
  color: #ff7b00;
  margin-right: 0.5rem;
}

.simulator .btn-primary {
  display: none; /* Oculta o botão "Conhecer o Simulador" */
}

