* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cores principais */
:root {
    --primary-color: #00c67f; /* Verde */
    --secondary-color: #1e293b; /* Azul escuro */
    --accent-color: #ff5722; /* Laranja */
    --text-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #1e293b;
    --danger-color: #ff3b30;
    --success-color: #00c67f;
    --warning-color: #ffcc00;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
}

/* Tipografia */
h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--light-color);
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

/* Botoes */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px 0;
    font-size: 1rem;
    width: 100%;
}

.btn-primary:hover {
    background-color: #00a86b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 198, 127, 0.3);
}

.btn-payment {
    display: block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px 0;
    font-size: 0.9rem;
}

.btn-payment:hover {
    background-color: #283c5a;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

/* Intro Section */
.intro {
    padding: 30px 20px;
    background-color: white;
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Funil Section */
.funil-section {
    padding: 30px 20px;
    background-color: var(--light-color);
    text-align: center;
}

.funil-image {
    max-width: 100%;
    margin: 0 auto;
}

.funil {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Trust Section */
.trust-section {
    padding: 30px 20px;
    background-color: white;
}

.trust-content p {
    margin-bottom: 15px;
}

/* Problem Section */
.problem-section {
    padding: 30px 20px;
    background-color: var(--light-color);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.problem-item i {
    color: var(--danger-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Solution Section */
.solution-section {
    padding: 30px 20px;
    background-color: white;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.solution-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Method Section */
.method-section {
    padding: 30px 20px;
    background-color: var(--light-color);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 30px 20px;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 20px;
    background-color: var(--light-color);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 auto 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    font-weight: 600;
    color: var(--gray-color);
}

/* Meta Strategy Section */
.meta-strategy-section {
    padding: 30px 20px;
    background-color: white;
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.strategy-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.strategy-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Offer Section */
.offer-section {
    padding: 30px 20px;
    background-color: var(--light-color);
}

.offer-box {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.offer-header h4 {
    margin-bottom: 5px;
}

.offer-content {
    padding: 20px;
}

.offer-includes {
    margin-bottom: 25px;
}

.offer-includes h5 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.offer-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offer-includes i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 3px;
}

.offer-price {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 5px;
}

.price-original {
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-original span {
    text-decoration: line-through;
    color: var(--danger-color);
}

.price-current {
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-installment {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.offer-guarantee {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.offer-guarantee i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Urgency Section */
.urgency-section {
    padding: 30px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.urgency-content .highlight {
    color: var(--warning-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.countdown {
    margin: 20px 0;
}

#timer {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning-color);
    margin: 10px 0;
}

/* FAQ Section */
.faq-section {
    padding: 30px 20px;
    background-color: white;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Payment Section */
.payment-section {
    padding: 30px 20px;
    background-color: var(--light-color);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-option {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.payment-option h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.payment-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-security {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.payment-security p {
    margin-bottom: 10px;
}

.payment-security i {
    margin-right: 5px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 40px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.final-cta-section h3 {
    color: white;
}

.spots-left {
    font-size: 0.9rem;
    color: var(--warning-color);
    font-weight: 600;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1s ease-in-out infinite;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn-primary {
        width: auto;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        margin: 0;
    }

    .testimonials-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 0 0 calc(50% - 10px);
    }

    .payment-options {
        flex-direction: row;
    }

    .payment-option {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.live-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.step-content h4 .live-badge {
    animation: blink 1.5s infinite;
}

/* Novos estilos para a LP de convite para live */
.hero-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    background-image: linear-gradient(135deg, var(--secondary-color) 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Estilos para o Mapa Mental do Funil de Vendas */
.funil-visual {
    position: relative;
    margin: 30px auto;
    max-width: 800px;
}

.funil-background {
    width: 100%;
    height: auto;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.funil-steps-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.funil-step {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.funil-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Posicionamento dos passos para criar o efeito de funil */
.step-1 { width: 90%; }
.step-2 { width: 85%; }
.step-3 { width: 80%; }
.step-4 { width: 75%; }
.step-5 { width: 70%; }

/* Conectores entre os passos */
.connector {
    position: absolute;
    background-color: var(--primary-color);
    width: 4px;
    height: 30px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Estilo para os números dos passos */
.funil-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 198, 127, 0.3);
}

.funil-step .step-content {
    margin-top: 15px;
    text-align: center;
}

/* Responsividade */
@media (min-width: 768px) {
    .funil-step {
        padding: 25px;
    }
    
    .step-1 { width: 90%; margin-left: 0; }
    .step-2 { width: 85%; margin-left: 5%; }
    .step-3 { width: 80%; margin-left: 10%; }
    .step-4 { width: 75%; margin-left: 15%; }
    .step-5 { width: 70%; margin-left: 20%; }
    
    .connector {
        height: 40px;
        bottom: -40px;
        width: 6px;
    }
}