/* CSS Reset & Variables */
:root {
    /* Colors */
    --bg-dark: #0F172A; /* Slate 900 */
    --bg-darker: #020617; /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity for glassmorphism */
    
    --primary-gold: #F59E0B; /* Amber 500 */
    --primary-gold-hover: #D97706; /* Amber 600 */
    
    --alert-red: #991B1B; /* Red 800 */
    --alert-red-light: #EF4444; /* Red 500 */
    
    --text-main: #F8FAFC; /* Slate 50 */
    --text-muted: #94A3B8; /* Slate 400 */
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-inline: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--primary-gold);
    color: #111827;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    animation: pulseBtn 2s infinite;
}

.primary-btn:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    animation: none;
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3); }
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.secondary-btn:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

/* Highlight text */
.highlight-red {
    color: var(--alert-red-light);
}

/* Top Strip */
.top-strip {
    background-color: var(--alert-red-light);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: pulseStrip 2.5s infinite;
    position: relative;
    z-index: 100;
}

@keyframes pulseStrip {
    0% { background-color: var(--alert-red); }
    50% { background-color: var(--alert-red-light); }
    100% { background-color: var(--alert-red); }
}

.top-strip p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Sections Padding */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    padding: 10px 0 60px; /* Reduzido drasticamente para a imagem 'encostar' na faixa */
    background: radial-gradient(circle at top, rgba(30, 41, 59, 1), var(--bg-darker));
    text-align: center;
}

.hero-logo {
    max-width: 180px; /* Aumentada levemente */
    height: auto;
    margin: 0px auto 10px; /* Margem ajustada para dar um pequeno respiro em relação à faixa */
    display: block;
    position: relative;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-main);
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-darker);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.old-way {
    border-top: 4px solid var(--alert-red);
}

.new-way {
    border-top: 4px solid var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left; /* Alinha o texto à esquerda para organizar a leitura */
}

.features-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-desc {
    display: block;
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-top: 2px;
}

.features-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}

.features-list li.plus {
    color: #fff;
    font-weight: 600;
}

.features-list li.plus::before {
    content: '+';
    color: var(--primary-gold);
    font-size: 1.3rem;
    left: 0;
}

.old-way ul li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.new-way ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0 40px;
    overflow: hidden;
}

.social-proof-heading {
    margin-bottom: 40px;
    text-align: center;
}

.social-proof-heading .number {
    color: var(--primary-gold);
    /* Mantém o tamanho original do h2 */
}

.social-proof-heading .text {
    color: #fff;
    font-size: 1.3rem; /* Texto menor */
    font-weight: 400;
    display: inline-block;
    margin-left: 8px;
    white-space: nowrap; /* Mantém na mesma linha ("uma só caixa de texto") */
}

.carousel-container {
    overflow: hidden;
    /* Gradiente sutil nas laterais para esconder a rolagem entrando/saindo */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 10px 0 40px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollCarousel 45s linear infinite;
}

/* Pausa a rolagem se o usuário botar o mouse em cima para ler */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.feedback-img-wrapper {
    width: 180px;
    height: 300px; /* Tamanho bem menor para exibir várias na tela */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    position: relative;
}

/* Gradiente Escuro no topo e na base das imagens */
.feedback-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.7) 0%, transparent 15%, transparent 85%, rgba(15,23,42,0.8) 100%);
    pointer-events: none; /* Para não bloquear o clique se houver */
}

.feedback-img-wrapper img {
    width: 100%;
    height: calc(100% + 35px); /* Preenche e empurra a logo do Gemini que agora está menor devido ao redimensionamento */
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Mechanism Section (4Q) */
.grid-4q {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-card:nth-child(1) { background-color: #3B82F6; color: #fff; border: none; }
.step-card:nth-child(2) { background-color: var(--alert-red-light); color: #fff; border: none; }
.step-card:nth-child(3) { background-color: var(--primary-gold); color: #111827; border: none; }
.step-card:nth-child(4) { background-color: #10B981; color: #fff; border: none; }

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-number.q1 {
    background: #fff; /* Fundo Branco */
    color: #3B82F6; /* Texto Azul */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number.q2 {
    background: #fff; /* Fundo Branco */
    color: var(--alert-red-light); /* Texto Vermelho */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number.q3 {
    background: #fff; /* Fundo Branco */
    color: var(--primary-gold); /* Texto Dourado */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number.q4 {
    background: #fff; /* Fundo Branco */
    color: #10B981; /* Texto Verde */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Deliverables Section */
.deliverables-section {
    background-color: var(--bg-darker);
    padding: 80px 0;
    text-align: center;
}

.deliverables-section h2 {
    margin-bottom: 20px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: #111827;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.deliverables-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    max-width: 600px; /* Evita que o card fique muito esticado no PC */
    margin: 0 auto;
}

.deliverables-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.deliverable-card {
    min-width: 100%; /* Cada card ocupa 100% do container */
    background: var(--bg-card);
    border-left: 4px solid var(--primary-gold);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.deliverable-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Bonus Section */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card {
    background: linear-gradient(90deg, rgba(30,41,59,1) 0%, rgba(15,23,42,1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.highlight-bonus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.bonus-tag {
    display: inline-block;
    background: var(--primary-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.95) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--text-main);
}

.price.green-price {
    color: #10B981; /* Verde conversão */
}

.urgency-text {
    color: #ef4444; /* Vermelho escuro/alerta */
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency, .cents {
    font-size: 1.5rem;
    vertical-align: super;
}

.features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.pricing-card .cta-button {
    width: 100%;
}

/* O Que Acham Section */
.what-they-think-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.what-they-think-section h2 {
    margin-bottom: 40px;
}

.manual-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.manual-carousel::-webkit-scrollbar {
    height: 6px;
}

.manual-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.manual-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.manual-carousel-track {
    display: inline-flex;
    gap: 20px;
    padding: 10px 0;
}

.carousel-img {
    flex: 0 0 auto;
    width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    scroll-snap-align: center;
    border: 1px solid var(--border-color);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .headline { font-size: 2.8rem; }
    .grid-4q { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .headline { font-size: 2.2rem; }
    .comparison { grid-template-columns: 1fr; }
    .new-way { transform: scale(1); }
    .deliverables-grid { grid-template-columns: 1fr; }
    .grid-4q { grid-template-columns: 1fr; }
}
