/* css/custom.css */

/* 1. Configurações Gerais e Variáveis */
:root {
    --dark-blue: #0a224a;
    /* Tom de azul escuro, ajustar se necessário */
    --dark-gray: #343a40;
    --primary-blue: #0d6efd;
    --light-gray: #f8f9fa;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;



}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;

    /* Ajuste para a navbar fixa */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

.section-title {
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}


/* 2. Navegação e Cabeçalho */
.navbar {
    transition: all 0.3s ease-in-out;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.navbar .nav-link {
    color: #fff;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-blue);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-blue);
    color: #fff;
}


/* 3. Seção Hero */
.hero-section {
    background-image: linear-gradient(rgba(10, 34, 74, 0.8), rgba(10, 34, 74, 0.8)), url('https://pettysolucoes.com.br/wp-content/uploads/2025/09/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efeito Parallax */
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* 4. Animações e Transições */
.btn {
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
}


/* 5. Seção Clientes */
.client-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/* 6. Rodapé */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-blue) !important;
}


/* 7. Media Queries para Responsividade */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 2.5rem;
    }
}
.team-section-home {
    padding: 5rem 0;
}

.team-card-home {
    border: none;
    border-radius: 0.75rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Essencial para o alinhamento */
}

.team-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.team-card-home .team-img-home {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-card-home .team-name-home {
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card-home .team-role-home {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.team-card-home .team-bio-home {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}
.about-petty-section {
    padding: 5rem 0;
    /* O bg-light já está no seu HTML, o que é perfeito. */
}

.about-petty-title {
    color: var(--dark-blue, #0a224a);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-petty-text {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
}

.about-petty-text.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: #343a40;
}

/* NOVO: Título para as Soluções */
.solutions-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue, #0a224a);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* NOVO: Estilo das "Pills" de Soluções */
.solutions-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.solutions-pills span {
    background-color: #e9ecef;
    color: #495057;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #dee2e6;
}

/* NOVO: Seção de Estatísticas (AGROPETTY) */
.agropetty-stats {
    margin-top: 4rem; /* Espaçamento */
    padding-top: 3rem;
    border-top: 1px solid #dee2e6;
}
.stat-item {
    padding: 1rem;
}
.stat-item .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue, #0d6efd);
    display: block;
    line-height: 1.2;
}
.stat-item .stat-label {
    font-size: 1rem;
    color: #495057;
    display: block;
}

/* NOVO: Bloco de CTA por E-mail */
.final-cta-email {
    margin-top: 3rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.final-cta-email p {
    font-size: 1.1rem;
    color: var(--dark-blue, #0a224a);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.services-cta-section {
    padding: 4rem 0;
    background-color: var(--dark-blue, #0a224a); /* Usa a variável do seu tema */
    color: #fff;
    text-align: center;
}
.services-cta-section p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}
.services-cta-section .btn-light-outline {
    font-weight: bold;
    color: #fff;
    border-color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.services-cta-section .btn-light-outline:hover {
    background-color: #fff;
    color: var(--dark-blue, #0a224a);
}

/* 2. ESTILIZAÇÃO DO MODAL DE SERVIÇOS */

/* Abas de navegação dentro do modal */
.modal-services-tabs .nav-pills .nav-link {
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue, #0a224a);
    background-color: var(--light-gray, #f8f9fa);
    margin: 0 0.5rem 0.5rem 0;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.modal-services-tabs .nav-pills .nav-link.active {
    background-color: var(--primary-blue, #0d6efd);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

/* Lista de serviços dentro de cada aba */
.service-list-modal {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    column-count: 2; /* Divide a lista em 2 colunas */
}
.service-list-modal li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; /* Evita que um item se quebre entre colunas */
}
.service-list-modal li::before {
    content: '\F26A'; /* Ícone de check do Bootstrap Icons */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-blue, #0d6efd);
    font-weight: bold;
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .service-list-modal {
        column-count: 1; /* Coluna única em telas menores */
    }
    .modal-services-tabs .nav-pills .nav-link {
        width: 100%;
        text-align: center;
    }
}
.purpose-title {
    color: var(--dark-blue, #0a224a);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Estiliza a citação do propósito */
.purpose-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #343a40;
    border-left: 4px solid var(--primary-blue, #0d6efd);
    padding-left: 1.5rem;
    margin: 0;
}

/* Estiliza a lista de crenças dentro do modal */
.philosophy-list {
    list-style: none;
    padding-left: 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.philosophy-list li::before {
    content: '\F23A'; /* Ícone bi-check2-circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary-blue, #0d6efd);
    font-weight: bold;
    font-size: 1.3rem;
}