* {
        box-sizing: border-box;
    }


    /* ================================
       NAVBAR
    ================================= */

    .navbar-content {
        width: 100%;
        height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 5px 20px;
    }


    /* ================================
       LOGO
    ================================= */

    .navbar-logo img {
        width: 170px;
        display: block;

        margin-top: 40px;

    }


    /* ================================
       LINKS DESKTOP
    ================================= */

    .navbar-links {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .navlink {
        position: relative;

        padding: 10px 12px;

        text-decoration: none;
        color: #000;

        font-family: 'Inter', sans-serif;
    }

    .navlink::after {
        content: "";

        position: absolute;

        bottom: 0;
        left: 50%;

        width: 0;
        height: 2px;

        background-color: #001EFF;

        transition: 0.2s;

        transform: translateX(-50%);
    }

    .navlink:hover {
        color: #001EFF;
    }

    .navlink:hover::after {
        width: 70%;
    }


    /* ================================
       DROPDOWN
    ================================= */

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;

        top: 100%;
        left: 0;

        display: none;
        flex-direction: column;

        min-width: 220px;

        background-color: white;

        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

        z-index: 1100;
    }

    .dropdown-menu a {
        padding: 12px 15px;

        text-decoration: none;
        color: #333;

        font-family: 'Inter', sans-serif;
    }

    .dropdown-menu a:hover {
        background-color: #f2f2f2;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }


    /* ================================
       BOTÃO DOE AGORA
    ================================= */

    .btn-doacao {
        margin: 0;
    }

    .btn-doacao button {
        display: flex;
        align-items: center;

        gap: 5px;

        background-color: #6CB46D;

        padding: 10px;

        border: none;
        border-radius: 5px;

        color: white;

        font-size: 16px;

        cursor: pointer;
    }

    .btn-doacao button:hover {
        background-color: #5da35e;
    }

    .img-btn-doacao {
        width: 18px;
        height: 18px;
    }


    /* ================================
       BOTÃO MENU MOBILE
    ================================= */

    .menu-mobile {
        display: none;

        border: none;
        background: none;

        font-size: 28px;

        cursor: pointer;
    }


    /* ================================
       OVERLAY
    ================================= */

    .drawer-overlay {
        position: fixed;

        inset: 0;

        background-color: rgba(0, 0, 0, 0.4);

        opacity: 0;
        visibility: hidden;

        transition: 0.3s;

        z-index: 999;
    }

    .drawer-overlay.ativo {
        opacity: 1;
        visibility: visible;
    }


    /* ================================
       DRAWER
    ================================= */

    .drawer-interacao {
        position: fixed;

        top: 0;
        right: 0;

        width: 400px;
        max-width: 85vw;

        height: 100vh;

        background-color: white;

        padding: 20px;

        transform: translateX(100%);

        transition: transform 0.3s ease;

        z-index: 1000;

        overflow-y: auto;
    }

    .drawer-interacao.ativo {
        transform: translateX(0);
    }


    /* ================================
       CABEÇALHO DO DRAWER
    ================================= */

    .drawer-header {
        display: flex;
        justify-content: flex-end;

        margin-bottom: 30px;
    }

    .drawer-fechar {
        border: none;
        background: none;

        font-size: 25px;

        cursor: pointer;
    }


    /* ================================
       LINKS DO DRAWER
    ================================= */

    .drawer-links {
        display: flex;
        flex-direction: column;

        gap: 5px;
    }

    .drawer-links a {
        padding: 15px 5px;

        text-decoration: none;
        color: #000;

        font-family: 'Inter', sans-serif;

        border-bottom: 1px solid #eee;
    }

    .drawer-links a:hover {
        color: #001EFF;
    }


    /* ================================
       BOTÃO DOAÇÃO NO DRAWER
    ================================= */

    .drawer-doacao {
        width: 100%;

        margin-top: 25px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 13px;

        border: none;
        border-radius: 5px;

        background-color: #6CB46D;
        color: white;

        font-size: 16px;

        cursor: pointer;
    }


     
    :root {
        --apae-azul: #001EFF;
        --apae-verde: #6CB46D;
        --apae-verde-hover: #5da35e;
        --apae-laranja: #FF9900;
        --apae-navy: #0B1550;
        --apae-cinza-texto: #555;
    }
 
    section {
        padding: 70px 0;
    }
 
    .eyebrow {
        color: var(--apae-laranja);
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 10px;
    }
 
    .titulo-secao {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 10px;
    }
 
    .texto-secao {
        color: var(--apae-cinza-texto);
        font-family: 'Inter', sans-serif;
    }
 
 
    /* ================================
       HERO
       Estrutura igual ao layout do PDF:
       - conteúdo inteiro na coluna esquerda
       - imagem grande na direita
       - anel laranja atrás da imagem
       - MVV sobrepõe a parte inferior do hero
    ================================= */

    .hero {
        position: relative;
        overflow: hidden;
        padding: 35px 0 0;
    }

    .hero-row {
        position: relative;
        min-height: 430px;
    }

    .hero .container-fluid {
        display: flex;
        justify-content: center;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-row {
        width: 100%;
        max-width: 1400px;
    }

    .hero-conteudo {
        position: relative;
        z-index: 3;
        padding: 35px 0 45px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .hero-eyebrow {
        color: var(--apae-laranja);
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: .2px;
        margin-bottom: 8px;
    }

    .hero-titulo {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: clamp(2.4rem, 4vw, 4rem);
        line-height: .98;
        letter-spacing: -1.5px;
        margin: 0 0 18px;
        max-width: 620px;
    }

    .hero-titulo .destaque {
        color: var(--apae-azul);
        font-style: italic;
    }

    .hero-texto {
        color: var(--apae-cinza-texto);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.25;
        max-width: 500px;
        margin-bottom: 16px;
    }

    .hero-botoes {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 12px;

    }

    .hero-stats {
        margin-top: 22px;
        padding-left: 15px;
        max-width: 520px;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-stat-icone {
        width: 25px;
        height: 25px;
        object-fit: contain;
        flex: 0 0 auto;
        user-select: none;
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none;    /* Firefox antigo */
        -ms-user-select: none; 
        -webkit-user-drag: none;   /* impede arrastar a imagem */
        pointer-events: none;      /* opcional: impede qualquer interação/clique */
    }
    
    #hero-stat-icon-localization{

        width: 23px;
        height: 23px;

    }

    .hero-stat-numero {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 14px;
        line-height: 1;
        margin: 0;
    }

    .hero-stat-label {
        color: var(--apae-cinza-texto);
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        line-height: 1;
        margin: 3px 0 0;
    }

    .hero-imagem-col {
        position: absolute;
        top: 0;
        right: 0;
        width: 52%;
        height: 100%;
        padding: 0 !important;
        z-index: 1;
        pointer-events: none;
    }

    .hero-imagem-wrapper {
        position: absolute;
        top: -50px;
        right: -70px;
        width: min(610px, 52vw);
        height: min(610px, 52vw);
        z-index: 3;
    }

    .hero-imagem-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .hero-anel {
        position: absolute;
        top: -15px;
        right: -90px;
        width: min(630px, 54vw);
        height: min(630px, 54vw);
        border: 2px solid var(--apae-laranja);
        border-radius: 50%;
        z-index: 1;
        pointer-events: none;
    }

    .btn-apae-verde {
        background-color: var(--apae-verde);
        border: none;
        color: white;
        padding: 8px 18px;
        border-radius: 5px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-decoration: none;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .btn-apae-verde img{

        width: 17px;
        height: auto;
    }

    .btn-apae-verde:hover {
        background-color: var(--apae-verde-hover);
        color: white;
    }

    .btn-apae-outline {
        background-color: transparent;
        border: 1px solid var(--apae-verde);
        color: var(--apae-verde);
        padding: 8px 18px;
        border-radius: 5px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-decoration: none;
        display: inline-block;
    }

    .btn-apae-outline:hover {
        background-color: var(--apae-verde);
        color: white;
    }

    @media (max-width: 991.98px) {
        .hero {
            padding-top: 20px;
        }

        .hero-row {
            min-height: 0;
        }

        .hero-conteudo {
            padding: 20px 20px 35px;
        
        }

        .hero-imagem-col {
            position: relative;
            width: 100%;
            height: auto;
            min-height: 320px;
        }

        .hero-imagem-wrapper {
            position: relative;
            top: auto;
            right: auto;
            width: min(420px, 90vw);
            height: min(420px, 90vw);
            margin: 0 auto;
        }

        .hero-anel {
            display: none;
        }

        .hero-titulo {
            font-size: clamp(2.2rem, 8vw, 3.2rem);
        }

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

        .hero-stats {
            max-width: 100%;
        }
    }

    @media (max-width: 575.98px) {
        .hero-conteudo {
            padding-left: 15px;
            padding-right: 15px;
        }

        .hero-titulo {
            font-size: 2.25rem;
            letter-spacing: -1px;
        }

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

        .hero-botoes a {
            text-align: center;
        }

        .hero-stats .col-4 {
            padding-left: 5px;
            padding-right: 5px;
        }

        .hero-stat {
            gap: 5px;
        }

        .hero-stat-icone {
            width: 20px;
            height: 20px;
        }

        .hero-stat-numero {
            font-size: 11px;
        }

        .hero-stat-label {
            font-size: 8px;
        }
    }

    /* ================================
       MISSÃO / VISÃO / VALORES
       - sobrepõe a parte de baixo do hero (como no PDF)
    ================================= */

    .secao-mvv {
        position: relative;
        z-index: 3;
        
    }

    @media (min-width: 768px) {

    }
 
    .faixa-mvv {
        background-color: var(--apae-navy);
        border-radius: 16px;
 
        padding: 45px 30px;
 
        color: white;
    }
 
    .mvv-item h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
    }
 
    .mvv-item p {
        color: #cfd3ef;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
    }
 
    .mvv-icone {
        width: 27px;
        height: auto;
        
        margin-right: 8px;
         user-select: none;
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none;    /* Firefox antigo */
        -ms-user-select: none; 
        -webkit-user-drag: none;   /* impede arrastar a imagem */
        pointer-events: none;      /* opcional: impede qualquer interação/clique */
    }

    #mvv-icone-big-heart{

        width: 40px;
        height: auto;

    }
 
 
    /* ================================
       NOTÍCIAS
    ================================= */
 
    .card-noticia {
        border: none;
        border-radius: 12px;
        overflow: hidden;
 
        height: 100%;
    }
 
    .card-noticia img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
 
    .card-noticia .card-body {
        font-family: 'Inter', sans-serif;
    }
 
    .card-noticia .card-title {
        font-size: 1rem;
        font-weight: 700;
    }
 
    .card-noticia .card-text {
        font-size: 0.85rem;
        color: var(--apae-cinza-texto);
    }
 
    .link-ler-mais {
        color: var(--apae-azul);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }
 
    .link-ver-todas {
        color: var(--apae-azul);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }
 
 
    /* ================================
       BANNER EVENTO
    ================================= */
 
    .banner-evento {
        background: linear-gradient(135deg, var(--apae-laranja), var(--apae-azul));
 
        border-radius: 16px;
 
        color: white;
        
        padding: 50px;
 
        position: relative;
 
        overflow: hidden;
    }
 
    .banner-evento .tag-evento {
        background-color: rgba(255, 255, 255, 0.2);
 
        display: inline-block;
 
        padding: 5px 12px;
 
        border-radius: 20px;
 
        font-size: 0.8rem;
        font-family: 'Inter', sans-serif;
 
        margin-bottom: 15px;
    }
 
    .banner-evento h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 2rem;
    }
 
    .banner-evento h3 .grifo {
        font-style: italic;
    }
 
 
    /* ================================
       SERVIÇOS
    ================================= */
 
    .card-servico {
        border: 1px solid #eee;
        border-radius: 14px;
 
        padding: 30px 20px;
 
        text-align: center;
 
        height: 100%;
 
        font-family: 'Inter', sans-serif;
    }
 
    .card-servico .icone-servico {
        width: 50px;
        height: 50px;
 
        margin: 0 auto 15px;
 
        border-radius: 50%;
 
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .card-servico .icone-servico img {
        width: 24px;
        height: auto;
    }
 
    .card-servico h6 {
        font-weight: 700;
        margin-bottom: 8px;
    }
 
    .card-servico p {
        font-size: 0.85rem;
        color: var(--apae-cinza-texto);
        margin-bottom: 0;
    }
 
 
    /* ================================
       CTA "SUA AJUDA TRANSFORMA VIDAS"
    ================================= */
 
    .faixa-cta {
        background-color: var(--apae-laranja);
 
        border-radius: 16px;
 
        padding: 40px;
 
        color: white;
    }
 
    .faixa-cta h4 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
    }
 
    .card-cta-mini {
        background-color: white;
 
        border-radius: 12px;
        
        display: flex;
        flex-direction: column;

        text-align: left;

        padding: 20px;
 
        color: #222;
 
        height: 100%;
 
        font-family: 'Inter', sans-serif;
    }

    .card-cta-mini .btn-apae-verde{

        margin-top: auto; 

    }
 
    .card-cta-mini h6 {
        font-weight: 700;
    }
 
    .card-cta-mini p {
        font-size: 0.85rem;
        color: var(--apae-cinza-texto);
    }
 
 
    /* ================================
       VÍDEO
    ================================= */
 
    .video-placeholder {
        position: relative;
        display: block;
    }

    .video-placeholder img.thumb {
        width: 100%;
        border-radius: 12px;
    }

    .video-placeholder img.play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
    }

    .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* proporção 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
 
 
    /* ================================
       EMPRESAS PARCEIRAS
    ================================= */
 
    .logo-parceiro {
        background-color: #111;
 
        border-radius: 8px;
 
        height: 60px;
 
        display: flex;
        align-items: center;
        justify-content: center;
 
        color: white;
 
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }
 
    .logo-parceiro.roxo {
        background-color: #5b3df5;
    }
 
 
    /* ================================
       FOOTER
    ================================= */
 
    .footer-apae {
        text-align: center;
 
        padding: 40px 20px;
 
        font-family: 'Inter', sans-serif;
    }
 
    .footer-apae img {
        width: 60px;
 
        margin-bottom: 10px;
    }
 
    .footer-apae p {
        color: var(--apae-cinza-texto);
        font-size: 0.9rem;
 
        max-width: 480px;
 
        margin: 0 auto 15px;
    }
 
    .footer-apae .redes a {
        color: #333;
 
        margin: 0 8px;
 
        font-size: 1.2rem;
    }
 
    .footer-apae .copyright {
        margin-top: 20px;
 
        font-size: 0.8rem;
 
        color: #999;
    }
 
    /* ================================
       MOBILE
       ordem: título -> imagem -> subtítulo -> informação
    ================================= */
 
    @media (max-width: 768px) {
 
          section {
            padding: 45px 0;
        }
 
        .hero-titulo {
            font-size: 2rem;
        }
 
        .hero-texto {
            max-width: 100%;
        }

        /* no mobile a imagem não sangra na borda nem tem o anel:
           fica contida, como uma foto normal */
        .hero-anel {
            display: none;
        }

        .hero-imagem-wrapper img {
            border-radius: 20px;
        }

        .secao-mvv {
            margin-top: 0;
        }
 
        .banner-evento {
            padding: 30px 20px;
            text-align: center;
        }
 
        .faixa-cta {
            text-align: center;
        }
 

        .navbar-content {
            height: 70px;

            padding: 5px 15px;
        }


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


        /* Esconde links desktop */

        .navbar-links {
            display: none;
        }


        /* Esconde botão desktop */

        .navbar-btnDoacao {
            display: none;
        }


        /* Mostra menu */

        .menu-mobile {
            display: block;
        }


        /* Drawer */

        .drawer-interacao {
            width: 400px;
            max-width: 85vw;
        }

    }


.icone-social { background-color: #FFEFD9; }

.icone-educacao { background-color: #E1F3E1; }

.icone-saude { background-color: #DCEBFF; }

.icone-trabalho { background-color: #EDE1FF; }

.icone-esporte { background-color: #FFE2DE; }
