/* Variáveis de Identidade */
:root {
    /* Cores */
    --primary-green: #00701a;
    --accent-yellow: #ffcc00;
    --bg-gray: #f8f9fa;
    --text-dark: #1a2a3a;
    --text-muted: #666;
    --dark-blue: #0a192f;
    --text-light: #a8b2d1;
    
    /* Breakpoints */
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 992px;
    
    /* Border Radius */
    --br-sm: 8px;
    --br-md: 12px;
    --br-lg: 20px;
    --br-xl: 30px;
    --br-2xl: 40px;
    --br-3xl: 50px;
    --br-4xl: 60px;
}

/* Aliases para compatibilidade */
:root {
    --green-primary: var(--primary-green);
    --green-dark: var(--primary-green);
    --azul-escuro-footer: var(--dark-blue);
    --yellow: var(--accent-yellow);
    --verde-escuro: var(--primary-green);
    --amarelo: var(--accent-yellow);
}

/* Reset e Base */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family: 'Montserrat', sans-serif;color:var(--text-dark);background:#fff;line-height:1.6;text-align:justify;}

.container{width:90%;max-width:1200px;margin:0 auto}


/* Hero */
.hero-green-overlay {
    height: 350px;
    background: linear-gradient(rgba(0, 112, 26, 0.85), rgba(0, 112, 26, 0.85)), url('../img/lichinga-view.jpg');
    background-size: cover; background-position: center;
    color: white; display: flex; align-items: center; text-align: center;
}
.hero-green-overlay h1 { font-size: 3.5rem; font-weight: 800; width: 100%; }

/* Layout Grid */
.about-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; padding: 60px 0; }

/* Content Sections */
.about-section { margin-bottom: 50px; }
.section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.icon-circle-green { background: var(--green-primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.section-header h2 { color: var(--green-dark); font-weight: 800; font-size: 1.8rem; }

/* Cards */
.mission-vision-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.card-white { background: white; border: 1px solid #eee; padding: 30px; border-radius: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.card-white h3 { color: var(--green-primary); margin-bottom: 15px; font-size: 1.1rem; }

/* Pelouros/Itens de Lista */
.pelouro-item { background: #fdfdfd; border: 1px solid #eee; margin-bottom: 12px; padding: 18px 25px; border-radius: 15px; border-left: 6px solid var(--green-primary); display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.pelouro-item span { color: var(--green-primary); background: #eef7f0; padding: 6px 15px; border-radius: 20px; font-size: 0.85rem; }

/* Sidebar */
.sidebar-box { border: 1px solid #eee; border-radius: 30px; padding: 30px; margin-bottom: 30px; background: #fff; }
.divider { height: 3px; background: #f0f0f0; margin: 20px 0; position: relative; }
.divider::after { content: ''; position: absolute; left: 0; top: 0; width: 50px; height: 100%; background: var(--green-primary); }
.nav-menu ul { list-style: none; }
.nav-menu li a { display: flex; align-items: center; gap: 12px; padding: 15px 0; text-decoration: none; color: #555; font-weight: 600; border-bottom: 1px solid #f5f5f5; transition: 0.3s; }
.nav-menu li a:hover { color: var(--green-primary); padding-left: 5px; }

.sticky-content {
    position: -webkit-sticky; /* Suporte para Safari */
    position: sticky;
    top: 100px; /* Distância do topo quando você rola (ajuste conforme a altura do seu header) */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Estilização dos Boxes (Seguindo seu padrão) */
.sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
/* President Card */
.president-card { background: var(--green-primary); color: white; text-align: center; }
.pres-photo { width: 110px; height: 110px; border-radius: 50%; border: 4px solid var(--yellow); margin: 0 auto 20px; overflow: hidden; background: #fff; }
.pres-photo img { width: 100%; height: 100%; object-fit: cover; }
.btn-message { display: block; background: var(--green-dark); color: white; text-decoration: none; padding: 15px; border-radius: 12px; margin-top: 20px; font-weight: 700; transition: 0.3s; }
.btn-message:hover { background: #000; }

/* Animações reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
    .about-layout {
        gap: 40px;
    }

    .mission-vision-cards {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-green-overlay h1 {
        font-size: 2.5rem;
    }

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

    .mission-vision-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-white {
        padding: 20px;
    }

    .pelouro-item {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pelouro-item span {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .hero-green-overlay {
        padding: 60px 20px;
    }

    .hero-green-overlay h1 {
        font-size: 2rem;
    }

    .about-section {
        margin-bottom: 40px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .icon-circle-green {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card-white {
        padding: 20px;
    }

    .card-white h3 {
        font-size: 1rem;
    }

    .pelouro-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .sidebar-box {
        padding: 20px;
    }

    .president-card {
        text-align: center;
        padding: 20px;
    }

    .pres-photo {
        width: 80px;
        height: 80px;
    }

    .btn-message {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-green-overlay {
        padding: 40px 15px;
    }

    .hero-green-overlay h1 {
        font-size: 1.8rem;
    }

    .about-layout {
        gap: 20px;
    }

    .section-header {
        gap: 10px;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .icon-circle-green {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-white {
        padding: 15px;
        border-radius: 15px;
    }

    .card-white h3 {
        font-size: 0.95rem;
    }

    .pelouro-item {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 0.85rem;
    }

    .sidebar-box {
        padding: 15px;
        border-radius: 20px;
    }

    .president-card {
        padding: 15px;
    }

    .pres-photo {
        width: 70px;
        height: 70px;
    }

    .btn-message {
        padding: 10px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
}