:root {
    --primary-blue: #0A66C2;
    --dark-blue: #074B92;
    --light-bg: #f4f7fb;
    --section-white: #ffffff;
    --text-color: #333;
    --white: #fff;
    --red-error: #e74c3c; /* Cor para erros/alertas */
    --whatsapp-green: #25D366; /* Cor do WhatsApp */
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
    color: var(--text-color);
    background: #fff;
    line-height: 1.6; /* Melhorar legibilidade do texto */
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= NAVBAR ================= */

/* ================= NAVBAR (Corrigida e Atraente) ================= */

.navbar-container {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0; /* Um pouco mais de respiro */
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 10px 30px;
    background: #fff;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Sistema de 3 colunas para centro perfeito */
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 8px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px; /* Aumentei um pouco para destaque */
}

/* CONTAINER DOS LINKS - ONDE ESTAVA O ERRO */
.nav-links {
    display: flex;         /* Alinha lado a lado */
    gap: 35px;             /* Espaço entre eles */
    list-style: none;      /* REMOVE AS BOLINHAS */
    margin: 0;
    padding: 0;
    justify-self: center;  /* Centraliza no grid */
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 8px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

/* EFEITO ATRAENTE: Linha que surge do centro */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%); /* Faz a linha abrir do meio para os lados */
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-quote {
    justify-self: end;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.2);
}

.btn-quote:hover {
    background: var(--dark-blue);
    transform: scale(1.05); /* Leve pulo no botão */
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

/* MOBILE NAV */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
}

.nav-links.active {
    display: flex; /* Exibe os links quando ativo no mobile */
}

/* ================= HERO ================= */

.hero-section {
    min-height: 100vh;
    padding-top: 110px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background-image: 
        linear-gradient(to right, 
            rgba(255,255,255,0.95) 0%,
            rgba(255,255,255,0.85) 40%,
            rgba(255,255,255,0.3) 65%,
            rgba(255,255,255,0) 100%
        ),
        url('img/hero-background.jpg');

    background-size: cover;
    background-position: center;
}

/* 🔥 MELHOR DISTRIBUIÇÃO */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* 🔥 TEXTO MAIS EQUILIBRADO */
.hero-left {
    max-width: 520px;
    z-index: 2;
}

.hero-left h1 {
    font-size: 3.4rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}


.highlight {
    color: var(--primary-blue);
}

.highlight2 {
    color:#aaa;
}

/* 🔥 BOTÕES */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px; /* Aumenta o padding para botões maiores */
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex; /* Para ícones e texto ficarem alinhados */
    align-items: center;
    gap: 8px; /* Espaço entre ícone e texto */
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* 🔥 CAMINHÃO MAIS BONITO */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    width: 640px;
    max-width: 100%;
    transform: translateX(40px);
    animation: truckEnter 1s ease forwards;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.15));
}

/* ANIMAÇÃO SUAVE */
@keyframes truckEnter {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(40px);
        opacity: 1;
    }
}

/* ================= SEÇÕES GERAIS ================= */

section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem; /* Títulos maiores para seções */
    margin-bottom: 60px; /* Mais espaço após o título */
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

section p {
    font-size: 1.05rem;
    color: #555;
}

/* ================= PAIN (Problemas) ================= */

.pain {
    background: var(--light-bg);
}

.pain-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsividade melhorada */
    gap: 15px;
}

.pain-grid div {
    background: #fff;
    padding: 22px; /* Aumenta o padding */
    border-radius: 12px; /* Borda mais suave */
    border-left: 6px solid var(--red-error); /* Borda mais grossa */
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra sutil */
    transition: transform 0.3s ease;
}

.pain-grid div:hover {
    transform: translateY(-5px);
}

.pain-highlight {
    margin-top: 60px; /* Mais espaço */
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

/* ================= SERVICES (Versão com Imagens) ================= */

.services {
    padding: 80px 0;
    background: var(--section-white);
    overflow: hidden; /* Evita scroll horizontal na animação */
}

.services-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Espaço entre as linhas */
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 6px solid var(--primary-blue);
}

.service-content {
    flex: 1; /* Ocupa 50% */
}

.service-content h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.service-image {
    flex: 1; /* Ocupa 50% */
    height: 300px; /* Altura fixa para manter o padrão */
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    transition: transform 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.1); /* Zoom suave na imagem ao passar o mouse */
}

/* --- Animação de Entrada (Esquerda para Direita) --- */

.reveal-left {
    opacity: 0;
    transform: translateX(-100px); /* Começa fora da tela à esquerda */
    transition: all 0.8s ease-out;
}

/* Classe que seu JavaScript deve adicionar ao scroll */
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Ajuste para Celulares (Empilhar um em cima do outro) */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .service-image {
        width: 100%;
        height: 250px;
        order: -1; /* Imagem fica em cima do texto no celular */
    }
}

/* ================= PROCESS (Como funciona) ================= */

.process {
    background: var(--light-bg);
}

.process-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 55px; /* Maior */
    height: 55px; /* Maior */
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px; /* Mais espaço */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Número maior */
    font-weight: 700;
}

.step p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
}

/* ================= PROOF (Números de Sucesso) ================= */

.proof {
    background: var(--section-white);
    padding: 80px 0; /* Menos padding se for mais concisa */
}

.proof-grid {
    display: grid;
    /* Mudamos para 3 colunas fixas no desktop para evitar que o 
       auto-fit crie colunas fantasmas ou estique demais os itens */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    text-align: center;
    justify-content: center; /* Centraliza o grid horizontalmente */
    align-items: start;      /* Alinha os itens pelo topo */
}

.proof-item {
    padding: 20px;
}

.proof-item h3 {
    color: var(--primary-blue);
    font-size: 3.5rem; /* Números grandes e impactantes */
    margin-bottom: 10px;
    font-weight: 700;
}

.proof-item p {
    font-size: 1.15rem;
    color: #666;
}

/* ================= AUTHORITY (Sobre/Confiança) ================= */

.authority {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.authority h2 {
    color: var(--white); /* Título branco */
    margin-bottom: 30px;
}

.authority-text {
    max-width: 750px; /* Aumenta a largura do texto */
    margin: 30px auto 40px; /* Mais espaço */
    font-size: 1.15rem;
    line-height: 1.8;
    color:white;
}

.authority .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    font-size: 1.2rem;
    padding: 18px 35px;
}

.authority .btn-primary:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
    color: var(--dark-blue);
}

/* Container do Selo */
.exp-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite; /* Efeito de flutuar */
}

.badge-content {
    background: white; /* Ou use Gold: #ffd700 se quiser algo bem premium */
    color: var(--primary-blue);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border: 4px double var(--primary-blue); /* Detalhe elegante na borda */
    position: relative;
}

/* Efeito de Brilho/Pulso em volta do selo */
.badge-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-border 2s linear infinite;
}

.badge-content .years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-content .exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 5px;
}

/* --- ANIMAÇÕES --- */

/* Faz o selo subir e descer devagar */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Efeito de onda saindo do selo */
@keyframes pulse-border {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Efeito ao passar o mouse */
.exp-badge:hover .badge-content {
    transform: scale(1.1);
    transition: 0.3s;
    background: #f0f0f0;
}


/* ================= TESTIMONIALS (Depoimentos) ================= */

.testimonials {
    background: var(--light-bg);
    padding-bottom: 120px; /* Mais espaço na parte inferior */
}

/* ================= TESTIMONIALS (Depoimentos) ================= */

.testimonials {
    padding: 100px 0;
    background: #fbfcfd; /* Fundo levemente azulado para destacar os cards brancos */
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FORÇA 3 COLUNAS */
    gap: 30px;
    align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.stars {
    color: #FFB400; /* Cor dourada */
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

/* Aspas decorativas no fundo do card */
.testimonial-card p::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: -10px;
    font-size: 5rem;
    color: rgba(0,0,0,0.04);
    font-family: serif;
    z-index: -1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
}

/* Círculo com Iniciais */
.client-initial {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Garante que não amasse */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Cores das Iniciais */
.bg-blue { background: var(--primary-blue); }
.bg-dark { background: var(--dark-blue); }
.bg-blue-light { background: #5d9cec; }

.client-text strong {
    display: block;
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.2;
}

.client-text span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* --- RESPONSIVIDADE --- */

/* Tablets */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    }
}

/* Celulares */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 coluna */
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }

     .navbar {
        display: flex;                /* Muda de Grid para Flex no celular */
        justify-content: space-between; /* Empurra logo para esquerda e menu para direita */
        align-items: center;
        border-radius: 0;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        order: 2; /* Garante que ele fique depois do logo */
        font-size: 28px;
        cursor: pointer;
        color: var(--text-color);
    }

    .logo {
        order: 1; /* Garante que o logo fique na esquerda */
    }
}
/* ================= CTA (Chamada Final) ================= */

.cta {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #eee;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    font-size: 1.3rem;
    padding: 20px 40px;
}

.cta .btn-primary:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
    color: var(--dark-blue);
}

/* ================= WHATSAPP FLUTUANTE ================= */

.whatsapp-float {
    position: fixed;
    right: 25px; /* Mais afastado da borda */
    bottom: 25px; /* Mais afastado da borda */
    background: var(--whatsapp-green);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* Ícone maior */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* Sombra mais pronunciada */
    z-index: 1001; /* Acima de tudo */
    transition: all 0.3s ease;
    text-decoration: none; /* Remover sublinhado */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Animação de pulso (opcional, mas bom para CTA) */
@keyframes pulse {
    0% { transform: scale(1);}
    50% { transform: scale(1.15);}
    100% { transform: scale(1);}
}
.whatsapp-float {
    animation: pulse 1.5s infinite;
}

/* ================= FOOTER ================= */

/* ================= FOOTER CLEAN ================= */
.footer {
    background: #111010; /* Usa o azul escuro do seu site */
    padding: 50px 0 20px;
    color: #fff;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 45px; /* Tamanho discreto para a logo */
    filter: brightness(1.2);
}

.footer-contact {
    display: flex;
    gap: 25px;
    margin: auto;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-link i {
    color: var(--primary-blue); /* Ícone no azul principal para um detalhe sutil */
    font-size: 1rem;
}

.footer-link:hover {
    color: #fff; /* Fica branco puro ao passar o mouse */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-link {
        font-size: 1rem;
    }
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* ================= MOBILE RESPONSIVIDADE ================= */

@media(max-width:1024px) {
    .hero-left h1 {
        font-size: 3rem;
    }
    .hero-right img {
        width: 550px;
    }
    section h2 {
        font-size: 2.4rem;
    }
}


@media(max-width:768px){

    .navbar-container {
        padding: 0;
    }

    .navbar {
        border-radius: 0;
        padding: 15px 20px;
    }

    .logo img {
        height: 38px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px; /* Ajusta a posição para baixo da navbar */
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        overflow: hidden; /* Garante que os itens não vazem */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block; /* Para o link preencher o item */
        padding: 15px 20px;
        font-size: 1.1rem;
        text-align: center;
    }

    .btn-quote {
        display: none; /* Oculta o botão da navbar no mobile, o flutuante é suficiente */
    }

   .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* 🔥 CAMINHÃO CENTRALIZADO */
    .hero-right {
        justify-content: center;
    }

    .hero-right img {
        width: 320px;
        transform: none;
    }
    
    section {
        padding: 70px 0;
    }
    section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .pain-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pain-grid div {
        padding: 18px;
        font-size: 1rem;
    }

    .service-card, .testimonial-card, .step {
        padding: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .proof-item h3 {
        font-size: 3rem;
    }
    .proof-item p {
        font-size: 1.05rem;
    }

    .authority h2, .cta h2 {
        font-size: 2.2rem;
    }
    .authority-text, .cta p {
        font-size: 1.05rem;
    }
    .authority .btn-primary, .cta .btn-primary {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        right: 15px;
        bottom: 15px;
    }
}

@media(max-width:480px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-left p {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column; /* Botões um abaixo do outro */
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 90%; /* Ocupa quase toda a largura */
        text-align: center;
    }
    section h2 {
        font-size: 1.8rem;
    }
    .pain-highlight {
        font-size: 1.1rem;
    }
    .service-card h3 {
        font-size: 1.4rem;
    }
}