/* Barra superior / menu todas as páginas*/

.top-bar {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    /* Gradiente verde para amarelo */
    height: 5px;
    /* Altura da barrinha */
    width: 100%;
    /* Preenche a largura total */


    padding: 5px 0;
    font-size: 14px;
    color: #333;
}

.top-bar a {
    color: #333;
    text-decoration: none;
}

/* Navbar transparente */
/* Navbar */
.navbar-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    /* Navbar transparente */
    transition: background-color 0.3s ease;
}

.navbar-section.scrolled {
    background: rgba(0, 0, 0, 0.8);
    /* Fundo escuro ao rolar */
}

/* Espaçador opcional abaixo do header fixo/absoluto em páginas sem banner próprio */
.header-spacer {
    height: 110px; /* altura aproximada do header em desktop */
}
@media (max-width: 768px) {
    .header-spacer { display: none; }
}

.navbar-logo {
    max-width: 120px;
}

.navbar-subtitle {
    font-size: 0.75rem;
    color: #ccc;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #28a745;
    text-decoration: underline;
    /* Verde no hover */
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    /* Mostra o menu no hover */
}

.navbar-nav .dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f8f8;
    /* Fundo claro no hover */
}

.navbar-flag {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

/* Botão de busca */
.navbar-nav .fa-search {
    color: white;
    font-size: 1.2rem;
}


/*new menu hover*/
/* Estilização dos submenus dropdown */
.navbar-nav .dropdown-menu {
    display: none;
    /* Mantém oculto por padrão */
    position: absolute;
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1050;
    /* Garante que o menu fique acima de outros elementos */
}

/* Mostra os submenus ao passar o mouse no item principal */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
}

/* Garante que o submenu fique visível ao mover o mouse sobre ele */
.navbar-nav .dropdown-menu:hover {
    display: block;
}

/* Itens do dropdown */
.navbar-nav .dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    /* Evita quebra de linha nos itens */
}

/* Efeito de hover nos subitens */
.navbar-nav .dropdown-item:hover {
    background-color: #f8f8f8;
    color: #28a745;
    /* verde padrão */
    /* Cor verde conforme o tema */
}


/* Responsivo */
@media (max-width: 768px) {
    .navbar-section {
        position: relative;
    }

    .navbar-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 14px 20px;
        gap: 10px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar-nav .dropdown-toggle::after {
        transform: scale(1.25);
    }

    /* Cor do link no mobile */
    .navbar-nav .nav-link {
        color: #e2e2e2;
        /* verde claro */
    }

    .navbar-nav .nav-link:hover {
        color: #28a745;
        /* verde claro */
    }



    /* Ajustando a exibição do dropdown para mobile */
    .navbar-nav .dropdown-menu {
        position: static;
        display: none;
        /* Escondido por padrão */
        box-shadow: none;
        background: white;
        /* Fundo branco para contraste */
        border-radius: 5px;
        padding: 10px 0;
    }

    /* Exibir o submenu ao clicar no mobile */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    /* Remover hover para mobile */
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none;
    }

    /* Ajuste para garantir que os itens tenham espaçamento */
    .navbar-nav .dropdown-item {
        padding: 10px 15px;
        color: #333;
    }
}


/* Footer todas as páginas */
.footer-section {
    background-color: #1e1e1e;
    /* Fundo escuro */
    color: #bfbfbf;
    /* Texto claro */
}

.footer-logo {
    max-width: 150px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bfbfbf;
    max-width: 700px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #28a745;
    /* Verde padrão*/
    margin-top: 5px;
}

.footer-menu li,
.footer-blog li {
    margin-bottom: 10px;
}

.footer-menu a,
.footer-blog a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-blog a:hover {
    color: #28a745;
    /* Verde no hover */
}

.footer-blog span {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #FED525;
    /* Verde dos ícones */
    margin-right: 8px;
}

.footer-form {
    display: flex;
}

.footer-form .form-control {
    border: 1px solid #444;
    border-radius: 5px 0 0 5px;
    background-color: #333;
    color: #bfbfbf;
}

.footer-form .btn {
    border-radius: 0 5px 5px 0;
    background-color: #28a745;
    border: none;
    color: white;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #777;
    margin-top: 20px;
}

.footer-bottom a {
    color: #bfbfbf;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #28a745;
    /* Verde no hover */
}


/*Cards HOME*/
.card-custom {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.card-custom:hover .card-img {
    filter: brightness(1.2);
}

.text-overlay {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.icon-top {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #cddc39;
    padding: 10px;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.icon-bottom {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));

}



/* A EMPRESA */

/* Seção Sobre a Empresa */
.about-section {
    background-color: #f9f9f9;
    padding: 90px 0;
}

.about-image {
    border-radius: 10px;
    max-width: 100%;
}

.about-list {
    list-style: none;
    padding: 0;
    color: #333;
}

.about-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.about-list i {
    color: #28a745;
    margin-right: 8px;
}

/* Missão, Visão e Valores */
.mission-vision-values .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.mission-vision-values .card:hover {
    transform: scale(1.05);
}

.mission-vision-values .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.mission-vision-values .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 30px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #28a745;
    z-index: 0;
}

.timeline-box {
    width: 22%;
    height: 200px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    z-index: 1;
}

.timeline-date {
    font-size: 20px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 10px;
}

.timeline-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.timeline-text {
    font-size: 14px;
    color: #555;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
    }

    .timeline-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-container::before {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}




/* Equipe */
.team-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.team-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-image {
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.team-role {
    font-size: 1rem;
    color: #28a745;
}

/* Responsividade */
@media (max-width: 768px) {
    .mission-vision-values .card {
        margin-bottom: 20px;
    }

    .team-card {
        margin-bottom: 20px;
    }
}




/* PARA EMPRESAS */
/* Cabeçalho da Página */
.page-header {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Seção Benefícios */
.benefits-section .benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-section .benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.benefits-section .benefits-list i {
    color: #28a745;
    margin-right: 8px;
}

/* Seção Soluções */
.solutions-section .solution-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.solutions-section .solution-card:hover {
    transform: translateY(-5px);
}

.solutions-section .solution-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.solutions-section .solution-description {
    color: #666;
}

/* Seção Cases de Sucesso */
.cases-section .case-card {
    text-align: center;
    height: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #f9f9f9;
}

.cases-section .case-card:hover {
    transform: translateY(-5px);
}

.cases-section .case-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.cases-section .case-description {
    color: #666;
}

/* Seção Formulário de Contato */
/* .contact-form-section {
    background-color: #f8f9fa;
} */

.contact-form-section .case-card {
    text-align: left;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    height: 100%;
    overflow: hidden;
}

.contact-form-section .case-card iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    border: 0 !important;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.contact-form-section .case-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

.contact-form-section .case-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Garantir que as colunas mantenham suas larguras */
.contact-form-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.contact-form-section .row {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}

/* Responsividade para telas menores */
@media (max-width: 767px) {
    .contact-form-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Seção de Contato */
.contact-section {
    background-color: #f8f9fa;
    position: relative;
}

.contact-section .section-title {
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-section .section-heading {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section .section-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Informações de Contato */
.contact-info {
    background: white;
    padding: 30px !important;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details i {
    width: 20px;
    text-align: center;
}

/* Container do Mapa */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100% !important;
    height: 300px !important;
    border: 0 !important;
    border-radius: 10px !important;
    display: block;
    max-width: 100%;
}

/* Container do Formulário */
.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form .form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-label i {
    color: #28a745;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Responsividade */
@media (max-width: 991px) {

    .contact-info,
    .contact-form-container {
        margin-bottom: 30px;
    }

    .map-container iframe {
        height: 250px !important;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form-container {
        padding: 20px;
    }

    .contact-section .section-heading {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 200px !important;
    }
}

/* Garantir que o iframe não ultrapasse os limites da coluna */
.contact-section .col-lg-6 {
    position: relative;
    overflow: hidden;
}

.contact-section iframe {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-section .text-center {
        text-align: center;
    }

    .solutions-section .solution-card {
        margin-bottom: 20px;
    }

    .cases-section .case-card {
        margin-bottom: 20px;
    }
}


/*PARA VOCÊ */

/* Cabeçalho da Página */
.page-header {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Benefícios para Cliente */
.client-benefits .benefits-list {
    list-style: none;
    padding: 0;
}

.client-benefits .benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.client-benefits .benefits-list i {
    color: #28a745;
    margin-right: 8px;
}

/* Produtos em Destaque */
.featured-products .product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.featured-products .product-card:hover {
    transform: translateY(-5px);
}

.featured-products .product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.featured-products .product-description {
    color: #666;
}

/* Depoimentos */
.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
    color: #28a745;
}

/* Chamada para Ação */
.call-to-action {
    background: #3b7d1c;
    padding: 60px 0;
    color: white;
}

.call-to-action .btn-light {
    color: #333;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .client-benefits .text-center {
        text-align: center;
    }

    .featured-products .product-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
}


/* COMEX */

/* Cabeçalho da Página */
.page-header {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Seção Serviços */
.services-section .services-list {
    list-style: none;
    padding: 0;
}

.services-section .services-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.services-section .services-list i {
    color: #28a745;
    margin-right: 8px;
}

/* Vantagens */
.advantages-section .advantage-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.advantages-section .advantage-card:hover {
    transform: translateY(-5px);
}

.advantages-section .advantage-icon {
    /* width: 60px; */
    height: 60px;
    margin-bottom: 15px;
}

.advantages-section .advantage-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.advantages-section .advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Parcerias */
.partners-section .partner-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Chamada para Ação */
.contact-section {
    background: #f6f6f6;
    padding: 60px 0;
    color: #333;
}

.contact-section .btn-light {
    color: #333;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-section .text-center {
        text-align: center;
    }

    .advantages-section .advantage-card,
    .partners-section .partner-logo {
        margin-bottom: 20px;
    }
}

/* Cabeçalho da Página */
.page-header {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}


/* BLOG */
/* Cabeçalho da Página */
.page-header {
    background: linear-gradient(to right, #3b7d1c, #6bbf34, #f7d51c);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Blog Section */
.blog-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Cards clicáveis */
.blog-card {
    display: block;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

/* O HTML do card usa "blog-card" JUNTO com a classe utilitária "rounded"
   do Bootstrap, que aplica !important com um raio menor (6px). Como o
   Bootstrap é carregado DEPOIS do nosso CSS na página, um simples
   "!important" no ".blog-card" sozinho não vencia (mesma especificidade,
   e no empate quem carrega por último ganha) - por isso o raio ficava
   menor que o da imagem (15px) e sobrava um canto branco no topo do
   card. Usar ".blog-card.rounded" (duas classes) tem especificidade
   maior que ".rounded" sozinho, então vence independente da ordem de
   carregamento dos arquivos.
*/
.blog-card.rounded {
    border-radius: 15px !important;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: bold;
    color: #3b7d1c;
    /* Cor verde corporativa */
    background-color: rgba(59, 125, 28, 0.1);
    /* Verde mais suave */
    padding: 5px 15px;
    border-radius: 20px;
    width: fit-content;
}

.blog-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.btn-purple {
    background-color: #6a1b9a;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-purple:hover {
    background-color: #4a148c;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 20px;
    }

    .blog-title {
        font-size: 0.9rem;
    }
}

/* CONTATOS */

/* Cabeçalho da Página (sem fundo verde) */


.page-header-light {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.page-header-light h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Seção de Contato */
.contact-section .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3b7d1c;
    margin-bottom: 20px;
}

.contact-info li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #3b7d1c;
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Formulário de Contato */
.form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3b7d1c;
    box-shadow: 0 0 5px rgba(59, 125, 28, 0.5);
}

/* Botão */
.btn-success {
    background-color: #3b7d1c;
    border: none;
    font-size: 1.2rem;
    padding: 10px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #2a5c10;
}

/* Redes Sociais */
.social-icons a {
    display: inline-block;
    font-size: 1.8rem;
    color: #3b7d1c;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #28a745;
}

/* Seção do Mapa */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-section .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-info li {
        font-size: 1rem;
    }

    .contact-section .section-title {
        text-align: center;
    }

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

/* SAC */

/* Cabeçalho da Página (sem fundo verde) */
.page-header-light {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.page-header-light h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Perguntas Frequentes (FAQ) */
.accordion-button {
    background-color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    color: #3b7d1c;
}

.accordion-button:hover {
    background-color: #f7f7f7;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background: linear-gradient(90deg, #3b7d1c 0%, #2a5c10 100%);
    border-color: #2a5c10;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    border-color: #3b7d1c;
    box-shadow: 0 0 0 0.15rem rgba(59, 125, 28, 0.35);
}

.accordion-body {
    font-size: 1rem;
    color: #555;
}

/* Seção de Contato */
.contact-section .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3b7d1c;
    margin-bottom: 20px;
}

.contact-info li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #3b7d1c;
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Formulário de Contato */
.form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3b7d1c;
    box-shadow: 0 0 5px rgba(59, 125, 28, 0.5);
}

/* Botão */
.btn-success {
    background-color: #3b7d1c;
    border: none;
    font-size: 1.2rem;
    padding: 10px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #2a5c10;
}

/* Menus WhatsApp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: white;
}
@media (max-width: 575.98px) {
    .whatsapp-float {
        bottom: 90px;
        right: 16px;
        width: 54px;
        height: 54px;
        line-height: 54px;
        font-size: 26px;
    }
}


/* ícones rodapé */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #25D366;
    /* ou outra cor que combine com o tema */
}

/*forms*/
.mb-3 {
    text-align: left;
}


/* Responsividade */
@media (max-width: 768px) {
    .contact-info li {
        font-size: 1rem;
    }

    .accordion-button {
        font-size: 1rem;
    }
}

/* Estilos específicos para ícones da página Para Você */
.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-image {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.benefit-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Estilos para ícones de features */
.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.feature-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Estilos para ícones de serviços */
.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsividade para ícones */
@media (max-width: 768px) {

    .benefit-card,
    .feature-card {
        margin-bottom: 20px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
