/* Importar Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --accent-blue: #2b97f0;
    --accent-hover: #0d6ecc;
    --text-dark: rgba(0, 0, 0, 0.87);
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #2a2a2a;
    --bg-darker: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
    margin: 0;
    max-width: 100vw;
    /* Espaço para a barra de urgência fixa */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.text-blue {
    color: var(--accent-blue);
}

.text-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent-blue);
    text-decoration-thickness: 3px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #8cff32;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(140, 255, 50, 0.4);
}

.cta-button:hover {
    background-color: #76e028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 255, 50, 0.6);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-darker {
    background-color: var(--bg-darker);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    padding: 5rem 0 3rem 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--text-dark);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Problem Section (Dark) */
.problem-section {
    background-color: var(--bg-darker);
    color: white;
    padding: 5rem 0;
}

.problem-section h2 {
    color: white;
}

.problem-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.problem-text {
    flex: 1;
    text-align: left;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.problem-list li::before {
    content: "→";
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits-section {
    background-color: white;
    padding: 5rem 0;
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.check-box {
    background: var(--accent-blue);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Tool Section (Dark) */
.tool-section {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0;
}

.tool-section h2 {
    color: white;
}

.tool-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.tool-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.tool-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tool-image {
    flex: 1;
    max-width: 500px;
}

.tool-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-content {
    flex: 1;
    text-align: left;
}

.tool-content h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.tool-content p {
    color: #ddd;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Bonus Section */
.bonus-section {
    background-color: white;
    padding: 5rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.bonus-card {
    text-align: center;
}

.bonus-image {
    margin-bottom: 1.5rem;
}

.bonus-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bonus-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-darker);
    padding: 5rem 0;
}

.pricing-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-highlight h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Dark Pricing Card (sem destaque) */
.pricing-card-dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
}

.pricing-card-dark h3,
.pricing-card-dark .price-old,
.pricing-card-dark .price-installments {
    color: white;
}

.pricing-card-dark .pricing-features li {
    border-bottom: 1px solid #444;
}

/* Featured Pricing Card */
.pricing-card-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(22, 135, 234, 0.4);
    animation: pulse-card 2s ease-in-out infinite;
    border: 2px solid var(--accent-blue);
}

@keyframes pulse-card {

    0%,
    100% {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(22, 135, 234, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 25px 70px rgba(22, 135, 234, 0.6);
    }
}

.pricing-card-featured h3,
.pricing-card-featured .price-old,
.pricing-card-featured .price-installments,
.pricing-card-featured p {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
    animation: pulse-badge-gold 1.5s ease-in-out infinite;
}

.popular-icon {
    font-size: 1rem;
    animation: twinkle 1s ease-in-out infinite alternate;
}

@keyframes pulse-badge-gold {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 2rem 0;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.price-installments {
    font-size: 1.1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-card-featured .pricing-features li {
    border-bottom: 1px solid #444;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-button {
    display: block;
    width: 100%;
    background-color: #8cff32;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.pricing-button:hover {
    background-color: #76e028;
    transform: translateY(-2px);
}

.pricing-button-featured {
    background: linear-gradient(135deg, #8cff32 0%, #76e028 100%);
    color: #1a1a1a;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(140, 255, 50, 0.4);
}

.pricing-button-featured:hover {
    background: linear-gradient(135deg, #76e028 0%, #6ac222 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 255, 50, 0.6);
}

/* Guarantee Section (Dark) */
.guarantee-section {
    background-color: var(--bg-darker);
    color: white;
    padding: 5rem 0;
}

.guarantee-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.guarantee-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-image {
    flex: 0 0 250px;
}

.guarantee-image img {
    width: 100%;
    height: auto;
}

.guarantee-text {
    flex: 1;
    text-align: left;
}

.guarantee-text p {
    color: #ddd;
    margin-bottom: 1.5rem;
}

.guarantee-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.guarantee-text li {
    padding: 0.5rem 0;
    color: #ddd;
}

/* Urgency Badge - Fixed Top Bar */
.urgency-badge {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
    z-index: 9999;
    animation: pulse-badge 2s ease-in-out infinite;
    border-radius: 0;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 59, 48, 0.6);
    }
}

/* FAQ Section - Accordion Style */
.faq-section {
    background-color: var(--bg-darker);
    padding: 5rem 0;
}

.faq-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
    background-color: #f5f5f5;
    color: #4a5568;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #4a5568;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item[open] summary {
    color: var(--accent-blue);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--accent-blue);
}

.faq-item summary:hover {
    background-color: #e8e8e8;
}

.faq-item p {
    padding: 0 2rem 1.5rem 2rem;
    color: #2d3748;
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: #999;
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive - OTIMIZADO PARA VENDAS (MOBILE FIRST) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        /* Margem lateral um pouco maior para respiro */
    }

    section {
        padding: 2rem 0;
        /* Menos espaçamento vertical para rolar menos */
        text-align: center;
        /* Padrão centralizado para mobile */
    }

    /* Typography Mobile */
    h1 {
        font-size: 1.4rem !important;
        /* Tamanho ideal para leitura sem quebrar muito */
        line-height: 1.25;
        margin-bottom: 0.8rem;
        text-align: center !important;
    }

    h2 {
        font-size: 1.2rem !important;
        line-height: 1.3;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
        text-align: center !important;
        margin-bottom: 0.6rem !important;
    }

    p {
        text-align: center;
        font-size: 0.9rem !important;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 2rem 0 2rem 0 !important;
        text-align: center;
    }

    .urgency-badge {
        font-size: 0.75rem;
        padding: 0.5rem;
        width: 100%;
        position: relative;
        margin-bottom: 1.5rem;
        /* Ajuste para não cobrir conteúdo se der bug */
    }

    body {
        padding-top: 0;
        /* Remove padding do body se badge for relative */
    }

    .hero-trust {
        flex-direction: row;
        /* Manter lado a lado se couber */
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    /* CTA Buttons Mobile - Foco em Conversão */
    .cta-button {
        display: block;
        width: 100%;
        font-size: 1.1rem !important;
        padding: 1rem !important;
        margin: 1.2rem auto;
        border-radius: 50px;
        /* Mais moderno */
        box-shadow: 0 4px 15px rgba(22, 135, 234, 0.5);
    }

    /* Problem Section Mobile */
    .problem-content {
        flex-direction: column;
    }

    .problem-list {
        text-align: left;
        margin: 1.5rem 0;
        padding: 0;
    }

    .problem-list li {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    /* Garantir alinhamento centralizado para listas de leitura */
    .problem-list li,
    .check-list li,
    .pricing-features li,
    .faq-item p,
    .guarantee-text p,
    .tool-content p,
    .guarantee-text {
        text-align: center !important;
    }

    /* Tool Content Specific */
    .tool-content p {
        text-align: center !important;
        /* Exceção: tool section fica melhor centralizado no design atual */
    }

    /* Check List Mobile */
    .check-list {
        margin: 2rem 0;
    }

    .check-item {
        font-size: 1rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    /* Tool Section Mobile */
    .tool-grid {
        gap: 2.5rem;
    }

    .tool-item {
        flex-direction: column;
    }

    .tool-item:nth-child(even) {
        flex-direction: column;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 2.5rem 0 !important;
    }

    .pricing-highlight h2 {
        font-size: 1.5rem !important;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border: 2px solid transparent;
        /* Evita pulo no layout */
    }

    .pricing-card-featured {
        transform: scale(1) !important;
        border: 2px solid var(--accent-blue);
        order: -1;
        /* Coloca o destaque primeiro se estiver em flex/grid */
    }

    .price-current {
        font-size: 2.2rem !important;
    }

    /* FAQ Mobile */
    .faq-item summary {
        font-size: 1rem;
        padding: 1.2rem;
        text-align: center !important;
        /* Pergunta centralizada */
        justify-content: center;
        width: 100%;
    }

    .faq-item p {
        text-align: center !important;
        padding: 0 1rem 1.2rem 1rem;
    }

    /* Footer */
    .footer p {
        font-size: 0.8rem !important;
        opacity: 0.7;
    }

    /* Remover animações pesadas */
    * {
        animation-duration: 0s !important;
        transition-duration: 0.1s !important;
    }

    .pulse-card,
    .pulse-badge,
    .pulse-badge-gold {
        animation: none !important;
    }
}

/* Telas muito pequenas (iPhone SE, etc) */
@media (max-width: 375px) {
    h1 {
        font-size: 1.5rem !important;
    }

    .price-current {
        font-size: 2.5rem !important;
    }

    .container {
        padding: 0 1rem;
    }
}