/* RESET BÁSICO & VARIÁVEIS */
:root {
    --primary-color: #003366;
    --secondary-color: #0d2c4b;
    --accent-color: #4a90e2;
    --text-color: #333;
    --light-text-color: #fff;
    --background-color: #f4f7f6;
    --dark-footer-bg: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
}

section {
    padding: 60px 20px;
}

/* =================================== */
/* CABEÇALHO ATUALIZADO           */
/* =================================== */

/* BARRA SUPERIOR */
.top-bar {
    background-color: #1e3c56; /* Cor azul escuro da imagem */
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar p {
    margin: 0;
}

.top-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* CABEÇALHO PRINCIPAL */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.logo img {
    height: 55px; /* Ajuste a altura conforme necessário para o novo logo */
}

/* NAVEGAÇÃO PRINCIPAL */
.main-nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre os itens */
}

.main-nav .nav-links li {
    padding: 0 15px;
    position: relative;
}

/* Adiciona o separador "|" depois de cada item, exceto o último */
.main-nav .nav-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-weight: 100;
}

.main-nav .nav-links a {
    text-decoration: none;
    color: #3e5062; /* Cor cinza-azulado do texto */
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding-bottom: 5px; /* Espaço para o sublinhado */
    border-bottom: 3px solid transparent; /* Sublinhado invisível por padrão */
}

/* Estilo do link ativo */
.main-nav .nav-links li.active a {
    color: #d90429; /* Cor vermelha do link ativo */
    border-bottom-color: #d90429; /* Sublinhado vermelho */
}

.main-nav .nav-links a:hover {
    color: #d90429; /* Efeito hover para os outros links */
}

/* BOTÃO DE ORÇAMENTO */
.quote-btn {
    background-color: #1e3c56; /* Mesma cor da barra superior */
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px; /* Deixa o botão em formato de pílula */
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 0.9rem;
}

.quote-btn:hover {
    background-color: #2a4a65; /* Um pouco mais claro no hover */
    transform: translateY(-2px);
}

/* ÍCONE E MENU MOBILE */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1e3c56;
}

/* Ajustes na responsividade para o novo header */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    .header .quote-btn {
         display: none; /* Esconde o botão principal em telas menores */
    }
    .mobile-menu-icon {
        display: block;
    }
}
/* =================================== */
/* SEÇÃO HERO ATUALIZADA               */
/* =================================== */

.hero-section {
    background: linear-gradient(rgba(30, 60, 86, 0.85), rgba(30, 60, 86, 0.85)), url('/img/banner1') no-repeat center center/cover;
    padding: 80px 20px;
    color: var(--light-text-color);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--light-text-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    font-weight: 600;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 450px;
}

.arrow-down {
    color: #d90429; /* Vermelho */
    font-size: 1.5rem;
}

.hero-form-container {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    background-color: #eef3f6; /* Fundo cinza claro do formulário */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    background-color: #dde8ee;
    padding: 15px 25px;
}

.form-title h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-form {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
}

.hero-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1e3c56;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.hero-form .submit-btn:hover {
    background-color: #2a4a65;
}


/* Ajustes para o layout do Hero em telas menores */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-form-container {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}
/* =================================== */
/* SEÇÃO SERVIÇOS ATUALIZADA           */
/* =================================== */

.services-section {
    background-color: #fff; /* Fundo branco para a seção */
    padding: 60px 20px;
}

/* Adicionei um container genérico para centralizar conteúdo, se não existir */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 60, 86, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz o conteúdo crescer para preencher o espaço */
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Garante que o parágrafo empurre o botão para baixo */
}

.btn-card {
    display: inline-block;
    background-color: #1e3c56; /* Cor azul padrão */
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px; /* Formato de pílula */
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
    align-self: flex-start; /* Alinha o botão à esquerda */
}

.btn-card:hover {
    background-color: #2a4a65;
}

/* =================================== */
/* SEÇÃO SOBRE NÓS IDÊNTICA À IMAGEM    */
/* =================================== */

.about-section {
    background-color: #f4f7f6; /* Fundo cinza claro como na imagem */
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px; /* Espaço entre a imagem e o texto */
    flex-wrap: wrap;
}

.about-image {
    flex: 1; /* A imagem ocupa uma parte do contêiner */
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Bordas levemente arredondadas */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1.2; /* O texto ocupa um pouco mais de espaço que a imagem */
    min-width: 300px;
}

.about-content h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1rem;
    color: #444; /* Cor do texto principal */
    line-height: 1.7; /* Espaçamento entre as linhas para melhor leitura */
    margin-bottom: 15px;
}

.about-content p strong {
    color: #333; /* Cor do texto em negrito */
    font-weight: 700;
}

/* Estilo do botão "Saiba mais" */
.btn-about {
    display: inline-block;
    background-color: #1e3c56; /* Cor azul escura do botão */
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px; /* Formato de pílula */
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-about:hover {
    background-color: #2a4a65;
    transform: translateY(-2px);
}

/* Ajuste para telas menores (celulares) */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Empilha a imagem sobre o texto */
    }
    .about-content h2 {
        text-align: center;
    }
}
/* =================================== */
/* SEÇÃO CLIENTES ATUALIZADA           */
/* =================================== */

.clients-section {
    background-color: white; /* Fundo cinza claro */
    padding: 60px 20px;
}

.clients-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.clients-logos {
    display: grid;
    /* Cria 4 colunas em telas grandes */
    grid-template-columns: repeat(4, 1fr);
    /* Espaçamento entre os logos */
    gap: 40px 20px; /* 40px vertical, 20px horizontal */
    /* Alinha os itens no centro de cada célula do grid */
    place-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.clients-logos img {
    max-width: 160px; /* Largura máxima para cada logo */
    height: auto; /* Mantém a proporção */
    object-fit: contain;
    /* Remove o filtro cinza e opacidade do design antigo */
    filter: none;
    opacity: 1;
}

/* --- Responsividade para a seção de clientes --- */

/* Telas de tablet */
@media (max-width: 992px) {
    .clients-logos {
        /* Muda para 3 colunas */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Telas de celular */
@media (max-width: 576px) {
    .clients-logos {
        /* Muda para 2 colunas */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
}

/* =================================== */
/* SEÇÃO CTA ATUALIZADA                */
/* =================================== */

.cta-section {
    background-color: #1e3c56; /* Fundo azul escuro */
    padding: 80px 20px;
}

.cta-section h2 {
    color: #fff; /* Título branco */
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.cta-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha */
    gap: 20px; /* Espaçamento entre as linhas e colunas */
}

/* Reutilizando as classes de layout do formulário */
.cta-form .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.cta-form .form-group {
    flex: 1;
    min-width: calc(50% - 10px); /* Garante que dois campos caibam na linha */
}

.cta-form .form-group.full-width {
    width: 100%;
}

.cta-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #fff; /* Labels brancas */
    font-weight: 500;
}

/* Estilo principal para os campos do formulário nesta seção */
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: transparent; /* Fundo transparente */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Borda branca semitransparente */
    border-radius: 4px;
    color: #fff; /* Cor do texto digitado */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: #fff; /* Borda fica branca sólida ao focar */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Estilo para o placeholder */
.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Botão de contorno (outline) */
.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto 0; /* Centraliza o botão */
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: #fff;
    color: #1e3c56; /* Cor do texto muda para o azul escuro */
}

/* --- Responsividade para o formulário CTA --- */
@media (max-width: 576px) {
    .cta-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* =================================== */
/* SEÇÃO ATENDIMENTO PERSONALIZADO     */
/* =================================== */

.personalized-service-section {
    /* Overlay escuro + Imagem de fundo */
    background: 
        linear-gradient(rgba(30, 60, 86, 0.7), rgba(30, 60, 86, 0.7)), 
        url('/img/atendimento-bkg') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    color: #fff; /* Cor padrão do texto na seção */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Classe auxiliar para centralizar texto */
.text-center {
    text-align: center;
}

.personalized-service-section h2 {
    color: #fff; /* Garante que o H2 seja branco */
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.personalized-service-section p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Estilo para o botão primário (azul, sólido) */
.btn-primary {
    display: inline-block;
    background-color: #1e3c56;
    color: #fff;
    padding: 14px 35px; /* Um pouco maior para mais destaque */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2a4a65;
    transform: translateY(-2px);
}

/* Ajuste de fonte para telas menores */
@media (max-width: 768px) {
    .personalized-service-section h2 {
        font-size: 2.2rem;
    }
}
/* =================================== */
/* SEÇÃO DEPOIMENTOS ATUALIZADA        */
/* =================================== */

.testimonials-section {
    background-color: #f4f7f6; /* Fundo cinza claro */
    padding: 80px 20px;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Decorador de título com duas linhas */
.title-decorator {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre as duas linhas */
    margin-bottom: 60px;
}

.title-decorator .line {
    width: 120px;
    height: 3px;
    background-color: #d90429; /* Cor vermelha */
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Espaço entre os depoimentos */
}

.testimonial-item {
    text-align: left;
}

.testimonial-item .fa-quote-left {
    font-size: 2.5rem;
    color: #d1d1d1; /* Cor cinza claro para as aspas */
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* --- Responsividade para a seção de depoimentos --- */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
        gap: 50px;
    }

    .testimonial-item {
        text-align: center; /* Centraliza o conteúdo do card no mobile */
    }
}

/* =================================== */
/* RODAPÉ ATUALIZADO                   */
/* =================================== */

.footer {
    background-color: #1e3c56; /* Fundo azul escuro */
    color: #e0e0e0; /* Cor de texto padrão (cinza claro) */
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Layout de 3 colunas */
    gap: 40px;
}

.footer-column {
    min-width: 250px;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer p {
    line-height: 1.8;
}

/* Botão de contorno específico para o rodapé */
.btn-outline-footer {
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-footer:hover {
    background-color: #fff;
    color: #1e3c56;
}

/* Ícones de redes sociais */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
    background-color: #fff;
    color: #1e3c56;
}

/* Linha de direitos autorais */
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaa;
}

/* --- Responsividade para o rodapé --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Duas colunas em tablets */
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Uma coluna em celulares */
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 25px;
    }

    .footer-social-icons {
        justify-content: center;
    }
}
/* --- RESPONSIVIDADE --- */
/* TABLET */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .cta-form {
        grid-template-columns: 1fr;
    }
    .cta-form textarea, .cta-form .submit-btn.large {
        grid-column: auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .main-nav, .header-quote-btn {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .mobile-nav {
        display: none; /* Escondido por padrão */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 60px; /* Altura do header */
        left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .mobile-nav.active {
        display: flex; /* Mostra quando a classe 'active' é adicionada */
        z-index: 9999;
    }

    .mobile-nav a {
        text-align: center;
        padding: 15px;
        text-decoration: none;
        color: var(--text-color);
        border-bottom: 1px solid #eee;
    }
    .mobile-nav a.quote-btn {
        margin: 10px 20px;
        text-align: center;
        justify-content: center;
        color: white;
    }

    .hero-form .form-group {
        flex-direction: column;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .about-content h2 {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact p {
        justify-content: center;
    }
}

/* Esconde o menu de navegação no desktop */
.mobile-nav {
    display: none;
}

/* Exibe o menu de navegação em telas pequenas (dispositivos móveis) */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

/*
================================
Estilos da Página de Serviços
================================
*/

.services-page-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

/* Inverte a ordem para a seção 2 e 4 */
.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex-basis: 50%;
}

.service-image {
    flex-basis: 50%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #19364f; /* Azul escuro do seu design */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-title h2 span {
    font-size: 38px;
    font-weight: 700;
    color: #e23c41; /* Vermelho do seu design */
}

.service-content p,
.service-content ul {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
}

.service-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-content ul li::before {
    content: '✓';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e23c41; /* Vermelho */
    position: absolute;
    left: 0;
    top: 2px;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid #19364f; /* Azul escuro */
    color: #19364f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #19364f;
    color: #fff;
}

/* Responsividade para a página de serviços */
@media (max-width: 900px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-page-container {
        padding: 40px 15px;
    }

    .service-item {
        margin-bottom: 60px;
    }
}

/*
================================
Estilos da Página Sobre Nós
================================
*/

/* Seção Principal "A Transpadre" */
.about-us-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Fundo cinza claro */
}

.about-us-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-us-image {
    flex: 1;
    max-width: 450px;
}

.about-us-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-us-content {
    flex: 1.5;
}

.about-us-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #19364f; /* Azul escuro */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-us-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #e23c41; /* Vermelho */
}

.about-us-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.about-us-content p strong {
    color: #19364f;
}

/* Seção "Por que nos escolher?" */
.why-choose-us-section {
    padding: 60px 20px;
}

.why-choose-us-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #19364f;
    margin-bottom: 40px;
}

.why-choose-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-list i {
    font-size: 24px;
    color: #e23c41; /* Vermelho */
}

/* Ajustes na seção de clientes para a página Sobre */
.about-page-clients {
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Responsividade */
@media (max-width: 900px) {
    .about-us-container {
        flex-direction: column;
    }

    .about-us-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-us-content h2,
    .why-choose-us-section h2 {
        font-size: 30px;
    }

    .why-choose-list li {
        font-size: 16px;
    }
}

/*
================================
Estilo do Botão Flutuante do WhatsApp
================================
*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*
================================
Estilos da Página de Contato
================================
*/

.contact-hero {
    
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    background-image: url('/img/contato');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-content-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-info, .contact-form-wrapper {
    flex: 1;
}

.contact-info h3, .contact-form-wrapper h3 {
    font-size: 28px;
    color: #19364f;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after, .contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e23c41; /* Vermelho */
}

.contact-info > p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 22px;
    color: #e23c41; /* Vermelho */
    margin-top: 5px;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #19364f;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Formulário de Contato */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #19364f;
    outline: none;
}

.btn-form {
    padding: 14px 30px;
    background-color: #e23c41; /* Vermelho */
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-form:hover {
    background-color: #c42f33; /* Vermelho mais escuro */
}

/* Seção do Mapa */
.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* Responsividade */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

    .contact-content-section {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero p {
        font-size: 16px;
    }
}

/*
================================
Estilos dos Créditos do Desenvolvedor
================================
*/
.developer-credits {
    background-color: #34495e; /* Azul escuro da imagem */
    padding: 15px 20px;
    text-align: center;
}

.developer-credits p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7; /* Cinza claro */
}

.developer-credits a {
    color: #ffffff; /* Branco */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.developer-credits a:hover {
    color: #f1c40f; /* Amarelo ao passar o mouse */
}

.developer-credits a i {
    color: #f1c40f; /* Amarelo para o ícone */
    margin-right: 5px;
    font-size: 12px;
}