/* === GLOBAL STYLES === */
:root {
    --primary-color: #005A9C; /* Um azul forte */
    --secondary-color: #00AEEF; /* Um azul mais claro, para acentos */
    --accent-color: #FF8C00; /* Laranja para CTAs e destaques */
    --text-color: #333;
    --light-text-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #ddd;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

h1 { font-size: 2.8rem; line-height: 1.2;}
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2.5rem;}
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

.section-padding {
    padding: 60px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    border-radius: 50px; /* Botões arredondados */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e07b00; /* Laranja mais escuro no hover */
    transform: translateY(-3px);
    color: var(--light-text-color);
}

.cta-button.secondary {
    background-color: var(--primary-color);
}
.cta-button.secondary:hover {
    background-color: #004170; /* Azul mais escuro */
}
.cta-button.tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.cta-button.tertiary:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.cta-button.massive {
    font-size: 1.4rem;
    padding: 20px 40px;
}


/* === NAVBAR === */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin-left: 25px;
}

.navbar nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}
.navbar nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.navbar nav ul li a:hover::after,
.navbar nav ul li a.active::after {
    width: 100%;
}
.navbar nav ul li a.cta-nav {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 8px 15px;
    border-radius: 20px;
}
.navbar nav ul li a.cta-nav:hover {
    background-color: #e07b00;
    color: var(--light-text-color);
}
.navbar nav ul li a.cta-nav::after { /* Remove sublinhado do CTA */
    display: none;
}


.hamburger {
    display: none; /* Oculto por padrão, visível em mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}


/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(rgba(0, 90, 156, 0.7), rgba(0, 90, 156, 0.8)), url('[URL_DA_IMAGEM_DE_FUNDO_HERO]') no-repeat center center/cover;
    color: var(--light-text-color);
    height: 100vh; /* Ajustar conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Para compensar navbar fixa */
}

.hero-section h1 {
    color: var(--light-text-color);
    font-size: 3.5rem; /* Maior para impacto */
}
.hero-section h2 {
    color: #e0e0e0; /* Um pouco mais suave que branco puro */
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}
.hero-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* === PROBLEM SECTION === */
.problem-section {
    background-color: var(--bg-light);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}
.problem-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}
.problem-item .icon {
    font-size: 2.5rem; /* Placeholder for icon */
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.problem-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.transition-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-top: 3rem;
}

/* === DESIRE SECTION (SOLUCAO) === */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}
.benefit-item {
    text-align: center;
}
.benefit-item img {
    width: 100%;
    max-width: 350px; /* Limita o tamanho da imagem */
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.benefit-item h3 {
    color: var(--primary-color);
}

.concrete-benefits {
    background-color: var(--bg-light);
    padding: 40px 0; /* Menor padding interno */
    border-radius: 8px;
    margin-bottom: 4rem;
}
.concrete-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.benefit-card h4 { /* Placeholder for icon + title */
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


.testimonials { margin-bottom: 4rem; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 5px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    text-align: right;
}

.how-it-works { text-align: center; }
.steps-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}
.steps-list li {
    background-color: var(--bg-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}
.steps-list li span {
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

/* === ACTION SECTION (PLANOS) === */
.action-section {
    background-color: var(--bg-light);
}
.action-section > .container > p { /* Parágrafo direto do container da seção */
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/*
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}
*/

.pricing-grid {
    display: grid;
    /* Modifique esta linha:
       Substitua '1fr' por uma largura máxima fixa para os cards,
       por exemplo, 300px, 320px ou a largura que você achar melhor.
       Isso impede que o último card se estique. */
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px)); /* Exemplo com max de 300px */
    gap: 30px;
    margin-bottom: 3rem;
    justify-content: center; /* Esta linha centralizará o grupo de cards */
}


.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05); /* Destaca o plano popular */
}
.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}
.pricing-card .annual-price {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 10px; /* Ajuste para alinhar com ícones */
    flex-grow: 1;
}
.pricing-card ul li {
    margin-bottom: 0.8rem;
    display: flex; /* Para alinhar ícone com texto */
    align-items: center;
}
.pricing-card ul li::before { /* Placeholder para ícone de check */
    content: '✓'; /* Ou use um ícone real */
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}


.bonuses {
    margin: 3rem auto;
    max-width: 700px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.bonuses h3 { text-align: center; }
.bonuses ul {
    list-style: none;
    padding-left: 0;
}
.bonuses ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guarantee {
    text-align: center;
    margin: 3rem 0;
    padding: 20px;
    background-color: #e6f7ff; /* Fundo azul claro */
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
}
.guarantee h4 { color: var(--primary-color); }

.action-section .cta-button.massive {
    display: block;
    width: fit-content;
    margin: 2rem auto 1rem auto;
}
.urgency-text {
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
}

/* === FOOTER SECTION (CONTATO) === */
.footer-section {
    background-color: var(--bg-dark);
    color: var(--light-text-color);
    text-align: center;
}
.footer-section h2, .footer-section h3 {
    color: var(--light-text-color);
}
.footer-section p {
    color: #ccc;
}
.contact-info {
    margin: 2rem 0;
}
.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.contact-info p a {
    color: var(--secondary-color);
}
.contact-info p a:hover {
    color: var(--accent-color);
}
.final-cta {
    font-weight: 600;
    font-size: 1.2rem !important; /* !important para sobrescrever */
    color: var(--light-text-color) !important;
    margin-top: 2rem;
}
.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}


/* === MEDIA QUERIES === */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.8rem; }
    .hero-section h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
    .navbar nav {
        display: none; /* Oculta menu desktop */
        position: absolute;
        top: 100%; /* Abaixo do header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        padding-bottom: 10px;
    }
    .navbar nav.active {
        display: flex; /* Mostra menu mobile quando ativo */
    }
    .navbar nav ul {
        flex-direction: column;
        width: 100%;
    }
    .navbar nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    .navbar nav ul li a.cta-nav {
        display: inline-block; /* Para centralizar se necessário */
        margin-top: 10px;
    }
    .hamburger {
        display: block; /* Mostra o hamburger */
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-section { height: auto; padding: 100px 0 60px 0; }
    .hero-section h1 { font-size: 2.5rem; }

    .problem-grid,
    .benefits-showcase,
    .benefits-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
    .pricing-card.popular {
        transform: scale(1); /* Remove o destaque em mobile para economizar espaço */
    }
}