@import url('https://fonts.googleapis.com/css2?family=Jomhuria&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jomhuria&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body{
    background-color: #1F2937;
}

html {
    scroll-behavior: smooth;
}

:root {
    --azul-escuro: #07011B;
    --verde-claro: #00C851;
    --laranja-claro: #FF8000;
}

/* === ANIMAÇÕES GERAIS === */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);   /* vem de baixo */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === NAV ===*/

nav {
    animation: fadeInDown 0.8s ease forwards;
}

.nav-logo {
    animation: fadeInDown 0.9s ease forwards;
}

.nav-links a {
    animation: fadeInUp 0.85s ease forwards;
}

.nav-links a:nth-child(1) { animation-delay: 100ms; }
.nav-links a:nth-child(2) { animation-delay: 250ms; }
.nav-links a:nth-child(3) { animation-delay: 400ms; }
.nav-links a:nth-child(4) { animation-delay: 550ms; }

.nav-actions .btn {
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 700ms;
}

/* === ANIMAÇÕES DAS SEÇÕES === */

/* HOME */
.home .fooder-texto h1 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.home .fooder-texto p {
    animation: fadeUp 0.95s ease forwards;
    animation-delay: 0.55s;
}

.home .botoes a {
    animation: fadeUp 0.9s ease forwards;
}

.home .botoes a:first-child { animation-delay: 0.8s; }
.home .botoes a:last-child  { animation-delay: 1s; }

.home .fooder-img img {
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.45s;
}

/* HERO */
.hero .hero-texto h1 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.hero .hero-texto p {
    animation: fadeUp 0.95s ease forwards;
    animation-delay: 0.5s;
}

.hero .hero-texto p.destaque {
    animation: fadeUp 0.95s ease forwards;
    animation-delay: 0.65s;
}

.hero .hero-img img {
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.4s;
}

/* BUSCA */
.busca h2 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.busca p {
    animation: fadeUp 0.95s ease forwards;
    animation-delay: 0.45s;
}

nav,
.nav-logo,
.nav-links a,
.nav-actions .btn,
.home .fooder-texto h1,
.home .fooder-texto p,
.home .botoes a,
.home .fooder-img img,
.hero .hero-texto h1,
.hero .hero-texto p,
.hero .hero-img img,
.busca h2,
.busca p {
    opacity: 0;
}

nav,
.nav-logo,
.nav-links a,
.nav-actions .btn,
.home .fooder-texto h1,
.home .fooder-texto p,
.home .botoes a,
.home .fooder-img img,
.hero .hero-texto h1,
.hero .hero-texto p,
.hero .hero-img img,
.busca h2,
.busca p {
    animation-fill-mode: forwards;
}

/* ── NAVBAR ── */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100px;
    background-color: var(--azul-escuro);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo .logo img {
    width: 80px;
    height: 70px;
    object-fit: contain;
}

.logo-name {
    font-family: 'Jomhuria', serif;
    font-size: 2.5rem;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Jomhuria', serif;
    font-size: 1.8rem;
    font-weight: 300;
    transition: color .2s;
    color: #fff;
}

.nav-links a:hover {
    color: var(--laranja-claro);
}

.nav-links a.ativo {
    color: var(--laranja-claro) !important;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-btns-mobile {
    display: none;
}

.nav-actions.aberto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background-color: var(--azul-escuro);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 0 20px 24px;
    z-index: 999;
}

.btn {
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #22c55e;
    color: #22c55e;
}

.btn-outline:hover {
    background: #22c55e;
    color: #fff;
}

/* ── HOME ── */
.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 100vh;
    background-color: #1F2937;
    gap: 40px;
    overflow: hidden;
}

.fooder-texto {
    max-width: 550px;
    color: white;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

.fooder-texto h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.verde {
    color: #16A34A;
}

.laranja {
    color: orange;
}

.fooder-texto p {
    font-size: 18px;
    color: #cfd8dc;
    margin-bottom: 30px;
}

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

.botoes a {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: bold;
}

.botao-laranja {
    background: #ff8a00;
    color: white;
}

.botao-laranja:hover {
    background: orange;
}

.botao-verde {
    background: #1f7a4d;
    color: white;
}

.botao-verde:hover {
    background: #289c63;
}

.fooder-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fooder-img img {
    height: 300px;
    width: 520px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 10px 10px 23px -1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 23px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 23px -1px rgba(0, 0, 0, 0.75);
}

/* ── NOSSOS SERVIÇOS ── */
.servicos {
    padding: 64px 40px;
    background-color: #ffffff;
    margin: 0 auto;
}

.servicos-header {
    text-align: center;
    margin-bottom: 48px;
}

.servicos-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.servicos-header p {
    font-size: 0.95rem;
    color: #555;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── BASE CARD ── */
.card {
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-servico {
    background: #e8eaed;
}

.card-pilar {
    background: #f5f5f5;
    color: #333;
    padding: 30px;
    width: 280px;
    text-align: left;
}

.card-pilar .icon {
    background: #1fbf75;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-grey {
    background: #4B5563;
}

.icon-dark {
    background: #4B3D3D;
}

.icon-green {
    background: #16A34A;
}

.icon-orange {
    background: #FF8000;
}

.icon-blue {
    background: #0700C8;
}

.icon-white {
    background: #ffffff;
}

.card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.card-link {
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 8px;
}

.link-dark {
    color: #555;
}

.link-green {
    color: #16A34A;
}

.link-orange {
    color: #f97316;
}

.link-blue {
    color: #3b82f6;
}

/* ── SOBRE NÓS ── */
.sobre {
    background-color: #0d2318;
    padding: 60px 8%;
    text-align: center;
    color: #ffffff;
}

.sobre-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.sobre-logo img {
    width: 350px;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px;
}

.sobre-texto h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
}

/* ── PILARES ── */
.pilares {
    margin-top: 60px;
}

.pilares h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pilares-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pilar-card {
    background: #FFFFFF;
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
}

.pilar-topo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pilar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #293e34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pilar-topo h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.pilar-card p {
    font-size: 0.88rem;
    line-height: 1.65;
}

.valores-lista {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.valores-lista li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── COMO TRABALHAMOS ── */
.como-trabalhamos {
    background-color: #1F2937;
    padding: 70px 40px;
    text-align: center;
}

.como-header {
    margin-bottom: 56px;
}

.como-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.como-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.como-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.como-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.como-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.como-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.como-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 240px;
}

/* ── CULTURA ── */
.cultura {
    background-color: #FFFFFF;
}

.cultura-container {
    margin: 30px 30px;
    border-radius: 20px;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 50px;
}

.texto {
    max-width: 500px;
}

.texto h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.texto p {
    color: #555;
    margin-bottom: 30px;
}

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

.icon {
    height: 45px;
    background: #d1fae5;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
}

.item h4 {
    margin: 0;
    font-size: 16px;
}

.item p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
}

.imagem img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ── NOSSO IMPACTO ── */
.impacto {
    min-height: 500px;
    background-color: #1F2937;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.textoImpacto {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.textoImpacto h2 {
    font-size: 35px;
    margin-bottom: 8px;
}

.textoImpacto h5 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
}

.conteudoImpacto {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.conteudoImpacto .cardImpacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.conteudoImpacto .cardImpacto img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.conteudoImpacto .cardImpacto:nth-child(1) h2 {
    color: #00C851;
}

.conteudoImpacto .cardImpacto:nth-child(2) h2 {
    color: #33B679;
}

.conteudoImpacto .cardImpacto:nth-child(3) h2 {
    color: #3B82F6;
}

.conteudoImpacto .cardImpacto:nth-child(4) h2 {
    color: #22C55E;
}

.conteudoImpacto .cardImpacto h2 {
    font-size: 1.8rem;
}

.conteudoImpacto .cardImpacto h4 {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 400;
}

/* ── FOOTER ── */
.footer {
    background-color: var(--azul-escuro);
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-col {
    width: 250px;
}

.footer-col:last-child {
    width: 300px;
}

.footer h3 {
    margin-bottom: 10px;
}

.footer h4 {
    margin-bottom: 10px;
    color: var(--laranja-claro);
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color .2s;
}

.footer ul li a:hover {
    color: var(--verde-claro);
}

.social a {
    margin-right: 10px;
    text-decoration: none;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
}

/* ── WIDGET DE ACESSIBILIDADE ── */

/* === ANIMAÇÕES DO WIDGET DE ACESSIBILIDADE === */

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Botão flutuante (toggle) */
.acess-toggle {
    animation: fadeInUpScale 0.7s ease forwards;
    animation-delay: 800ms;           /* aparece depois das outras animações da página */
    opacity: 0;
}

/* Painel de acessibilidade */
.acess-painel {
    animation: fadeInUpScale 0.5s ease forwards;
    opacity: 0;
    transform-origin: bottom right; 
}

.acess-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.acess-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #22c55e;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: background .2s, transform .2s;
}

.acess-toggle:hover {
    background: #16a34a;
    transform: scale(1.08);
}

.acess-painel {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 16px;
}

.acess-painel.aberto {
    display: flex;
}

.acess-painel h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.acess-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.acess-item span {
    font-size: 0.85rem;
    color: #374151;
}

.acess-botoes {
    display: flex;
    gap: 6px;
}

.acess-botoes button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1.5px solid #d1d5db;
    background: #f9fafb;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.acess-botoes button:hover {
    background: #e5e7eb;
}

.acess-toggle-btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1.5px solid #22c55e;
    background: transparent;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.acess-toggle-btn.ativo {
    background: #22c55e;
    color: #fff;
}

.acess-reset {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
}

.acess-reset:hover {
    background: #e5e7eb;
}

/* ── ALTO CONTRASTE ── */
body.alto-contraste {
    filter: contrast(1.5) brightness(0.9);
}

/* ── LEITURA DE TELA — destaca elemento com foco ── */
body.leitura-ativa *:focus {
    outline: 3px solid #f97316 !important;
    outline-offset: 3px !important;
}

body.leitura-ativa a,
body.leitura-ativa button,
body.leitura-ativa input,
body.leitura-ativa select,
body.leitura-ativa textarea {
    outline: 2px dashed #f97316;
    outline-offset: 2px;
}

/* ══════════════════════════════════════════════════
   ABAPYRA TECH — Modal de Autenticação
   ══════════════════════════════════════════════════ */

/* ── OVERLAY ── */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    /* ← CORREÇÃO: era center, agora flex-start para modal alto não ser cortado */
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: authOverlayIn .2s ease;
}

.auth-overlay.ativo {
    display: flex !important;
}

@keyframes authOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── MODAL ── */
.auth-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    /* ← CORREÇÃO: limita altura do modal à viewport */
    overflow-y: auto;
    /* ← CORREÇÃO: scroll interno quando conteúdo ultrapassa a altura */
    padding: 36px 32px 28px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    animation: authModalIn .28s cubic-bezier(.34, 1.56, .64, 1);
    /* Garante que o modal fique centrado verticalmente quando couber na tela */
    margin: auto;
}

@keyframes authModalIn {
    from {
        opacity: 0;
        transform: scale(.92) translateY(20px);
    }

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

/* ── BOTÃO FECHAR ── */
.auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.auth-close:hover {
    background: #e5e7eb;
    color: #111827;
}

/* ── MARCA / LOGO ── */
.auth-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.auth-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.auth-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul-escuro);
}

/* ── ABAS ── */
.auth-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 18px;
    position: relative;
}

.auth-tab {
    flex: 1;
    padding: 9px 0;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color .25s;
}

.auth-tab.active {
    color: #07011B;
}

/* Indicador deslizante */
.auth-tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

/* ── PAINÉIS ── */
.auth-painel {
    display: none;
}

.auth-painel.active {
    display: block;
}

.auth-subtitle {
    font-size: 0.83rem;
    color: #6b7280;
    margin-bottom: 18px;
}

/* ── FORMULÁRIO ── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.auth-field label {
    font-size: 0.80rem;
    font-weight: 600;
    color: #374151;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 13px;
    color: #9ca3af;
    font-size: 0.85rem;
    pointer-events: none;
}

.auth-input-wrap input {
    width: 100%;
    padding: 11px 42px 11px 38px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.86rem;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.auth-input-wrap input:focus {
    border-color: var(--verde-claro);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 200, 81, .12);
}

/* ── OLHO (ver senha) ── */
.auth-olho {
    position: absolute;
    right: 11px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    font-size: 0.88rem;
    transition: color .2s;
}

.auth-olho:hover {
    color: #374151;
}

/* ── FORÇA DA SENHA ── */
.senha-forca {
    margin-top: 5px;
}

.forca-barra {
    display: flex;
    gap: 4px;
    margin-bottom: 3px;
}

.forca-barra span {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #e5e7eb;
    transition: background .3s;
}

#forca-texto {
    font-size: 0.72rem;
    color: #6b7280;
}

/* ── OPÇÕES (lembrar / esqueci) ── */
.auth-opcoes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.80rem;
}

/* ── CHECKBOX ── */
.auth-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.80rem;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
}

.auth-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--verde-claro);
    cursor: pointer;
    flex-shrink: 0;
}

.auth-check-termos {
    align-items: flex-start;
}

/* ── LINK ── */
.auth-link {
    color: var(--verde-claro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.80rem;
    transition: opacity .2s;
}

.auth-link:hover {
    opacity: .75;
    text-decoration: underline;
}

/* ── BOTÃO PRINCIPAL ── */
.auth-btn-submit {
    margin-top: 2px;
    width: 100%;
    padding: 12px;
    background: var(--verde-claro);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(0, 200, 81, .28);
}

.auth-btn-submit:hover {
    background: #00a840;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, .38);
}

.auth-btn-submit:active {
    transform: translateY(0);
}

/* ── MENSAGENS DE FEEDBACK ── */
.auth-msg {
    font-size: 0.80rem;
    font-weight: 500;
    border-radius: 8px;
    min-height: 0;
    transition: all .2s;
}

.auth-msg:not(:empty) {
    padding: 8px 12px;
}

.auth-msg--erro {
    background: #fef2f2;
    color: #dc2626;
}

.auth-msg--sucesso {
    background: #f0fdf4;
    color: #16a34a;
}

.auth-msg--info {
    background: #eff6ff;
    color: #2563eb;
}

/* ── DIVISOR ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    color: #9ca3af;
    font-size: 0.75rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* ── BOTÕES SOCIAIS ── */
.auth-sociais {
    display: flex;
    gap: 10px;
}

.auth-social-btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.80rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .2s, border-color .2s, transform .15s;
}

.auth-social-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* ── LINK PARA TROCAR ABA ── */
.auth-trocar {
    text-align: center;
    font-size: 0.80rem;
    color: #6b7280;
    margin-top: 16px;
}

.auth-link-btn {
    background: none;
    border: none;
    color: var(--verde-claro);
    font-size: 0.80rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    padding: 0;
    transition: opacity .2s;
}

.auth-link-btn:hover {
    opacity: .75;
    text-decoration: underline;
}

.acess-toggle i {
    color: #ffffff;
}

/* ── MENU TOGGLE ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all .3s;
}

/* ── RESPONSIVO ── */

@media (max-width: 1024px) {
    .como-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cultura-container {
        flex-direction: column;
        align-items: center;
    }

    .imagem img {
        width: 100%;
    }

    .pilares-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* NAVBAR */
    nav {
        position: fixed;
        padding: 0 20px;
        height: 70px;
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        background-color: var(--azul-escuro);
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 24px 20px;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.aberto {
        display: flex;
    }

    .nav-actions {
        display: none !important;
    }

    .nav-btns-mobile {
        display: flex;
        gap: 10px;
        margin-top: 8px;
    }

    .nav-btns-mobile .btn-outline {
        background: transparent;
        border: 1.5px solid #22c55e;
        color: #22c55e;
    }

    .nav-btns-mobile .btn-outline:hover {
        background: #22c55e;
        color: #fff;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-logo .logo img {
        width: 50px;
        height: 45px;
    }

    .logo-name {
        font-size: 1.6rem;
    }
    
    /* HOME */
    .home {
        flex-direction: column;
        padding: 100px 6%;
        min-height: auto;
        text-align: center;
    }

    .fooder-texto {
        max-width: 100%;
    }

    .fooder-texto h1 {
        font-size: 32px;
    }

    .botoes {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fooder-img img {
        width: 100%;
        height: auto;
    }

    /* SERVIÇOS */
    .servicos {
        padding: 48px 20px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    /* SOBRE */
    .sobre-logo img {
        width: 220px;
    }

    .pilares-grid {
        grid-template-columns: 1fr;
    }

    /* COMO TRABALHAMOS */
    .como-trabalhamos {
        padding: 48px 20px;
    }

    .como-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* CULTURA */
    .cultura-container {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .imagem img {
        width: 100%;
    }

    .texto {
        max-width: 100%;
    }

    /* IMPACTO */
    .conteudoImpacto {
        gap: 40px;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        gap: 28px;
    }

    .footer-col {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .fooder-texto h1 {
        font-size: 26px;
    }

    .como-grid {
        grid-template-columns: 1fr;
    }

    .conteudoImpacto {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .botoes {
        flex-direction: column;
        align-items: center;
    }

    .botoes a {
        width: 100%;
        text-align: center;
    }
}