/* ============================================
   RESET E VARIÁVEIS
   ============================================ */

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

:root {
    --primary-color: #311c61;
    --secondary-color: #a396c8;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-img {
    height: 50px; /* Altura do logo no topo */
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: none;
}

@media (min-width: 640px) {
    .nav-link {
        display: inline;
    }
}

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

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: #2a1550;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(49, 28, 97, 0.8) 0%, rgba(49, 28, 97, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
    margin-left: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        margin-left: 1rem;
        padding: 1rem;
    }

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

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--white); /* Fundo branco para maior visibilidade no banner */
    color: var(--primary-color); /* Texto na cor primária */
    border: 2px solid var(--primary-color); /* Adicionar borda para destaque */
}

.btn-primary:hover {
    background-color: var(--light-gray); /* Fundo cinza claro no hover */
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 28, 97, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn.full {
    width: 100%;
}

/* ============================================
   SEÇÕES
   ============================================ */

.section {
    padding: 4rem 2rem;
}

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

.text-center {
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}



.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SOBRE SECTION
   ============================================ */

.sobre {
    background-color: var(--white);
}

.sobre p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.placeholder-box {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color); /* Cor de fundo para a caixa */
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ============================================
   VALORES SECTION
   ============================================ */

.valores {
    background: linear-gradient(135deg, var(--primary-color), #2a1550);
    color: var(--white);
}

.valores h2 {
    color: var(--white); /* Título em branco conforme solicitado */
}

.valores .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.valores-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color); /* Corrigido: texto na cor padrão para contraste */
    transition: var(--transition);
}

.valores-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.valores-card:hover h3,
.valores-card:hover p,
.valores-card:hover ul,
.valores-card:hover li {
    color: var(--white) !important; /* Força a cor branca no hover */
}

.valores-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.valores-card ul {
    list-style: none;
}

.valores-card li {
    margin-bottom: 0.5rem;
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */

.servicos {
    background-color: var(--white);
}

.servico-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.servico-card:hover {
    box-shadow: 0 8px 24px rgba(49, 28, 97, 0.15);
    transform: translateY(-5px);
}

.servico-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem; /* Aumentado para 1.3rem para maior destaque */
    font-weight: 700; /* Adicionado negrito para maior destaque */
}

.servico-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   CLIENTES SECTION
   ============================================ */

.clientes {
    background-color: var(--white);
}

.cliente-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.cliente-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(49, 28, 97, 0.4);
    transition: var(--transition);
}

.cliente-card:hover::before {
    background-color: rgba(49, 28, 97, 0.2);
}

.cliente-card span {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    width: calc(250px * 20); /* 10 logos * 2 (para loop) * 250px (largura do card) */
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.cliente-card {
    min-width: 250px; /* Largura fixa para o card */
    height: 150px; /* Altura reduzida para o logo */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0; /* Remover borda arredondada */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: none; /* Remover transição */
    border: none; /* Remover borda */
    box-shadow: none; /* Remover sombra */
    background-color: transparent; /* Fundo transparente */
}

.cliente-card::before {
    content: none; /* Remover overlay */
}

.cliente-card span {
    /* Manter o texto de placeholder visível */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 4px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 10)); /* 10 logos * 250px */
    }
}
    font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem; /* Aumentar o padding para destacar o efeito */
    position: relative;
    overflow: visible; /* Alterado para visible para garantir o parallax */
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(49, 28, 97, 0.7); /* Overlay escuro para o texto */
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white); /* Corrigido: Cor do texto descritivo para branco */
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */

.depoimentos {
    background-color: rgba(163, 150, 200, 0.1);
}

.depoimento-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.depoimento-autor {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.autor-nome {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.autor-cargo {
    font-size: 0.9rem;
    color: #999;
}

/* ============================================
   CONTATO SECTION
   ============================================ */

.contato {
    background-color: rgba(163, 150, 200, 0.1);
}

.contato-wrapper {
    /* O grid-2 será aplicado aqui para desktop */
}

.contato-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    height: 100%; /* Garante que o fundo preencha a altura da coluna */
}

.contato-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contato-icon {
    font-size: 1.8rem;
    color: var(--secondary-color); /* Cor de destaque */
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contato-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.contato-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 2rem; /* Para mobile */
}

@media (min-width: 769px) {
    .form-container {
        margin-top: 0; /* Remover margem superior no desktop */
    }
}


/* ============================================
   FORMULÁRIO
   ============================================ */



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(49, 28, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card p {
    color: #555;
    line-height: 1.8;
}

/* ============================================
   GRIDS
   ============================================ */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr; /* Padrão para mobile: 1 coluna */
    gap: 3rem;
    align-items: center;
}

@media (min-width: 769px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr; /* Desktop: 2 colunas */
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajustado para 250px para caber 3 colunas em 769px */
    gap: 2rem;
}



.grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr; /* Ajuste: Logo (2), Serviços (1), Empresa (1), Contato (2) */
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr; /* Em telas menores, volta para 2 colunas */
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Força 4 colunas */
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas menores */
    }
}

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

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr; /* 1 coluna em celulares */
    }
} 768px) {
    .grid-2 {
        /* Já definido para 1fr por padrão e no media query acima, removendo repetição */
        gap: 2rem;
    }

    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.logo-footer-img {
    height: 60px; /* Altura do logo no rodapé */
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer h3,
.footer h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--secondary-color); /* Cor de destaque no hover */
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* ============================================
   ANIMAÇÕES FADE-IN
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


/* Ajustes para a seção Nossos Valores */

/* 1. Cor do título para branco */
.valores h2 {
    color: var(--white);
}

/* 2. Estilo dos ícones */
.valores-icon {
    color: var(--secondary-color); /* Roxo claro padrão do site */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Centralizando o conteúdo dos cards de valores */
.valores-card {
    text-align: center;
}

/* 3. Efeito hover para título e descrição em branco */
.valores-card:hover h3,
.valores-card:hover p,
.valores-card:hover ul,
.valores-card:hover li {
    color: var(--white) !important; /* Força a cor branca no hover */
}

/* ============================================
   NOVAS SEÇÕES DE CONTEÚDO (ESTÉTICA CORRIGIDA)
   ============================================ */

/* SEÇÃO POR QUE ESCOLHER A PRISMA (DIFERENCIAIS) */
.diferenciais {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.diferencial-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.diferencial-card:hover {
    box-shadow: 0 4px 8px rgba(49, 28, 97, 0.1);
    transform: translateY(-5px);
}

.diferencial-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.diferencial-card p {
    font-weight: 500;
    color: var(--text-color);
}

.processo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* SEÇÃO NOSSO PROCESSO */
.processo {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.process.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Força 3 colunas */
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .servicos .grid-3 {
        grid-template-columns: repeat(3, 1fr) !important; /* Força 3 colunas em telas grandes para serviços */
    }
}

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

@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr; /* 1 coluna em celulares */
    }
}
.processo-step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.processo-step:hover {
    box-shadow: 0 4px 8px rgba(49, 28, 97, 0.1);
}

.p.processo-step h3 {
    font-size: 1.1rem;
    color: var(--primary-color); /* Usar a cor primária para padronizar */
    margin-top: 0.5rem;
    font-weight: 600; /* Aumentar o peso da fonte para padronizar */
}
}



.processo-fechamento {
    margin-top: 5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* SEÇÃO PLANOS MENSAIS */
.planos-mensais {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.plano-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.plano-card.destaque {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(49, 28, 97, 0.2);
    transform: translateY(-10px);
}

.plano-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.plano-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.plano-card .indicado {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.plano-card .valor {
    font-size: 2rem;
    font-weight: 700;
    color: #008000; /* Cor de destaque para o valor */
    margin-bottom: 2rem;
}

.observacao {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
}

/* SEÇÃO PLANO ADVANTAGE */
.plano-advantage {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.plano-advantage h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.plano-advantage .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.plano-advantage strong {
    color: var(--primary-color);
}

.plano-advantage .investimento {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Ajuste para a seção de serviços (agora com 4 cards) */
.servicos .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Ajuste para a seção de clientes */
.clientes .subtitle {
    margin-bottom: 2rem;
}

/* Ajuste para o rodapé (footer) */
.footer .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 colunas no footer */
}

@media (max-width: 768px) {
    .footer .grid-4 {
        grid-template-columns: 1fr;
    }
}
