/* --- Variáveis e Configurações --- */
:root {
    --bg-dark: #020617; /* Slate 950 - Mais escuro e elegante */
    --bg-card: rgba(30, 41, 59, 0.7); /* Vidro */
    --primary-blue: #3b82f6;
    --accent-orange: #f97316;
    --neon-green: #10b981;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    
    --border-light: rgba(255, 255, 255, 0.1);
    --glow-orange: rgba(249, 115, 22, 0.5);
    --glow-blue: rgba(59, 130, 246, 0.5);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

/* Configuração Global para Google Symbols */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 300, 
    'GRAD' 0,
    'opsz' 48
}

/* 1. Ícones de Serviços e Benefícios (Aumento de 30% em 30px) */
.benefit-icon .material-symbols-outlined,
.card-icon .material-symbols-outlined {
    /* Novo tamanho: 39px */
    font-size: 39px; 
}

/* 2. Ícones de Contato (Aumento de 30% em 24px) */
.method-icon-minimal .material-symbols-outlined {
    /* Novo tamanho: 31.2px (arredondando para 31px ou mantendo float para precisão) */
    font-size: 31.2px; 
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Padrão de Grid no fundo para dar ar técnico */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* --- Efeitos de Fundo (Blobs) --- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--primary-blue); }
.blob-2 { bottom: 10%; right: -10%; width: 400px; height: 400px; background: var(--accent-orange); }

/* --- Tipografia e Utilitários --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-subtitle {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 { font-size: 3rem; margin-bottom: 15px; font-weight: 700; }
.section-header p { color: var(--text-gray); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent-orange), #ffdb4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Botões --- */
.btn-primary {
    background: linear-gradient(90deg, var(--accent-orange), #ea580c);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    border: 1px solid var(--border-light);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: white; }
.highlight { color: var(--accent-orange); }
.nav-links { 
    display: flex; 
    gap: 30px; 
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a { 
    color: var(--text-gray); 
    font-weight: 500; 
    transition: 0.3s; 
    padding: 5px 0;
}

.nav-links a:hover { 
    color: var(--accent-orange); 
}

.hamburger { 
    display: none; 
    cursor: pointer; 
    background: transparent;
    border: none;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 4px;
    border-radius: 4px;
}

.bar { 
    display: block; 
    width: 25px; 
    height: 3px; 
    background: white; 
    margin: 5px 0; 
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animação do hambúrguer para X */
.hamburger.toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.toggle .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-light);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    gap: 0;
    animation: slideDown 0.3s ease;
    z-index: 1001 !important;
    pointer-events: auto !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.active li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: auto;
    position: relative;
    z-index: 1002;
}

.nav-links.active li:last-child {
    border-bottom: none;
}

.nav-links.active a {
    display: block;
    padding: 20px 15px;
    color: var(--text-white);
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 1003;
    cursor: pointer;
}

.nav-links.active a:hover {
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    padding-left: 25px;
}

/* Botão mobile dentro do menu */
.nav-btn-mobile-item {
    display: none;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-links.active .nav-btn-mobile-item {
    display: block;
}

.nav-btn-mobile-link {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 15px 20px !important;
    margin: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--accent-orange), #ea580c) !important;
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    pointer-events: auto !important;
    position: relative;
    z-index: 1004;
    cursor: pointer;
}

.nav-btn-mobile-link:hover {
    background: linear-gradient(90deg, #ea580c, var(--accent-orange)) !important;
    padding-left: 20px !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}
.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
    padding: 6px 16px; border-radius: 30px; font-size: 0.9rem; color: var(--neon-green);
    margin-bottom: 25px;
}
.dot { width: 8px; height: 8px; background: var(--neon-green); border-radius: 50%; box-shadow: 0 0 10px var(--neon-green); }

.hero-title { font-size: 3.8rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.hero-text { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; max-width: 90%; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 40px; }

.trust-indicators { display: flex; gap: 20px; color: var(--text-gray); font-size: 0.9rem; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.check-icon { width: 18px; height: 18px; stroke: var(--neon-green); fill: none; stroke-width: 3; }

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 2; position: relative; }
.image-glow { position: absolute; inset: 0; background: var(--primary-blue); filter: blur(60px); opacity: 0.3; z-index: 1; }
/* --- Ícones Minimalistas de Contato --- */
.method-icon-minimal {
    width: 50px;
    height: 50px;
    /* Removemos o fundo sólido e deixamos apenas uma borda sutil */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange); /* Cor do ícone */
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

/* Efeito ao passar o mouse no item de contato */
.method:hover .method-icon-minimal {
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.method h4 {
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--text-white);
}

.method p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* --- Botão Flutuante WhatsApp --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999; /* Garante que fique acima de tudo */
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.7);
}

/* Animação de pulso para chamar atenção */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste Mobile para o botão não atrapalhar */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn svg {
        width: 30px;
        height: 30px;
    }
}
.float-card {
    position: absolute; bottom: -20px; left: -20px; z-index: 3;
    background: rgba(30, 41, 59, 0.9); backdrop-filter: blur(10px);
    padding: 15px 25px; border-radius: 15px; border: 1px solid var(--border-light);
    display: flex; align-items: center; gap: 15px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- Stats Section --- */
.stats-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 40px 0; margin-top: -50px; position: relative; z-index: 5; backdrop-filter: blur(5px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; color: white; display: inline-block; }
.stat-item span { color: var(--accent-orange); font-size: 2.5rem; font-weight: 800; }
.stat-item p { color: var(--text-gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- Services Cards (Glassmorphism) --- */
.services-grid { 
    /* Garante 3 colunas (3x2) no desktop, mas mantém a flexibilidade */
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* Adicionando responsividade para telas menores */
@media (max-width: 900px) {
    .services-grid { 
        /* Reduz para 2 colunas em tablets */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .services-grid { 
        /* Volta para 1 coluna em celulares */
        grid-template-columns: 1fr; 
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 35px; border-radius: 24px;
    transition: 0.4s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); background: rgba(30, 41, 59, 0.9); }
.card-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: white; }

.orange-glow { color: var(--accent-orange); box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); }
.blue-glow { color: var(--primary-blue); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
.green-glow { color: var(--neon-green); box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
.purple-glow { color: #a855f7; box-shadow: 0 0 20px rgba(168, 85, 247, 0.2); }

.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 20px; }
.card-list li { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 8px; padding-left: 15px; position: relative; }
.card-list li::before { content: '•'; color: var(--accent-orange); position: absolute; left: 0; }

/* --- Process Timeline --- */
.process-bg { background: linear-gradient(to bottom, transparent, rgba(30, 41, 59, 0.3), transparent); }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; }
.timeline-item { background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid var(--border-light); position: relative; }
.timeline-number { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.05); position: absolute; top: 10px; right: 20px; }
.timeline h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-blue); }
.timeline p { font-size: 0.9rem; color: var(--text-gray); }

/* --- Portfolio --- */
/* --- Seção de Portfólio (Nova Estrutura) --- */

.portfolio-grid {
    display: grid;
    /* Define 4 colunas para o desktop. Itens pequenos ocupam 1, grandes ocupam 2 */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    background-size: cover;          
    background-position: center;     /* Centraliza a imagem */
    background-repeat: no-repeat;    /* Garante que a imagem não se repita */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    height: 350px; /* Altura padrão dos cards */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    background-color: var(--bg-card); /* Fundo de fallback, será coberto por imagem real */
    cursor: pointer;
}

/* Tamanhos dos Itens na Grade */
.portfolio-item.large {
    grid-column: span 2; /* Ocupa 2 colunas */
}

.portfolio-item.small {
    grid-column: span 1; /* Ocupa 1 coluna */
}

/* Efeito de Sobreposição e Hover */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Estilo inicial de escurecimento */
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
    opacity: 1; 
    transition: opacity 0.3s ease;
}

/* Efeito de Glow Colorido ao Passar o Mouse */
.portfolio-item:hover .portfolio-overlay.orange-glow {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
    opacity: 0.9;
}
.portfolio-item:hover .portfolio-overlay.blue-glow {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 150, 255, 0.05));
    opacity: 0.9;
}
.portfolio-item:hover .portfolio-overlay.purple-glow {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
    opacity: 0.9;
}
.portfolio-item:hover .portfolio-overlay.green-glow {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    opacity: 0.9;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.portfolio-content p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 300;
}

/* Responsividade */
@media (max-width: 1024px) {
    .portfolio-grid {
        /* Em tablets e telas menores, todos os itens ficam com o mesmo tamanho */
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-item.large {
        grid-column: span 1; /* Remove o span 2 */
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        /* Em celulares, 1 coluna por item */
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Accordion --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 10px 0; }
.faq-question {
    width: 100%; background: none; border: none; color: white; padding: 20px 0;
    text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between;
}
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; color: var(--text-gray); padding-right: 20px; }
.faq-item.active .faq-answer { max-height: 150px; padding-bottom: 20px; }
.arrow { transition: 0.3s; font-size: 1.5rem; }
.faq-item.active .arrow { transform: rotate(45deg); color: var(--accent-orange); }

/* --- Contact Section --- */
.contact-box {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: 30px; padding: 50px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    backdrop-filter: blur(10px);
}
.method { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.method-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* Forms */
.form-group { position: relative; margin-bottom: 25px; }
.form-group input, .form-group select {
    width: 100%; padding: 15px; background: rgba(0,0,0,0.3); border: 1px solid var(--border-light);
    border-radius: 10px; color: white; outline: none; transition: 0.3s;
}
.form-group label {
    position: absolute; left: 15px; top: 15px; color: var(--text-gray); pointer-events: none; transition: 0.3s; font-size: 0.9rem;
}
.form-group input:focus, .form-group input:valid { border-color: var(--primary-blue); padding-top: 22px; padding-bottom: 8px; }
.form-group input:focus ~ label, .form-group input:valid ~ label { top: 5px; font-size: 0.7rem; color: var(--primary-blue); }

.full-width { width: 100%; cursor: pointer; border: none; font-size: 1.1rem; }

/* Footer */
footer { text-align: center; padding: 40px 0; border-top: 1px solid var(--border-light); color: var(--text-gray); }

/* Responsivo */
@media (max-width: 900px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .trust-indicators { justify-content: center; }
    .hero-image { display: none; } /* Ocultar imagem no mobile para não poluir */
    .contact-box { grid-template-columns: 1fr; padding: 30px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav-links:not(.active) { display: none !important; }
    .nav-btn { display: none; }
    .hamburger { display: block; }
    .portfolio-grid { display: flex; flex-direction: column; height: auto; }
    .portfolio-item { height: 250px; }
    
    /* Prevenir scroll do body quando menu está aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Garantir que o menu ativo apareça */
    .nav-links.active {
        display: flex !important;
    }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Seção de Benefícios (Nova) --- */
.benefits {
    padding-top: 50px; /* Reduz um pouco o padding para ficar mais próximo das stats */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(8px);
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Estilos de Icon Box já definidos */
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    /* A cor será dada pelas classes orange-glow, blue-glow etc. */
}

/* Reutilizando as cores de glow */
.benefit-item .orange-glow { color: var(--accent-orange); }
.benefit-item .blue-glow { color: var(--primary-blue); }
.benefit-item .green-glow { color: var(--neon-green); }
.benefit-item .purple-glow { color: #a855f7; }

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}