/* ===== RESET E VARIÁVEIS ===== */
:root {
    --primary-dark: #1E1E1E;
    --primary-gold: #F7BE45;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --green: #27a96f;
    --blue: #0066cc;
    --brown: #b8860b;
    --dark-blue: #003d7a;
    --r-pill: 999px;
    --ease: cubic-bezier(.4,0,.2,1);
    --dur: .32s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== UTILS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--r-pill);
    font-family: 'Comfortaa', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-gold:hover {
    background: #ffd060;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 190, 69, .45);
}

.btn-outline-w {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .55);
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.btn-outline-d {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid rgba(30, 30, 30, .3);
}

.btn-outline-d:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    transition: box-shadow var(--dur);
}

.site-header.shadow {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.logo img {
    height: 38px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all .2s;
    font-family: 'Comfortaa', sans-serif;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--primary-dark);
    background: var(--bg-light);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    z-index: 998;
    padding: 20px 32px 28px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-family: 'Comfortaa', sans-serif;
    text-decoration: none;
}

.mobile-nav .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.section-light {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('images/movimento_01.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px 100px 0;
    text-align: left;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-sustentabilidade {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('images/hero-background.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px 100px 0;
    text-align: left;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 900px;
    margin-left: 165px;
    padding-left: 30px;
}

.hero h1 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-sustentabilidade h1 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero p {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(.88rem, 1.2vw, .98rem);
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== SEÇÃO PRINCIPAL ===== */
.section-center {
    padding: 96px 0 80px;
    background-color: var(--bg-white);
}

.section-center h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-center .highlight {
    color: var(--primary-gold);
}

.section-center .subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: .92rem;
    color: var(--text-light);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
    line-height: 1.78;
}

/* ===== PILLARS ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pillar {
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.pillar-icon.pessoas {
    background-color: #ffd966;
    color: #f7be45;
}

.pillar-icon.planeta {
    background-color: #70c9b0;
    color: #27a96f;
}

.pillar-icon.prosperidade {
    background-color: #ffc966;
    color: #f7be45;
}

.pillar-icon.parcerias {
    background-color: #1e1e1e;
    color: #ffffff;
}

.pillar-icon img {
    width: 30px;
    height: 30px;
}

.pillar h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.pillar p {
    font-family: 'Comfortaa', sans-serif;
    font-size: .76rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ===== SEÇÃO ONU ===== */
.section-onu {
    background-color: #f0f0f0;
    padding: 96px 0 80px;
}

.section-onu h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-onu .highlight-dark {
    color: #0099cc;
}

.section-onu .subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: .92rem;
    color: var(--text-light);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
    line-height: 1.78;
}

/* ===== ONU GRID ===== */
.onu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.onu-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.onu-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.onu-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.onu-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.onu-footer img{
    max-width:180px;
    height:auto;
    object-fit:contain;
}

.onu-card.onu-7 .onu-icon {
    background-color: #ffd966;
}

.onu-card.onu-12 .onu-icon {
    background-color: #d4a86d;
}

.onu-card.onu-13 .onu-icon {
    background-color: #70b080;
}

.onu-card.onu-17 .onu-icon {
    background-color: #0066cc;
}

.onu-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.onu-card h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.onu-card p {
    font-family: 'Comfortaa', sans-serif;
    font-size: .76rem;
    color: var(--text-light);
    line-height: 1.55;
}


.onu-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:56px;
    flex-wrap:wrap;
}

.onu-logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.onu-logo img{
    display:block;
    width:auto;
    object-fit:contain;
}

/* ODS */
.onu-logo.ods img{
    max-height:120px;
}

/* Global Compact */
.onu-logo.compact img{
    max-height:100px;
}

/* ===== SEÇÃO IMPACTO ===== */
.section-impact {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 96px 0;
    text-align: center;
}

.section-impact h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-impact .subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: .93rem;
    color: rgba(255, 255, 255, .52);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.78;
}

/* ===== IMPACT STATS ===== */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat p {
    font-family: 'Comfortaa', sans-serif;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
}

/* ===== SEÇÃO CTA ===== */
.section-cta {
    background: var(--primary-dark);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -10%;
    width: 55%;
    height: 220%;
    background: radial-gradient(ellipse, rgba(247, 190, 69, .08) 0%, transparent 68%);
    pointer-events: none;
}

.section-cta h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.section-cta .highlight {
    color: var(--primary-gold);
}

.section-cta p {
    color: rgba(255, 255, 255, .52);
    font-size: .93rem;
    max-width: 460px;
    margin: 0 auto 40px;
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.8;
    max-width: 240px;
    margin-top: 14px;
}

.footer-brand .logo img {
    height: 32px;
}

.footer-col h5 {
    font-family: 'Comfortaa', sans-serif;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .28);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-ctas .btn-outline-d {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: calc(100svh - 70px);
        min-height: 450px;
        padding: 60px 20px 60px 0;
    }

    .section-center,
    .section-onu,
    .section-impact,
    .section-cta {
        padding: 70px 20px;
    }

    .section-center h2,
    .section-onu h2,
    .section-impact h2,
    .section-cta h2 {
        font-size: 28px;
    }

    .section-center .subtitle,
    .section-onu .subtitle,
    .section-impact .subtitle,
    .section-cta p {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .onu-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .stat h3 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 15px 50px 0;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 13px;
    }

    .section-center,
    .section-onu,
    .section-impact,
    .section-cta {
        padding: 50px 15px;
    }

    .section-center h2,
    .section-onu h2,
    .section-impact h2,
    .section-cta h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-center .subtitle,
    .section-onu .subtitle,
    .section-impact .subtitle,
    .section-cta p {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 12px;
    }

    .pillar h3 {
        font-size: 15px;
    }

    .pillar p {
        font-size: 12px;
    }

    .onu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .onu-icon {
        width: 60px;
        height: 60px;
    }

    .onu-card h3 {
        font-size: 14px;
    }

    .onu-card p {
        font-size: 12px;
    }

    .onu-footer img {
        height: 80px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .stat p {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand .logo img {
        height: 25px;
    }

    .footer-col h5,
    .footer-col p,
    .footer-col a {
        font-size: 12px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

    .main-nav a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 35px;
    padding-left: 0;
  }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
        line-height: 1.1;
    }

    .section-center h2,
    .section-onu h2,
    .section-impact h2,
    .section-cta h2 {
        font-size: 20px;
    }

    .stat h3 {
        font-size: 24px;
    }

    .pillars {
        gap: 15px;
    }

    .impact-stats {
        gap: 20px;
    }
}
