/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/imagemprincipal.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* Video Background */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Conteúdo */
.container {
  z-index: 2;
}

/* Botão personalizado */
.btn-primary {
  background-color: #4CAF50;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


/* Navbar Styles */
.navbar {
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.nav-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 100vw;
  padding: 10px 25px;
  margin-top: 20px;
}

/* Logo/Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
}

/* Links de navegação */
.navbar-nav .nav-link {
  color: #fff!important;
  font-weight: 500;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100vw;
}

/* Botões de acesso */
.nav-buttons .btn {
  padding: 8px 20px;
  border-radius: 100vw;
  font-weight: 500;
}

.btn-outline-light {
  border: 2px solid #fff;
}

.btn-success {
  background-color: #4CAF50;
  border: none;
}

.btn-success:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991px) {
  .nav-container {
      border-radius: 15px;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    margin-top: 15px;
    padding: 15px;
    border-radius: 15px;
}

  .navbar-nav .nav-link {
      color: #333 !important;
  }

  .nav-buttons {
      margin-top: 15px;
  }
}

.features-section {
  background-color: #f8f9fa;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.funcionalidades-section {
    background-color: #f8f9fa;
}

.feature-icon-detailed {
    width: 56px;
    height: 56px;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.feature-detailed {
    transition: all 0.3s ease;
}

.feature-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.text-primary {
    color: #4CAF50 !important;
}

@media (max-width: 991.98px) {
    .feature-detailed {
        text-align: left;
    }
}

.how-it-works {
  background-color: #e8f5f3;
  position: relative;
  overflow: hidden;
}

.step-row {
  position: relative;
  padding: 2rem 0;
}

.step-image {
  padding: 1rem;
  max-width: 450px; /* Limitando o tamanho máximo da imagem */
  margin: 0 auto;
}

.step-image img {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.step-image img:hover {
  transform: scale(1.02);
}

.step-content {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-header {
  margin-bottom: 1.5rem;
}

.step-number {
  background: #4CAF50;
  color: white;
  padding: 0.5rem 2rem;        /* Aumentado o padding horizontal */
  border-radius: 100px;        /* Mantido para garantir as bordas arredondadas */
  display: inline-flex;        /* Mudado para inline-flex para melhor alinhamento */
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;          /* Aumentado o tamanho da fonte */
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
  min-width: 120px;           /* Largura mínima garantida */
  height: 40px;               /* Altura fixa */
}

.step-instructions {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.step-instructions li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #4F4F4F;
}

.step-instructions li::before {
  content: "•";
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.competencias-list ul li {
  margin-bottom: 0.5rem;
  color: #4F4F4F;
  padding-left: 1.5rem;
  position: relative;
}

.competencias-list ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.final-score {
  margin-top: 1rem;
}

.score-range {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4CAF50;
  display: block;
  margin-bottom: 1rem;
}

.score-explanation {
  color: #4F4F4F;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .step-row {
      text-align: center;
  }
  
  .step-content {
      margin-top: 1.5rem;
  }

  .step-instructions li {
      text-align: left;
  }
  
  .step-image {
      max-width: 350px; /* Menor em telas mobile */
  }
}
.contact-section {
  background-color: #fff;
}

.contact-card {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(76, 175, 80, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.email-icon {
  color: #4CAF50;
}

.email-link {
  color: #4CAF50;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #3d8b40;
}

@media (max-width: 576px) {
  .contact-card {
      flex-direction: column;
      padding: 1rem;
  }
  
  .email-link {
      font-size: 0.875rem;
  }
}

.modal-content {
  border: none;
  border-radius: 1rem;
}

.modal-body {
  padding: 2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  background: #4CAF50;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.features-list li::before {
  content: "•";
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.text-primary {
  color: #4CAF50 !important;
}

.btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.btn-primary:hover {
  background-color: #45a049;
  border-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
  .modal-body {
      padding: 1.5rem;
  }
}

.footer {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-link {
  color: #666;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #4CAF50;
}

.separator {
  color: #ddd;
  font-size: 0.75rem;
}

.simple-list {
  list-style: none;
  padding-left: 0;
}

.simple-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.simple-list li::before {
  content: "•";
  color: #4CAF50;
  position: absolute;
  left: 0;
}

.modal-content {
  border: none;
  border-radius: 1rem;
}

.modal-body {
  padding: 2rem;
}

@media (max-width: 768px) {
  .modal-body {
      padding: 1.5rem;
  }
}