/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Barra de desconto */
.discount-bar {
    background-color: #e74c3c;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.discount-bar strong {
    font-weight: 700;
}

/* Header principal */
.main-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.urgent {
    color: #e74c3c;
    font-weight: 800;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seção de identificação */
.identification-section {
    background: white;
    padding: 60px 0;
}

.identification-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.identification-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #666;
    font-weight: 500;
}

.identification-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

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

.situation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.situation-card:hover {
    transform: translateY(-5px);
}

.situation-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.situation-card p {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.call-to-action-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
}

/* Seção principal de conteúdo */
.main-content {
    background: white;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #333;
    text-decoration: underline;
    text-decoration-color: black;
}

.main-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.youtube-screenshot,
.cnn-news,
.hamster-wheel {
    text-align: center;
    margin: 40px 0;
}

.youtube-screenshot img,
.cnn-news img,
.hamster-wheel img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Seção da ferramenta */
.tool-section {
    background: black;
    padding: 60px 0;
}

.tool-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.tool-section p {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* Seção da depoimento */
.depoiments-section {
    background: white;
    padding: 60px 0;
}

.depoiments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Seção de perguntas */
.questions-section {
    background: white;
    padding: 60px 0;
}

.questions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.tool-description {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.question-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #28a745;
}

.question-item.highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left-color: #ffc107;
}

.question-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.question-item p {
    color: #555;
    margin: 0;
}

.guarantee-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.guarantee-highlight {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #e74c3c;
    font-weight: 600;
}

/* Seção de bônus */
.bonus-section {
    background: black;
    color: white;
    padding: 60px 0;
}

.bonus-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.bonus-section>.container>p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-label {
    background: #ffc107;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.main-footer {
    background: #333;
    padding: 40px 0;
    text-align: center;
}

.cta-button-large {
    background: linear-gradient(135deg, #04b169 0%, #04b169 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 177, 105, 1);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tool-section h2 {
        font-size: 2rem;
    }

    .bonus-section h2 {
        font-size: 1.8rem;
    }

    .situation-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .discount-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .main-header {
        padding: 30px 0;
        min-height: auto;
    }

    .header-text h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .tool-section h2 {
        font-size: 1.6rem;
    }

    .bonus-section h2 {
        font-size: 1.5rem;
    }

    .tool-description {
        font-size: 1.1rem;
    }

    .situation-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .situation-card {
        padding: 20px;
    }

    .situation-card img {
        max-width: 150px;
        height: 150px;
    }

    .question-item {
        padding: 20px;
    }

    .question-item h3 {
        font-size: 1.1rem;
    }

    .bonus-card {
        padding: 25px;
    }

    .bonus-card h3 {
        font-size: 1.3rem;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
    }

    .main-content p,
    .tool-section p,
    .bonus-section p {
        font-size: 1rem;
        text-align: left;
    }

    .guarantee-text,
    .guarantee-highlight {
        font-size: 1rem;
        text-align: left;
    }

    .call-to-action-text {
        font-size: 1.1rem;
    }

    .hero__btn {
        grid-column-gap: .4rem;
        grid-row-gap: .4rem;
        justify-content: center;
        align-self: center;
        width: 100%;
        margin-bottom: 0;
        margin-right: 0;
        padding-left: .7rem;
        padding-right: .7rem;
        overflow: visible;
    }

    .f-avatar-group-2 {
        justify-content: flex-end;
        align-items: center;
        width: auto;
    }
}

/* Animações e transições */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.situation-card,
.question-item,
.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.cta-button-large:focus {
    outline: 3px solid rgba(40, 167, 69, 0.5);
    outline-offset: 2px;
}

/* Otimizações para impressão */
@media print {

    .discount-bar,
    .cta-button,
    .cta-button-large {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .main-header,
    .identification-section,
    .main-content,
    .depoiments-section,
    .questions-section {
        background: white;
    }

    .bonus-section,
    .tool-section {
        background: black;
    }
}

/* ---------- Accordion FAQ (adicionar ao pgt.css) ---------- */
#questions-section .faq-item {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
    overflow: hidden;
}

/* transforma o título em botão (visualmente parecido com o que já tem) */
#questions-section .faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-weight: 700;
    color: #222;
    text-align: left;
    font-size: 1.08rem;
}

/* ícone + */
#questions-section .faq-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 8px;
    transition: transform .32s cubic-bezier(.2, .9, .3, 1), color .2s;
    color: #222;
}

/* content collapse */
#questions-section .faq-panel {
    margin-top: 12px;
    color: #222;
    font-size: 1rem;
    line-height: 1.45;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s cubic-bezier(.2, .9, .3, 1), opacity .32s;
    opacity: 0;
}

/* estado aberto */
#questions-section .faq-item.open .faq-panel {
    opacity: 1;
    max-height: 800px;
    /* suficiente para a maioria dos conteúdos */
}

/* rota o ícone quando aberto */
#questions-section .faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #e600c7;
    /* accent como no seu exemplo */
}

/* destaque do título do primeiro item (caso já contexto do seu layout) */
#questions-section .faq-item.demo .faq-trigger .faq-title {
    color: #e600c7;
}

/* Local FAQ styles (kept local to this page) */
.faq-wrap {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 8px;
}

.faq-item {
    border-radius: 8px;
    background: #fff;
    margin: 10px;
    padding: 12px 16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.faq-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 700;
    color: #222 !important;
    font-size: 1.04rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}

.faq-toggle:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

.faq-toggle .icon {
    font-size: 1.4rem;
    color: #222;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .18s ease;
    color: #222;
    font-size: 0.98rem;
}

.faq-item.expanded .faq-panel {
    padding-top: 10px;
    max-height: 420px;
}

/* Ensure question text stays black even when expanded */
.faq-toggle,
.faq-toggle.expanded,
.faq-item.expanded .faq-toggle {
    color: #222 !important;
}

.vertica-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    width: 100px;
    height: auto;
}

.regular-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.maxwidth-10rem {
    max-width: 10rem;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.countdown-box {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 20px;
    font-weight: 800;
    color: #f91b69;
    display: block;
}

.countdown-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.benefit-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 200, 83, 0.5) !important;
    background: #00e060 !important;
}

.danger-box {
    position: relative;
    overflow: hidden;
}

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

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

    100% {
        left: 100%;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: #00c853;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00c853;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #bbb;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}