/* Estilos para a Landing Page do Curso de Esquadrias de Alumínio */

:root {
  --primary-color: #0056b3;
  --secondary-color: #17a2b8;
  --accent-color: #ff6b00;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

/* Estilos Gerais */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

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

/* Header */
.header-area {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--heading-font);
  color: var(--primary-color);
}

.countdown {
  font-weight: bold;
  color: var(--danger-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-image {
  max-width: 80%;
  margin: 0 auto;
}

.price-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
}

.cta-button {
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Problema e Solução */
.problem-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.solution-box {
  border-left: 4px solid var(--primary-color);
}

/* Benefícios */
.benefit-card {
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Conteúdo do Curso */
.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 86, 179, 0.25);
}

/* Autoridade */
.authority-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* Depoimentos */
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-card {
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.swiper {
  padding-bottom: 50px;
}

/* Bônus */
.bonus-card {
  transition: var(--transition);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Principal */
.cta-section {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  color: white;
  padding: 80px 0;
}

.cta-section h2, .cta-section p {
  color: white;
}

.countdown-cta {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  display: inline-block;
}

/* Animações e Efeitos */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Elementos de Urgência */
.badge-limited {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  font-size: 0.8rem;
  z-index: 10;
  transform: rotate(15deg);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .countdown-cta {
    font-size: 1rem;
  }
}

/* Elementos Flutuantes */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

/* Efeitos de Hover */
.hover-grow {
  transition: transform 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

/* Elementos de Destaque */
.highlight-box {
  border: 2px dashed var(--accent-color);
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 107, 0, 0.05);
}

/* Stripe Payment Button Styling */
.stripe-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.stripe-button:hover {
  background-color: #004494;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Selos e Certificações */
.certification-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.certification-badge {
  background-color: white;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--dark-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Efeitos de Destaque para CTAs */
.cta-highlight {
  position: relative;
}

.cta-highlight::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed var(--accent-color);
  border-radius: 60px;
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Contador Regressivo Estilizado */
.countdown-styled {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.countdown-unit {
  background-color: var(--dark-color);
  color: white;
  padding: 10px;
  border-radius: 5px;
  min-width: 60px;
  text-align: center;
}

.countdown-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.countdown-unit small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Indicador de Vagas Limitadas */
.vacancy-indicator {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
}

.vacancy-bar {
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.vacancy-progress {
  height: 100%;
  width: 70%; /* Ajustar conforme necessário */
  background-color: var(--danger-color);
  border-radius: 10px;
}

/* Ícones de Pagamento */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.payment-icons i {
  font-size: 2rem;
  color: var(--gray-color);
}

/* Selos de Segurança */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.security-badge i {
  color: var(--success-color);
}
