/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00; /* Orange from Seja Átomo logo */
    padding: 1rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%); /* Orange gradient */
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: #333333; /* Dark text for contrast */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #333333; /* Dark checkmark */
    font-size: 1.2rem;
}

.price-section {
    margin-bottom: 2rem;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    color: #333333; /* Dark text for new price */
}

.cta-button {
    display: inline-block;
    background: #333333; /* Dark button */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.cta-button:hover {
    background: #555555; /* Lighter dark on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f9fafb;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 3rem;
    color: #FF8C00; /* Orange for problem icons */
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF8C00; /* Orange for solution title */
}

.solution-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.solution-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.solution-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.solution-benefits i {
    color: #FF8C00; /* Orange checkmark */
    font-size: 1.2rem;
}

/* Course Content */
.course-content {
    padding: 80px 0;
    background: #f9fafb;
}

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

.lesson-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.lesson-item:hover {
    transform: translateY(-5px);
}

.lesson-number {
    width: 50px;
    height: 50px;
    background: #FF8C00; /* Orange for lesson numbers */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lesson-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.lesson-item p {
    color: #6b7280;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: white;
}

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

.bonus-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    border-color: #FF8C00; /* Orange border on hover */
    transform: translateY(-5px);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.bonus-icon-fa {
    font-size: 3rem;
    color: #FF8C00; /* Orange for bonus icon */
    margin-bottom: 1rem;
}

.bonus-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.bonus-item p {
    color: #6b7280;
}

/* Authority Section */
.authority {
    padding: 80px 0;
    background: #f9fafb;
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.authority-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF8C00; /* Orange for authority title */
}

.authority-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%); /* Orange gradient */
    color: white;
}

.offer-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.offer-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price-comparison {
    margin-bottom: 2rem;
}

.price-old-large {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new-large {
    font-size: 3rem;
    font-weight: 800;
    color: #333333; /* Dark text for new price */
    margin-top: 0.5rem;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-feature i {
    color: #333333; /* Dark checkmark */
    font-size: 1.2rem;
}

.cta-button-large {
    display: inline-block;
    background: #333333; /* Dark button */
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

.cta-button-large:hover {
    background: #555555; /* Lighter dark on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.guarantee i {
    color: #333333; /* Dark guarantee icon */
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FF8C00; /* Orange on hover */
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333333; /* Dark footer */
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-grid,
    .lessons-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-benefits {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 2rem;
    }
    
    .price-new-large {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .offer-features {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .problem-item,
    .lesson-item,
    .bonus-item {
        padding: 1.5rem;
    }
    
    .offer-box {
        padding: 1.5rem;
    }
}



.logo-img {
    height: 90px; /* Adjust as needed */
    padding: 10px 0;
}




/* ===== POPUP MODAL STYLES ===== */
/* Template reutilizável para captura de leads com LGPD */

/* === VARIÁVEIS DE CORES (PERSONALIZE AQUI) === */
:root {
  /* Cores principais do popup */
  --popup-bg-color: #6b7280;              /* Cor de fundo do popup (cinza escuro) */
  --popup-overlay-color: rgba(0, 0, 0, 0.7); /* Cor do overlay de fundo */
  --popup-border-radius: 20px;             /* Bordas arredondadas do popup */
  
  /* Cores do texto */
  --popup-title-color: #ffffff;           /* Cor do título principal */
  --popup-subtitle-color: #e5e7eb;        /* Cor do subtítulo/descrição */
  --popup-text-color: #f3f4f6;            /* Cor do texto geral */
  
  /* Cores dos campos de input */
  --input-bg-color: #ffffff;              /* Cor de fundo dos inputs */
  --input-border-color: #d1d5db;          /* Cor da borda dos inputs */
  --input-focus-border: #3b82f6;          /* Cor da borda quando focado */
  --input-text-color: #374151;            /* Cor do texto nos inputs */
  --input-placeholder-color: #9ca3af;     /* Cor do placeholder */
  
  /* Cores do botão principal */
  --button-bg-color: #f59e0b;             /* Cor de fundo do botão (amarelo/laranja) */
  --button-hover-bg: #d97706;             /* Cor do botão ao passar o mouse */
  --button-text-color: #ffffff;           /* Cor do texto do botão */
  
  /* Cores do botão de fechar */
  --close-button-color: #ffffff;          /* Cor do X para fechar */
  --close-button-hover: #f3f4f6;          /* Cor do X ao passar o mouse */
  
  /* Cores do checkbox LGPD */
  --checkbox-border: #d1d5db;             /* Cor da borda do checkbox */
  --checkbox-checked-bg: #3b82f6;         /* Cor do checkbox marcado */
  --checkbox-checkmark: #ffffff;          /* Cor do símbolo de check */
  
  /* Cores dos links */
  --link-color: #60a5fa;                  /* Cor dos links (azul claro) */
  --link-hover-color: #3b82f6;            /* Cor dos links ao passar o mouse */
}

/* === OVERLAY E CONTAINER PRINCIPAL === */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--popup-overlay-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background-color: var(--popup-bg-color);
  border-radius: var(--popup-border-radius);
  padding: 40px 35px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-container {
  transform: scale(1) translateY(0);
}

/* === BOTÃO DE FECHAR === */
.popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--close-button-color);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 5px;
  line-height: 1;
}

.popup-close:hover {
  color: var(--close-button-hover);
}

/* === CONTEÚDO DO POPUP === */
.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--popup-title-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.popup-subtitle {
  font-size: 16px;
  color: var(--popup-subtitle-color);
  line-height: 1.5;
  margin-bottom: 5px;
}

.popup-important {
  font-size: 14px;
  color: var(--popup-text-color);
  font-weight: 600;
}

/* === FORMULÁRIO === */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 15px 18px;
  border: 2px solid var(--input-border-color);
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--input-bg-color);
  color: var(--input-text-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--input-placeholder-color);
}

.form-input:focus {
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* === CHECKBOX LGPD === */
.lgpd-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.lgpd-checkbox {
  position: relative;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
}

.lgpd-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.lgpd-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--input-bg-color);
  border: 2px solid var(--checkbox-border);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lgpd-checkbox input:checked ~ .lgpd-checkmark {
  background-color: var(--checkbox-checked-bg);
  border-color: var(--checkbox-checked-bg);
}

.lgpd-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--checkbox-checkmark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lgpd-checkbox input:checked ~ .lgpd-checkmark:after {
  display: block;
}

.lgpd-text {
  font-size: 14px;
  color: var(--popup-text-color);
  line-height: 1.4;
}

.lgpd-link {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.lgpd-link:hover {
  color: var(--link-hover-color);
}

/* === BOTÃO DE ENVIO === */
.submit-button {
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover:not(:disabled) {
  background-color: var(--button-hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* === ESTADOS DE LOADING === */
.submit-button.loading {
  position: relative;
  color: transparent;
}

.submit-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--button-text-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === MENSAGENS DE ERRO === */
.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-group.error .form-input {
  border-color: #ef4444;
}

.form-group.error .error-message {
  display: block;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .popup-container {
    padding: 30px 25px;
    margin: 20px;
    max-width: none;
    width: calc(100% - 40px);
  }
  
  .popup-title {
    font-size: 28px;
  }
  
  .popup-subtitle {
    font-size: 15px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 16px; /* Evita zoom no iOS */
  }
  
  .submit-button {
    padding: 15px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    padding: 25px 20px;
  }
  
  .popup-title {
    font-size: 24px;
  }
  
  .lgpd-container {
    gap: 10px;
  }
  
  .lgpd-text {
    font-size: 13px;
  }
}

/* ===== PROVA SOCIAL ===== */
.prova-social {
  background: linear-gradient(135deg, #f4f4f4 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #f5a623;
}

.prova-container {
  max-width: 700px;
  margin: 0 auto;
}

.prova-titulo {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prova-subtitulo {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-media {
  margin: 0 auto !important;
  max-width: 420px !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .prova-titulo {
    font-size: 1.7rem;
  }
  .prova-subtitulo {
    font-size: 1rem;
  }
  .instagram-media {
    max-width: 90% !important;
  }
}

@media (max-width: 480px) {
  .prova-social {
    padding: 40px 15px;
  }
  .prova-titulo {
    font-size: 1.5rem;
  }
  .instagram-media {
    max-width: 100% !important;
    border-radius: 12px !important;
  }
}

