/* ==========================
   GLOBAL
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

/* ==========================
   CONTAINERS
========================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================
   HEADER
========================== */
.topo {
    background: #fff;
    padding: 15px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #1d2b3a;
    font-weight: 500;
}

.btn-monitoramento {
    background: #009e60;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
}

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

.hero {
    height: 88vh;
    position: relative;
    background: url('../img/hero.png') center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(90, 0, 120, 0.75), rgba(0, 90, 140, 0.75));
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #1ddf96;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    margin: 20px 0 40px;
}

.botoes-hero {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.verde {
    background: #0aa866;
    color: #fff;
}

.outline {
    border: 2px solid #fff;
    color: #fff;
}

.cinza {
    background: #6c7a89;
    color: #fff;
}

/* ==========================
   RODAPE
========================== */

.rodape {
    padding: 30px 0;
    text-align: center;
    background: #f1f1f1;
}

/* ==========================
   EMPRESA
========================== */

.empresa {
    padding: 20px 40px;
}

.empresa-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.empresa-left {
    flex: 2;
}

.empresa-left h2 {
    font-size: 44px;
    color: #1d2b3a;
    margin-bottom: 15px;
}

.empresa-desc {
    color: #555;
    margin-bottom: 45px;
    max-width: 720px;
    line-height: 1.7;
}

.empresa-conteudo {
    display: flex;
    gap: 45px;
}

.empresa-texto {
    flex: 1.3;
}

.empresa-texto h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.empresa-texto p {
    color: #555;
    line-height: 1.7;
}

.empresa-imagem {
    flex: 1;
}

.empresa-imagem img {
    width: 100%;
    height: 280px;
    border-radius: 18px;
    object-fit: cover;
}

.empresa-numeros {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.empresa-numeros strong {
    font-size: 36px;
    color: #0aa866;
    font-weight: 700;
}

.empresa-numeros span {
    display: block;
    font-size: 15px;
    color: #666;
}

/* ==========================
   CARDS LADO DIREITO
========================== */

.empresa-right {
    padding: 60px 40px;
    flex: 1;
    position: relative;
}

.empresa-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.empresa-card:last-child {
    margin-bottom: 0;
}

.empresa-card.missao {
    margin-top: -70px;
}

.empresa-card h4 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #1d2b3a;
}

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

/* ==========================
   RESPONSIVO EMPRESA
========================== */

@media(max-width: 900px) {
    .empresa-wrapper {
        flex-direction: column;
    }

    .empresa-conteudo {
        flex-direction: column;
    }

    .empresa-right {
        margin-top: 40px;
    }

    .empresa-card.missao {
        margin-top: 0;
    }

    .empresa-numeros {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================
   EXPERTISE
========================== */

.expertise {
    padding: 40px 40px;
    background: #f9fafb;
}

.expertise-titulo {
    font-size: 38px;
    color: #1d2b3a;
    text-align: center;
    margin-bottom: 50px;
}

.expertise-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
    margin-bottom: 15px;
    color: #0aa866;
}

.expertise-icon svg {
    width: 34px;
    height: 34px;
}

@media(max-width: 900px) {
    .expertise-wrapper {
        flex-direction: column;
    }
}

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

.depoimentos {
    padding: 0px 0px;
    background: #ffffff;
}

.depoimentos-titulo {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1d2b3a;
}

.depoimentos-wrapper {
    display: flex;
    gap: 30px;
}

.depoimento-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    transition: 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-6px);
}

.depoimento-icon {
    color: #0aa866;
    margin-bottom: 15px;
}

.depoimento-texto {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.depoimento-autor strong {
    display: block;
    font-size: 16px;
    color: #1d2b3a;
}

.depoimento-autor span {
    display: block;
    font-size: 14px;
    color: #666;
}

.depoimento-autor small {
    display: block;
    font-size: 13px;
    color: #999;
}

@media (max-width: 900px) {
    .depoimentos-wrapper {
        flex-direction: column;
    }
}

.depoimento-stars {
    color: #c2d421;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 10px 0 15px 0;
}

/* ==========================
   SUSTENTABILIDADE
========================== */

#sustentabilidade {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.sustentabilidade-container {
    background: #059669;
    border-radius: 20px;
    padding: 50px 60px;
    width: 100%;
    max-width: 1200px;
    color: white;
    text-align: center;
}

.sustentabilidade-blocos {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.sustentabilidade-blocos .bloco {
    width: 30%;
}

.sustentabilidade-blocos .icone {
    font-size: 50px;
    margin-bottom: 15px;
}

/* ==========================
   SOLUÇÃO CUSTOMIZADA
========================== */

#solucao_customizada {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 0;
}

.solucao_customizada-container {
    background: #059669;
    border-radius: 20px;
    padding: 50px 60px;
    width: 100%;
    max-width: 1200px;
    color: white;
    text-align: center;
}

.solucao_customizada-blocos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

.solucao_customizada-blocos .bloco {
    width: 30%;
}

.solucao_customizada-blocos .icone {
    font-size: 50px;
    margin-bottom: 15px;
}

/* ==========================
   SOLUÇÕES
========================== */

#solucoes,
#sucesso {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.container-solucoes,
.container-sucesso {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.titulo-solucoes,
.titulo-sucesso {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.titulo-solucoes span,
.titulo-sucesso span {
    color: #059669;
}

.subtitulo-solucoes,
.subtitulo-sucesso {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #555;
}

.linha-solucao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 50px;
}

.linha-solucao.invertido {
    flex-direction: row-reverse;
}

.texto-solucao {
    flex: 1;
}

.texto-solucao h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.descricao-solucao {
    color: #444;
    margin-bottom: 20px;
}

.texto-solucao ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.texto-solucao ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.imagem-solucao {
    flex: 1;
}

.imagem-solucao img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-solucao {
    background: #059669;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.btn-solucao:hover {
    background: #047857;
}

/* ==========================
   CASOS DE SUCESSO – ICONES
========================== */

.service-box {
    padding: 10px 0;
    max-width: 650px;
    font-family: "Inter", Arial, sans-serif;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: #D8F3E1;
    color: #2BB673;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-wrapper i {
    font-size: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F2E46;
    margin-bottom: 12px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5A67;
    margin-bottom: 20px;
}

.service-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LISTA COM ÍCONE */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Remover marcador anterior */
.service-list li::before {
    content: none !important;
}

/* Ícones corretos */
.service-list svg,
.service-subtitle svg {
    width: 20px !important;
    height: 20px !important;
    color: #059669 !important;
    flex-shrink: 0;
}

/* ==========================
   BADGE
========================== */

.badge-setor {
    display: inline-block;
    background-color: #E6F6EC;
    color: #1B7F3A;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 8px;
}


/* ==========================
   Ícone de localização para Casos de Sucesso 
========================== */

/* ===========================================
   ICONES VIA CSS (MASK-IMAGE)
=========================================== */

/* Cor padrão dos ícones */
.icon-pin,
.icon-check,
.icon-trend {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #059669;
    /* verde */
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

/* -------------------------------
   PIN — lucide-map-pin
-------------------------------- */
.icon-pin {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* -------------------------------
   CHECK — lucide-circle-check-big
-------------------------------- */
.icon-check {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

/* -------------------------------
   TREND — lucide-trending-up
-------------------------------- */
.icon-trend {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='3 17 9 11 13 15 21 7'/%3E%3Cpolyline points='14 7 21 7 21 14'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='3 17 9 11 13 15 21 7'/%3E%3Cpolyline points='14 7 21 7 21 14'/%3E%3C/svg%3E");
}

/* ================================
   MENU DESKTOP
================================ */

.topo {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.topo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
        /* reforça que nada quebra */
}

.menu {
    display: flex;
        gap: 25px;
        align-items: center;
        white-space: nowrap;
        /* impede quebra */
}

/* Permite quebra SOMENTE no botão verde */
.menu .btn-monitoramento {
    white-space: normal !important;
    /* libera quebra */
    max-width: 180px;
    /* opcional: controla largura para quebrar em 2 linhas */
    text-align: center;
}

.menu a {
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: 0.2s ease;
}

.menu a:hover {
    color: #059669;
}

.btn-monitoramento {
    padding: 8px 14px;
    background: #059669;
    color: #fff !important;
    border-radius: 8px;
}

/* BOTÃO MENU (HAMBÚRGUER) */
.menu-toggle {
    display: none;
    /* só aparece no mobile */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
    position: relative;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #059669;
    transition: 0.3s;
}

/* ANIMAÇÃO DO X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE --- */
@media (max-width: 900px) {

    /* MOSTRAR BOTÃO NO MOBILE */
    .menu-toggle {
        display: flex;
        /* <<< ESSENCIAL — faz o botão aparecer */
    }

    /* MENU DROPDOWN */
    .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 80px;
        width: 220px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 9000;
    }

    .menu.active {
        display: flex;
    }
}

/* ==========================
   FOOTER
========================== */
.footer {
    background: #111827;
    /* gray-900 */
    color: #e5e7eb;
    /* gray-200 */
    padding: 60px 20px 30px;
    margin-top: 50px;
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUNAS */
.footer-col h4,
.footer-col h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #d1d5db;
    /* gray-300 */
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: white;
}

/* LOGO E TEXTO */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ÍCONES SOCIAIS */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #d1d5db;
    font-size: 22px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #10b981;
    /* green-500 */
}

/* RODAPÉ FINAL */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid #1f2937;
    /* gray-800 */
    color: #9ca3af;
    /* gray-400 */
    font-size: 14px;
}

/* ==========================
   RESPONSIVO
========================== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ==========================
   SEÇÃO CONTATO
========================== */
.contato-section {
    padding: 10px 0;
    background: #fff;
}

/* ==========================
   CONTAINER CENTRAL DA SEÇÃO
========================== */
.contato-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* CENTRALIZA */
    padding: 0 20px;
    /* RESPIRO NAS LATERAIS */
}

/* TÍTULO */
.contato-header {
    max-width: 600px;
    margin: 0 auto 50px;
    /* CENTRALIZA */
    text-align: center;
    /* Centraliza texto */
}

.contato-header .underline {
    margin: 15px auto;
}

.contato-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.contato-header h2 span {
    color: #059669;
}

.contato-header p {
    margin-top: 20px;
    color: #475569;
    line-height: 1.7;
}

.underline {
    width: 50px;
    height: 4px;
    background: #059669;
    margin: 15px 0;
    border-radius: 2px;
}

/* ==========================
   GRID PRINCIPAL (2 COLUNAS)
========================== */
.contato-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* APENAS 2 */
    gap: 50px;
}
/* ==========================
   FORMULÁRIO
========================== */
.contato-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contato-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

/* LINHAS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #0f172a;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

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

.btn-enviar {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #059669;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-enviar:hover {
    background: #047857;
}

/* ==========================
   INFO + IMAGEM
========================== */
.contato-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contato-wrapper {
    width: 100%;
    max-width: 1200px;
    /* ajuste fino: 1100–1300 se quiser */
    margin: 0 auto;
}

.contato-info {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contato-info h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: #d1fae5;
    /* verde claro */
    color: #059669;
    /* verde principal */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: #059669;
    color: #ffffff;
    transition: 0.2s;
}

/* IMAGEM */
.contato-imagem img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* ==========================
   RESPONSIVO
========================== */
@media (max-width: 900px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

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

    .contato-header {
        text-align: center;
        margin: 0 auto 40px;
    }

    .underline {
        margin: 15px auto;
    }
}

.contato-link {
    color: #000000;
    /* preto */
    text-decoration: none;
    /* remove sublinhado */
}

.contato-link-white {
    color: #ffffff;
    /* preto */
    text-decoration: none;
    /* remove sublinhado */
}

.contato-link:hover {
    color: #000000;
    /* mantém preto no hover */
    text-decoration: underline;
    /* opcional */
}

/* HONEYPOT - CAMPO ANTI-SPAM */
.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

/* ALERTA DE FORMULÁRIO */
.form-alert {
    display: none;
    align-items: center;
    gap: 10px;
    background: #d1fae5;
    /* verde claro */
    color: #065f46;
    /* verde escuro */
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

.alert-icon {
    width: 26px;
    height: 26px;
    background: #059669;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ANIMAÇÃO */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    scroll-margin-top: 100px;
}

.footer-col ul li a {
    color: #d1d5db;
    /* gray-300 */
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0 20px;
}

.footer-logos img {
    width: 200px;
    /* largura fixa */
    max-width: 100%;
    height: auto;
    /* mantém proporção */
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-logos img:hover {
    opacity: 1;
    transform: scale(1.03);
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.language-switcher img {
    width: 26px;
    height: auto;
    cursor: pointer;
}

