:root {
    --brand-green-dark: #005f0d;
    --brand-green: #0f7f12;
    --brand-green-light: #75b800;
    --brand-yellow: #f5c400;
    --brand-blue: #1da3e0;
    --brand-earth: #8b4a06;
    --brand-cream: #fffdf3;
    --light-bg: #f4f8ef;
    --text-main: #143018;
    --shadow-soft: 0 14px 36px rgba(0, 63, 16, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #fbfff4 0%, var(--light-bg) 58%, #eef5e6 100%);
    color: var(--text-main);
}

a {
    color: var(--brand-green-dark);
}

a:hover {
    color: var(--brand-blue);
}

.site-navbar {
    background: rgba(0, 68, 17, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-logo-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.brand-title {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.brand-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
}

.nav-link {
    font-weight: 500;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffe264 100%);
    color: #254000;
    border: 0;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(245,196,0,0.28);
}

.btn-brand:hover,
.btn-brand:focus {
    background: linear-gradient(135deg, #ffd42d 0%, #fff089 100%);
    color: #254000;
}

.btn-brand-green {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    color: #fff;
    border: 0;
}

.btn-brand-green:hover,
.btn-brand-green:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green) 0%, #26a031 100%);
}

.btn-outline-brand {
    border-color: rgba(15,127,18,0.25);
    color: var(--brand-green);
    font-weight: 600;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--brand-green);
    color: #fff;
}

.btn-glass {
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.btn-glass:hover,
.btn-glass:focus {
    color: #fff;
    background: rgba(255,255,255,0.16);
}

.hero-pro {
    background:
        linear-gradient(110deg, rgba(0,43,9,0.90) 0%, rgba(6,88,24,0.78) 42%, rgba(10,95,131,0.52) 100%),
        url('https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: white;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pro::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-green-light), var(--brand-yellow), var(--brand-blue));
}

.hero-chip {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff7b8;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}

.hero-lead {
    color: rgba(255,255,255,0.88);
    max-width: 48rem;
}

.hero-stats-grid {
    margin-top: 1rem;
}

.hero-stat-card,
.glass-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 24px;
}

.hero-stat-card {
    padding: 1rem;
    height: 100%;
}

.hero-stat-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
}

.hero-side-card {
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.hero-logo-wrap {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.hero-logo {
    max-width: 100%;
    max-height: 100%;
}

.hero-side-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.66);
}

.hero-side-list span {
    color: rgba(255,255,255,0.84);
}

.hero-side-list i {
    color: #ffe264;
    margin-right: 0.4rem;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(239,246,231,0.72) 100%);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(15,127,18,0.08);
    border: 1px solid rgba(15,127,18,0.12);
    color: var(--brand-green-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    color: var(--brand-green-dark);
    font-weight: 800;
}

.section-text {
    color: rgba(20,48,24,0.86);
    font-size: 1.04rem;
}

.section-header-narrow {
    max-width: 46rem;
}

.principle-card,
.panel-card,
.season-highlight,
.login-card,
.info-card {
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.principle-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcef 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid rgba(117,184,0,0.36);
}

.principle-card:hover,
.panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0, 63, 16, 0.14);
}

.principle-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,127,18,0.14), rgba(29,163,224,0.16));
    color: var(--brand-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.principle-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    color: var(--brand-earth);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.principle-title {
    font-size: 1.22rem;
    line-height: 1.28;
    font-weight: 700;
    color: #123519;
    margin-bottom: 0.9rem;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    min-height: 3.2rem;
}

.principle-text {
    color: rgba(20,48,24,0.74);
    line-height: 1.7;
    font-size: 0.98rem;
    word-break: normal;
    overflow-wrap: anywhere;
}

.badge-cerrado {
    background: rgba(245, 196, 0, 0.16);
    color: #7b5b00;
    border: 1px solid rgba(245, 196, 0, 0.45);
}

.season-badge {
    background: linear-gradient(135deg, rgba(245,196,0,0.18), rgba(29,163,224,0.18));
    color: var(--brand-earth);
    border: 1px solid rgba(139,74,6,0.18);
}

.panel-key-badge {
    background: linear-gradient(135deg, rgba(15,127,18,0.15), rgba(117,184,0,0.18));
    color: var(--brand-green-dark);
    border: 1px solid rgba(15,127,18,0.2);
}

.contact-cta-wrap {
    background: linear-gradient(135deg, #0d5d12 0%, #137f1a 50%, #0f7ab2 100%);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
}

.impact-quote-card {
    background: linear-gradient(135deg, #0f6412 0%, #1b9425 56%, #1473a6 100%) !important;
    border-left: 6px solid var(--brand-yellow);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.action-list .list-group-item {
    border-color: rgba(15,127,18,0.10);
    font-size: 1rem;
}

.footer-section {
    background: linear-gradient(135deg, #0f4d14 0%, #0b6a14 55%, #0b7f4e 100%);
    border-top: 4px solid rgba(245,196,0,0.7);
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    padding: 4px;
}

.footer-tagline {
    color: rgba(255,255,255,0.84);
}

.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #005f0d 0%, #0b7513 62%, #0e916f 100%);
    border-right: 3px solid rgba(245,196,0,0.35);
}

.admin-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 3px;
}

.admin-main-bg {
    background: linear-gradient(180deg, #f8fcf4 0%, #eef6e7 100%);
    min-height: 100vh;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.9);
    transition: 0.2s ease;
}

.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 12px;
    transform: translateX(2px);
}

.slogan-preview-card {
    background: linear-gradient(135deg, #0c5b13 0%, #1d8d14 56%, #1da3e0 100%);
}

.list-group-item {
    border-color: rgba(15,127,18,0.10);
}

.login-page {
    background:
        linear-gradient(120deg, rgba(0,95,13,0.10), rgba(29,163,224,0.10)),
        linear-gradient(180deg, #f8fcf5 0%, #edf6e5 100%);
}

.login-logo {
    max-width: 140px;
}

.brand-text {
    color: var(--brand-green-dark);
}

.brand-link {
    color: var(--brand-green-dark);
    text-decoration: none;
}

.brand-link:hover {
    color: var(--brand-blue);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15,127,18,0.45);
    box-shadow: 0 0 0 0.25rem rgba(117,184,0,0.18);
}

.border-white-25 {
    border-color: rgba(255,255,255,0.25);
}


@media (max-width: 1399.98px) {
    .principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .principle-grid {
        grid-template-columns: 1fr;
    }

    .principle-title {
        min-height: 0;
    }
}

@media (max-width: 991.98px) {
    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .hero-pro {
        min-height: auto;
        padding: 110px 0 80px;
    }
}

@media (max-width: 575.98px) {
    .hero-stat-number {
        font-size: 1.6rem;
    }

    .contact-cta-wrap {
        padding: 1.4rem;
    }
}
