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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.1);
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF4500, #e63900);
    width: 0%;
    transition: width 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.2rem;
    margin: 0;
    color: #2C2C2C;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu.active {
    display: block;
}

.w-full {
    width: 100%;
}

/* Buttons */
.cta-button-main {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cta-button-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.cta-button-final {
    background: white;
    color: #FF4500;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-final:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5DC 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.personalized-greeting {
    background: rgba(255, 69, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #FF4500;
    font-weight: 500;
}

.hero-title {
    background: linear-gradient(135deg, #FF4500, #2C2C2C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.typewriter {
    border-right: 3px solid #FF4500;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #FF4500; }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-guarantee {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Video Player */
.video-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF4500, #e63900);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: white;
}

.video-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.video-duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Badges */
.video-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.video-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.video-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8e8e8, #fce8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    font-size: 0.85rem;
    color: #2C2C2C;
    margin-bottom: 0.125rem;
}

.badge-content span {
    font-size: 0.75rem;
    color: #666;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    max-height: 80vh;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-wrapper {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Target Audience Section */
.target-audience {
    background: white;
    padding: 80px 0;
}

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

.audience-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Why Works Section */
.why-works {
    background: #2C2C2C;
    color: white;
    padding: 80px 0;
}

.why-works h2 {
    color: white;
}

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

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #3a3a3a;
    border-radius: 8px;
}

.check-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 4rem 0;
  text-align: center;
	
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
	display: flex;
	flex-direction: column;
	align-items: left;

}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  /* desloca 30px para baixo e 30px para a esquerda */
  transform: translate(-30px, 30px);
  /* velocidade de 0.6s e easing customizado “overshoot” */
  transition: opacity 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
	text-align: left;
}

/* Estado final de cada item */
.timeline-item.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.timeline-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #e8e8e8, #fce8e8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.1);
}

.timeline-content h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

.cta-section {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Learning Section */
.learning {
    background: #F5F5DC;
    padding: 80px 0;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.learning-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Before After Section */
.before-after {
    background: #F5F5DC;
    padding: 80px 0;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-side {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    color: white;
}

.comparison-side:hover {
    transform: translateY(-5px);
}

.before-side {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.after-side {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.comparison-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
	text-align: center;
	width: 100%;
}

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

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

.module {
    text-align: center;
    padding: 2rem;
    background: #F5F5DC;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.module-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.module h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.module p {
    color: #666;
    margin: 0;
}

/* ROI Calculator Section */
.roi-calculator {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
    color: white;
    padding: 80px 0;
}

.roi-calculator h2,
.roi-calculator .section-subtitle {
    color: white;
}

.calculator-explanation {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.calculator-explanation h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.calc-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

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

.calc-step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.input-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.input-group input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    border-color: #FF4500;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    margin-top: 1rem;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #FF4500;
}

.result-item.highlight .result-value {
    color: white;
}

/* Objections Section */
.objections {
    background: #f8f8f8;
    padding: 80px 0;
}

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

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

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

.objection-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.objection-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.objection-icon.red {
    background: #fee;
    color: #d32f2f;
}

.objection-header h3 {
    color: #2C2C2C;
    margin: 0;
    font-size: 1.1rem;
}

.solution {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5e8;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution p {
    color: #666;
    margin: 0;
}

.objections-cta {
    text-align: center;
}

.objections-cta p {
    font-size: 1.2rem;
    color: #2C2C2C;
}

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

.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #f0f0f0;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.faq-search-input:focus {
    border-color: #FF4500;
    outline: none;
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-category.active {
    background: #FF4500;
    color: white;
}

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

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: #666;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-icon {
    font-size: 1.5rem;
    color: #FF4500;
    transition: transform 0.3s ease;
}

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

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #f0fff0, #e6f3ff);
    padding: 80px 0;
}

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

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF4500);
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.certifications span {
    font-size: 0.9rem;
    color: #4CAF50;
}

/* Scarcity Section */
.scarcity {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.scarcity h2 {
    color: white;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scarcity-text {
    font-size: 1.2rem;
}

.scarcity-text strong {
    color: #ffeb3b;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2,
.final-cta h3 {
    color: white;
    margin-bottom: 2rem;
}

/* Lead Capture Section */
.lead-capture {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.lead-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.lead-button {
    padding: 1rem 2rem;
    background: #2C2C2C;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lead-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.lead-success {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.lead-success h3 {
    margin-bottom: 1rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
    animation: bounce 2s infinite;
}

.floating-cta.show {
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Exit Popup Container */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay {
    position: absolute;
    inset: 0;
}

/* Popup Box */
.popup-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  /* Garante que nunca ultrapasse a altura da tela */
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Botão de fechar sobreposto e sempre acessível */
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2001;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
}

.popup-body {
    padding: 3rem;
    text-align: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF4500, #e63900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.popup-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    line-height: 1.2;
}

.popup-body p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.popup-body p strong {
    color: #FF4500;
    font-weight: 600;
}

.popup-offer {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.popup-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.popup-offer p {
  /* garante que o <p> esteja branco, mesmo com regras anteriores */
  color: #fff !important;
  /* remove margens extras que podem empurrar o container pra baixo */
  margin: 0;
  /* opcional: ajuste de line-height para o texto ficar mais “justo” */
  line-height: 1.4;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.offer-timer::before {
    content: '⏰';
    font-size: 1.2rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popup-form input {
    padding: 1.2rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.popup-form input:focus {
    border-color: #FF4500;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.popup-form input::placeholder {
    color: #999;
}

.popup-form button {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.popup-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.popup-form button:hover::before {
    left: 100%;
}

.popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.popup-form button:active {
    transform: translateY(0);
}

.popup-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1.5rem;
    line-height: 1.4;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* === Modal de Captura de E-mail === */
.subscribe-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.subscribe-modal.active {
  display: flex;
}

.subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.subscribe-content {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.subscribe-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.subscribe-close:hover {
  color: #333;
}

/* Formulário de inscrição */
#subscribeForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

#subscribeForm input {
  padding: 0.75rem 1rem;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

#subscribeForm input:focus {
  border-color: #FF4500;
}

.subscribe-success {
  margin-top: 1rem;
  font-weight: 600;
  color: #4CAF50;
}

/* === Estilos para os campos do formulário de waitlist === */
#waitlistForm input {
  padding: 0.75rem 1rem;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 8px;
  width: 100%;
}

#waitlistForm select {
  padding: 0.75rem 1rem;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 32px;
  width: 100%;
}

#waitlistForm input:focus {
  border-color: #FF4500;
}

#waitlistForm select:focus {
  border-color: #FF4500;
}


.form-error-text {
  display: block;
  color: red;
  font-size: 0.875em;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}

.form-feedback.feedback-error { /* Para o wlFeedback quando for erro */
  color: red;
  font-size: 0.9em;
  margin-top: 0.5rem;
}

.loading-spinner {
  display: inline-block;
  width: 1em; /* ou o tamanho que preferir */
  height: 1em; /* ou o tamanho que preferir */
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff; /* Cor do spinner */
  animation: spin 1s ease-infinite; /* <--- ANIMAÇÃO AQUI */
  margin-right: 0.5em;
  vertical-align: middle; /* Alinha o spinner com o texto */
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .video-badges {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .video-badge {
        padding: 0.6rem;

    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
	/* Se você tiver um wrapper interno, alinhe também */
  .video-badge .badge-content {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
	
	
    .badge-content strong {
        font-size: 0.85rem;
    }
    
    .badge-content span {
        font-size: 0.75rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .learning-grid,
    .modules-grid,
    .objections-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .floating-cta {
        display: block;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        min-width: auto;
    }
    
    .timeline-item {
        flex-direction: column;
		align-items: center;    /* <-- adicione isto */
        text-align: center;
        gap: 1rem;
		
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .calculation-steps {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
	.exit-popup {
    display: none !important;
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .module,
    .objection-item,
    .guarantee-item {
        padding: 1.5rem;
    }
    
    .popup-body {
        padding: 2rem;
    }
    
    .calculator-container {
        padding: 2rem;
    }
	.exit-popup {
    display: none !important;
  }
}
