
/* --- Seção de Dores (Pain Point Section) --- */
.pain-point-section {
    background-color: var(--light-gray); /* Fundo sutil para destacar a seção */
    padding: 60px 0;
    text-align: center;
    margin-top: -10px; /* Para 'colar' no hero, se o hero tiver padding bottom */
}

.pain-point-section h2 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 2.8rem;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-point-section p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-point-section .highlight-text {
    font-weight: bold;
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-top: 30px;
}

/* --- Seção de Visão Geral dos Serviços (Services Overview) --- */
.services-overview {
    max-width: 1200px;
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.servico-container {
    max-width: 1200px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; /* Espaçamento entre os cartões */
    margin-top: 100px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card i { /* Estilo para os ícones */
    font-size: 4rem; /* Tamanho grande para o ícone */
    color: var(--teal); /* Cor do ícone */
    margin-bottom: 20px;
    /* Adicione aqui propriedades para seu SVG, se estiver usando um background-image ou mask */
    width: 80px; /* Exemplo para SVGs */
    height: 80px; /* Exemplo para SVGs */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Exemplo de ícones usando background-image (substitua pelos seus SVGs) */

.service-card .icon-website {
    background-image: url('../img/site-institucional-icone.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 18px;
    width: 300px; /* Aumente a largura do contêiner para a imagem parecer mais "wide" */
    height: 170px;
    color: transparent;
}

.service-card .icon-landing-page { 
    background-image: url('../img/landingpage-icone.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px; /* Aumente a largura do contêiner para a imagem parecer mais "wide" */
    height: 200px;
    color: transparent;
}
.service-card .icon-ecommerce { 
    background-image: url('../img/e-comerce-icone.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px; /* Aumente a largura do contêiner para a imagem parecer mais "wide" */
    height: 200px;
    color: transparent;
 }
.service-card .icon-hosting { 
    background-image: url('../img/data-center-icone.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 17px;
    width: 300px; /* Aumente a largura do contêiner para a imagem parecer mais "wide" */
    height: 160px;
    color: transparent;
}
.service-card .icon-support {
    background-image: url('../img/suporte-icone.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px; /* Aumente a largura do contêiner para a imagem parecer mais "wide" */
    height: 200px;
    color: transparent;
}


.service-card h3 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
}



/* --- CTA Final --- */
.cta-section.final-cta {
    background: linear-gradient(to right, var(--navy-blue), var(--teal)); /* Gradiente de cores */
    padding: 80px 20px;
    text-align: center;
    margin-top: 0; /* Remover margin-top do CSS original */
}

.cta-section.final-cta h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.cta-section.final-cta .cta-btn {
    background-color: var(--white);
    color: var(--navy-blue); /* Cor principal do texto */
    padding: 18px 35px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    
}

.cta-section.final-cta .cta-btn:hover {
    background-color: var(--light-gray); /* Um cinza mais claro no hover */
    color: var(--teal);
    transform: translateY(-4px);
}


/* --- Media Queries (Responsividade) --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }

    .pain-point-section h2 {
        font-size: 2.2rem;
    }
    .pain-point-section p {
        font-size: 1rem;
    }
    .pain-point-section .highlight-text {
        font-size: 1.1rem;
    }

    .services-overview .main-title {
        font-size: 2.5rem;
    }
    .services-overview .subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .service-card {
        padding: 25px;
    }
    .service-card h3 {
        font-size: 1.5rem;
    }
    .service-card p {
        font-size: 0.95rem;
    }

    .cta-section.final-cta h2 {
        font-size: 2.2rem;
    }
    .cta-section.final-cta .cta-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .pain-point-section h2 {
        font-size: 1.8rem;
    }

    .services-overview .main-title {
        font-size: 2rem;
    }

    .cta-section.final-cta h2 {
        font-size: 1.8rem;
    }
}