/* Arquivo CSS Principal - Invokers LP */
/* Importa todos os módulos CSS organizados */

/* Base */
@import url('./base/reset.css');
@import url('./base/variables.css');
@import url('./base/responsive.css');

/* Componentes */
@import url('./components/header.css');
@import url('./components/buttons.css');
@import url('./components/cards.css');
@import url('./components/swiper.css');
@import url('./components/forms.css');
@import url('./components/progression.css');

/* Páginas */
@import url('./pages/home.css');
@import url('./pages/checkout.css');
@import url('./pages/status.css');

/* Estilos específicos que não se encaixam nos módulos acima */

/* Elementos gerais */
.bg-img {
  left: 0;
  max-width: 99vw;
  overflow: hidden;
  z-index: -1;
  position: absolute;
  filter: brightness(0.2);
}

.whatsapp-button {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
}

.whatsapp-button > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
}

.invokers-logo {
  width: 80px;
  height: 80px;
}

/* Seções específicas */
#forwho-section > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
  position: relative;
}

.forwho-item {
  font-size: clamp(1rem, 3vw, 1.5rem);
  padding: 1rem;
  text-align: center;
  border: 1px solid #71717a;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.forwho-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 20vw, 300px);
  height: clamp(200px, 20vw, 300px);
  border-radius: 50%;
}

/* Media Queries para Responsividade */
@media (min-width: 768px) {
  #forwho-section > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  #forwho-section > div {
    gap: 4rem;
    padding: 3rem;
  }
}

#hero-section > p {
  font-size: clamp(0.875rem, 2vw, 1rem);
}

#courses-section > p {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 1rem 0;
  color: #a1a1aa;
  font-weight: bold;
}

.title {
  margin-top: clamp(60px, 8vw, 120px);
}

.courses-list {
  width: 100%;
}

.item {
  width: 100%;
  height: 450px;
}

.feedbacks-section {
  max-width: 1200px;
  padding: var(--space-16) var(--space-5);
}

.feedbacks-section .section-title {
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.feedbacks-section .section-subtitle {
  color: #4b5563;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.feedbacks-list {
  width: 100%;
}

.feedbacks-list > img {
  width: 300px;
  height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.feedbacks-list .item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits-list {
  display: flex;
  gap: 20px;
}

.benefits-item {
  background-color: gray;
}

.coach-list {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.coach-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.coach-info > p {
  color: #18181b;
}

.coach-info > img {
  width: 100%;
  border-radius: 20px;
}

.mentorias-section {
  padding: 20px;
}

.mentorias-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mentorias-content img {
  border-radius: 20px;
}

.text-content {
  flex: 1;
}

.mentoria-image {
  width: 100%;
  max-width: 600px;
  flex-shrink: 0;
}

.bonus-img {
  width: 100%;
  border-radius: 20px;
  margin: 20px 0;
}

.countdown-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #6d28d9, #ec4899);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  z-index: 1000;
  font-weight: bold;
}

.bonus-list > li > img {
  width: 25px;
  height: 25px;
}

.bonus-list > li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Como Funciona */
#how-it-works-section {
  padding: 80px 20px;
}

.how-it-works-header {
  margin-bottom: 60px;
}

.how-it-works-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0369a1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.how-it-works-subtitle {
  font-size: 1.3rem;
  color: #0c4a6e;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(3, 105, 161, 0.05);
  transition: all 0.6s ease;
  border: 2px solid rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
  opacity: 0.6;
  transform: translateY(30px);
}

.step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9ca3af, #6b7280);
  transition: all 0.6s ease;
}

.step-item.active {
  opacity: 1;
  transform: translateY(0);
  background: white;
  box-shadow: 0 20px 40px rgba(3, 105, 161, 0.2);
  border: 2px solid #0ea5e9;
}

.step-item.active::before {
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  height: 6px;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(3, 105, 161, 0.2);
  border-color: #0284c7;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(156, 163, 175, 0.2);
  transition: all 0.6s ease;
}

.step-item.active .step-number {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
}

.step-content p {
  color: #6b7280;
  line-height: 1.5;
}

/* Learning Benefits */
.learning-header {
  margin-bottom: 60px;
}

.learning-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
}

.learning-subtitle {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.learning-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s ease;
  text-align: center;
  opacity: 0.6;
  transform: translateY(30px);
}

.learning-card.active {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.learning-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.learning-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.learning-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.learning-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.learning-detail {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

.learning-cta {
  text-align: center;
  margin-top: 40px;
}

/* Results Stats */
.results-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #6d28d9;
  font-family: "Bebas Neue", sans-serif;
  display: block;
}

.stat-label {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Instructors Section */
.instructors {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 20px;
  color: #1a1a1a;
}

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

.instructors .badge {
  display: inline-block;
  background: linear-gradient(135deg, #6d28d9, #ec4899);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.instructors h2 {
  font-size: 20px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.instructors .section-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
#pricing-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.pricing-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pricing-swiper {
  padding: 20px 0 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
}

.plan-header {
  height: 180px;
  text-align: center;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  order: 1;
}

.currency {
  font-size: 1.2rem;
  color: #6b7280;
}

.installment-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.installment-text {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
}

.amount {
  font-size: 2.8rem;
  font-weight: bold;
  color: #6d28d9;
  font-family: "Space Grotesk", sans-serif;
}

.period {
  font-size: 1rem;
  color: #6b7280;
}

.plan-description {
  color: #6b7280;
  font-size: 0.8rem;
  margin-top: 8px;
  order: 2;
}

.pricing-subtitle {
  text-align: center;
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.pricing-section .section-title {
  color: #1f2937;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-align: center;
}

.pricing-section .pricing-subtitle {
  color: #4b5563;
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.original-price {
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-top: 8px;
  order: 3;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex: 1;
}

.plan-features li {
  padding: 8px 0;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  flex-shrink: 0;
}

.pricing-cta.primary {
  background: linear-gradient(135deg, #6d28d9, #ec4899);
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.pricing-cta.primary:hover {
  box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

.guarantee-section {
  text-align: center;
  margin-top: 40px;
}

.guarantee-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #22c55e;
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  color: #166534;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: "Space Grotesk", sans-serif;
}

.guarantee-content p {
  color: #15803d;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Section */
#faq-section {
  background: white;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  color: #6d28d9;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
}

.faq-icon {
  font-size: 1.5rem;
  color: #6d28d9;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  padding: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
  padding: 0 0 20px 0;
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  content: "−";
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.faq-cta-text {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Footer Profissional */
.main-footer {
  background: #f8fafc;
  color: #1a1a1a;
  padding: 60px 0 20px;
  border-top: 1px solid #e2e8f0;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.footer-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #6d28d9;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6d28d9;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  margin: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  font-size: 1.2rem;
}

/* Media Queries para Como Funciona - Mobile */
@media (max-width: 768px) {
  #how-it-works-section {
    padding: 40px 15px;
  }
  
  .how-it-works-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .how-it-works-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  
  .step-item {
    padding: 30px 20px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  #how-it-works-section {
    padding: 30px 10px;
  }
  
  .how-it-works-header h2 {
    font-size: 1.75rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
  }
  
  .step-item {
    padding: 25px 15px;
    margin: 0 5px;
  }
}

/* Media Queries para Learning Section - Mobile */
@media (max-width: 768px) {
  .learning-header h2 {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }
  
  .learning-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  
  .learning-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .learning-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  .learning-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}

/* Media Queries para Pricing Section - Mobile */
@media (max-width: 768px) {
  #pricing-section {
    padding: 40px 15px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .pricing-card {
    padding: var(--space-6);
    margin: 0 5px;
  }
  
  .pricing-card.featured {
    transform: none;
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  #pricing-section {
    padding: 30px 10px;
  }
  
  .pricing-grid {
    gap: 15px;
    padding: 0 5px;
  }
  
  .pricing-card {
    padding: var(--space-5);
    margin: 0;
  }
  
  .pricing-card.featured {
    margin: 0;
  }
  
  .plan-header h3 {
    font-size: 1.25rem;
  }
  
  .amount {
    font-size: 2.2rem;
  }
  
  .installment-text {
    font-size: 1rem;
  }
  
  .plan-features {
    font-size: 0.9rem;
  }
  
  .plan-features li {
    padding: 8px 0;
  }
  
  .pricing-cta {
    padding: 12px;
    font-size: 1rem;
  }
}

/* Media Queries para Instructors Section - Mobile */
@media (max-width: 768px) {
  .instructors {
    padding: 40px 15px;
  }
  
  .instructors h2 {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }
  
  .instructors .section-text {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
}

@media (max-width: 480px) {
  .instructors {
    padding: 30px 10px;
  }
  
  .instructors h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  .instructors .section-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}

/* Media Queries para FAQ Section - Mobile */
@media (max-width: 768px) {
  #faq-section {
    padding: 40px 15px;
  }
  
  .faq-container {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .faq-item {
    margin-bottom: 15px;
  }
  
  .faq-question {
    padding: 15px 0;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #faq-section {
    padding: 30px 10px;
  }
  
  .faq-container {
    padding: 0 5px;
  }
  
  .faq-question {
    padding: 12px 0;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
  }
}
