/* =====================================================
   PADRÃO INSTITUCIONAL
   Programa de Educação Ambiental Araucária
   ===================================================== */

/* ================= FUNNEL SANS ================= */

@font-face {
    font-family: 'FunnelSans';
    src: url('./FunnelSans-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'FunnelSans';
    src: url('./FunnelSans-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'FunnelSans';
    src: url('./FunnelSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'FunnelSans';
    src: url('./FunnelSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'FunnelSans';
    src: url('./FunnelSans-Black.ttf') format('truetype');
    font-weight: 900;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FunnelSans', sans-serif;
    background: #f4f7f6;
    color: #1c1c1c;
    overflow-x: hidden;
}

/* ================= HEADER PADRÃO ================= */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff; /* sólido institucional */
    z-index: 1000;
}

/* LOGO */

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #1a7c45;
}

/* NAV DESKTOP */

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #1a7c45;
}

/* BOTÃO CTA */

.nav-cta {
    background: #2ecc71;
    padding: 10px 20px;
    border-radius: 40px;
    color: white !important;
    font-weight: 600;
    transition: 0.3s;
}

.nav-cta:hover {
    background: #27ae60;
}

/* MENU MOBILE */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= SOCIAL MINI PADRÃO ================= */

.social-mini {
    position: fixed;
    top: 95px;
    right: 0;
    background: white;
    padding: 14px 22px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    box-shadow: -5px 10px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 18px;
    align-items: center;
    z-index: 900;
}

.social-mini a {
    text-decoration: none;
    font-weight: 600;
    color: #1a7c45;
    font-size: 14px;
}

.social-mini a:hover {
    opacity: 0.7;
}

/* ================= ESPAÇAMENTO PADRÃO ================= */

/* garante que conteúdo não fique atrás do header */
.page-content {
    margin-top: 110px;
}

/* ================= RESPONSIVO ================= */

@media(max-width:900px){

    header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 16px;
        max-width: 200px;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 15px 0;
        font-size: 16px;
    }

    .menu-toggle {
        display: block;
    }

    .social-mini {
        display: none;
    }
}

@media(max-width:480px){

    .logo {
        font-size: 14px;
        max-width: 150px;
    }
}