/* 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);
}

.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-text {
    flex: 1;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    max-width: 100%;
    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;
    }

    .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;
    }
}