/* Estilos gerais */
:root {
    --primary-color: #E5554F;
    --secondary-color: #333333;
    --text-color: #333333;
    --light-color: #ffffff;
    --dark-color: #222222;
    --background-color: #f9f9f9;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.not-included-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* força 3 colunas no desktop */
    gap: 20px;
    margin-bottom: 20px;
    justify-items: center;
    /* centraliza os itens em cada coluna */
}

@media (max-width: 900px) {
    .not-included-list {
        grid-template-columns: repeat(2, 1fr);
        /* em tablets, 2 colunas */
    }
}

@media (max-width: 600px) {
    .not-included-list {
        grid-template-columns: 1fr;
        /* em celulares, 1 coluna */
    }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-color);
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

section[id] {
    scroll-margin-top: 100px;
}

.logo {
    max-width: 200px;
}

.logo img {
    max-height: 130px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding-top: 150px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

.hero h1 {
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-button.large {
    padding: 18px 36px;
    font-size: 1.3rem;
}

.cta-button i {
    margin-right: 10px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Problem Section */
.problem {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.problem h2 {
    color: var(--light-color);
}

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

.problem-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.problem-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Solution Section */
.solution {
    background-color: var(--light-color);
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.solution-section {
    display: flex;
    align-items: center;
    /* Alinha verticalmente */
    gap: 40px;
    /* Espaço entre texto e imagem */
    padding: 40px 0;
    flex-wrap: wrap;
    /* Responsivo em telas menores */
}

.solution-text {
    flex: 1.2;
    /* Dá mais espaço ao texto */
    min-width: 300px;
}

.solution-image {
    flex: 1;
    /* A imagem ocupa uma proporção menor */
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Process Section */
.process {
    background-color: var(--background-color);
}

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

.step {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    margin-top: 10px;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
}

.testimonial-content {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    text-align: right;
}

.client-type {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: var(--background-color);
}

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

.faq-item {
    background-color: var(--light-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.final-cta h2 {
    color: var(--light-color);
}

.urgency-box {
    background-color: rgba(229, 85, 79, 0.1);
    border: 2px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.spots-left {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-info,
.footer-contact {
    margin-top: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

footer a {
    color: var(--light-color);
    /* branco, para contraste no fundo escuro */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    color: var(--primary-color);
    /* vermelho do branding */
    border-bottom: 1px solid var(--primary-color);
    /* destaca no hover */
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;

}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .solution-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    @media (max-width: 768px) {
        .solution-content {
            flex-direction: column;
        }

        .solution-image {
            order: -1;
            /* Move a imagem para cima do texto */
        }
    }

    .nav-menu {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 5px;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 6px 0;
        font-size: 0.85rem;
    }

    .nav-whatsapp {
        font-size: 0.85rem;
        padding: 8px 14px;
        display: block;
        text-align: center;
        margin: 8px 0;
    }

    .logo img {
        max-height: 100px;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

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

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

/* Correções e Estilo do Header com Menu */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-whatsapp {
    background-color: #25D366;
    color: white !important;
    padding: 6px 18px;
    /* menor padding vertical */
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    line-height: 1;
    /* reduz altura do botão */
    font-size: 1rem;
}

.logo img {
    max-height: 130px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Ajuste para compensar o header fixo */
body {
    padding-top: 100px;
}


/* === MENU MOBILE COM BOTÃO SANDUÍCHE === */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle {
        margin-left: auto;
        padding: 10px 0;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .nav-whatsapp {
        font-size: 0.85rem;
        padding: 10px 18px;
        display: inline-block;
        margin-top: 10px;
        border-radius: 30px;
        text-align: center;
        width: auto;
        white-space: nowrap;
    }

    .logo img {
        max-height: 90px;
    }
}

/* Estilos para a nova seção Value Proposition */
.value-proposition {
    background-color: var(--light-color);
    padding: 80px 0;
}

.value-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Bloco de Valor Central */
.pricing-highlight {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-color), #d14843);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(229, 85, 79, 0.3);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.total-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 25px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.entry-fee,
.installments {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-breakdown .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.pricing-breakdown .value {
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Grid de Benefícios Inclusos */
.included-benefits {
    margin-bottom: 60px;
}

.included-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.benefits-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    margin: 0 10px;

}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 85, 79, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #d14843);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Benefícios Exclusivos MMADV */
.exclusive-benefits {
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
}

.exclusive-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.exclusive-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.exclusive-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1;
    margin: 0 10px;

}

.exclusive-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.exclusive-item:hover {
    transform: translateY(-3px);
}

.exclusive-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.exclusive-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.exclusive-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Seção de Transparência */
.transparency-section {
    background: #fff5f5;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 5px solid #ff6b6b;
    text-align: center;
    /* garante alinhamento geral */
}

.transparency-section h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.not-included {
    color: #ff6b6b;
}

.not-included-list {
    display: flex;
    justify-content: center;
    /* centraliza os itens */
    gap: 50px;
    /* espaço entre eles */
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* quebra em telas menores */
}

.not-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 1rem;
}

.not-included-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.transparency-note {
    text-align: center;
    font-style: italic;
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Call-to-Action Principal */
.value-cta {
    text-align: center;
    margin-bottom: 50px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), #d14843);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(229, 85, 79, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 85, 79, 0.5);
    color: white;
}

.urgency-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 15px 0 0 0;
}

/* Garantias e Segurança */
.guarantees {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantees h4 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.guarantee-item:hover {
    background: #e9ecef;
}

.guarantee-item i {
    color: #28a745;
    font-size: 1.3rem;
    min-width: 20px;
}

.guarantee-item span {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-card {
        margin: 0 20px;
        padding: 30px 25px;
    }

    .amount {
        font-size: 2.8rem;
    }

    .pricing-breakdown {
        flex-direction: column;
        gap: 15px;
    }

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

    .exclusive-benefits {
        padding: 30px 20px;
    }

    .exclusive-list {
        grid-template-columns: 1fr;
    }

    .exclusive-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .not-included-list {
        grid-template-columns: 1fr;
    }

    .guarantee-items {
        grid-template-columns: 1fr;
    }

    .cta-primary {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .value-proposition {
        padding: 60px 0;
    }

    .pricing-card {
        margin: 0 10px;
        padding: 25px 20px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .exclusive-benefits {
        padding: 25px 15px;
    }

    .transparency-section {
        padding: 30px 20px;
    }

    .guarantees {
        padding: 30px 20px;
    }
}

.entry-highlight {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
}

.entry-highlight .label {
    font-size: 1rem;
    font-weight: normal;
    margin-right: 5px;
    opacity: 0.9;
}

.installments-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffe082;
    /* amarelo para contraste */
    margin: 10px 0;
}

.installments-highlight .label {
    font-size: 1rem;
    font-weight: normal;
    margin-right: 5px;
    opacity: 0.9;
}


.total-value {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
}

.total-value .currency {
    font-size: 1rem;
    font-weight: normal;
    margin-right: 5px;
    opacity: 0.9;
}

.amount-small {
    font-size: 1.9rem;
    /* se o original era 2rem, 20% menor */
    font-weight: bold;
    color: #fff;
}