/**
 * SOS Ayahuasca - Estilos Customizados
 * Paleta de Cores e Tipografia
 */

:root {
    /* Cores Principais */
    --verde-mata: #2F5E3D;
    --verde-cipo: #5F8F5A;
    --verde-chacrona: #9CC5A1;
    
    /* Cores Terciárias */
    --terra-argilosa: #A4754A;
    --castanho-nativo: #5C3A22;
    
    /* Cores Neutras */
    --areia-amazonica: #F3EFE7;
    --cinza-serra: #444444;
    
    /* Tipografia */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--cinza-serra);
    background-color: var(--areia-amazonica);
    line-height: 1.6;
    padding-top: 76px; /* Espaço para navbar fixa */
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--cinza-serra);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer h5 img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--verde-mata) !important;
}

.nav-link:hover {
    color: var(--verde-chacrona) !important;
}

.btn-apoio {
    background-color: var(--verde-chacrona) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    margin-left: 0.5rem;
}

.btn-apoio:hover {
    background-color: var(--verde-cipo) !important;
    color: white !important;
}

/* Classes de Cores de Fundo */
.bg-verde-mata {
    background-color: var(--verde-mata) !important;
}

.bg-verde-cipo {
    background-color: var(--verde-cipo) !important;
}

.bg-verde-chacrona {
    background-color: var(--verde-chacrona) !important;
}

.bg-terra-argilosa {
    background-color: var(--terra-argilosa) !important;
}

.bg-castanho-nativo {
    background-color: var(--castanho-nativo) !important;
}

.quemsomos {
    background-color: var(--terra-argilosa) !important;
}

.quemsomos-verde-cipo {
    background-color: var(--verde-cipo) !important;
}

.image-dark-overlay {
    position: relative;
}

.image-dark-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    border-radius: 12px;
}

.image-dark-overlay img {
    position: relative;
    z-index: 0;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.logo-overlay-img {
    height: 180px;
    width: auto;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .logo-overlay-img {
        height: 120px;
    }
}

/* Botões Customizados */
.btn-verde-mata {
    background-color: var(--verde-mata);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-verde-mata:hover {
    background-color: var(--verde-cipo);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.3);
}

.btn-verde-chacrona {
    background-color: var(--verde-chacrona);
    color: var(--verde-mata);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-terra {
    background-color: var(--terra-argilosa);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-terra:hover {
    background-color: var(--castanho-nativo);
    color: white;
}

.btn-outline-terra {
    background-color: transparent;
    color: var(--terra-argilosa);
    border: 2px solid var(--terra-argilosa);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-terra:hover {
    background-color: var(--terra-argilosa);
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-serif);
    color: var(--verde-mata);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Seção Herói */
.hero-section {
    position: relative;
    min-height: 600px;
    margin-top: -76px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .carousel {
    height: 100%;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
}

.hero-section .carousel-inner {
    height: 100%;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
}

.hero-section .carousel-item {
    height: 100%;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--verde-mata);
    color: white;
    text-align: center;
    padding: 4rem 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(47, 94, 61, 0.6), rgba(47, 94, 61, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.hero-text-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

/* Estilos do Carrossel Hero */
.hero-section .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators button.active {
    background-color: white;
    border-color: white;
    transform: scale(1.2);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-section .carousel-control-prev {
        left: 10px;
    }
    
    .hero-section .carousel-control-next {
        right: 10px;
    }
    
    .hero-section .carousel-indicators {
        bottom: 20px;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-subtitle-glow {
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.6), 0 0 20px rgba(255, 235, 59, 0.4), 0 0 30px rgba(255, 235, 59, 0.2);
    color: #fff9c4;
}

/* Seções */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    color: var(--verde-mata);
}

.section-subtitle {
    text-align: center;
    color: var(--cinza-serra);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards de Plantas */
.plant-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.plant-card:hover {
    transform: translateY(-10px);
}

.plant-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--verde-chacrona);
}

.plant-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--verde-mata);
    margin-bottom: 0.5rem;
}

.plant-scientific {
    font-style: italic;
    color: var(--terra-argilosa);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Seção de Preservação */
.preservation-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.preservation-item:hover {
    transform: translateY(-5px);
}

.preservation-icon {
    font-size: 3rem;
    color: var(--terra-argilosa);
    margin-bottom: 1rem;
}

.preservation-title {
    font-family: var(--font-serif);
    color: var(--verde-mata);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Grid de Projetos */
.project-card {
    margin-bottom: 2rem;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* Chamada para Apoio */
.call-to-action {
    background: linear-gradient(135deg, var(--castanho-nativo) 0%, var(--terra-argilosa) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.call-to-action h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.call-to-action p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Formulários */
.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--verde-cipo);
    box-shadow: 0 0 0 0.2rem rgba(95, 143, 90, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--verde-mata);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    margin-top: auto;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--verde-chacrona) !important;
}

/* Espaçamentos */
.py-section {
    padding: 5rem 0;
}

.mt-section {
    margin-top: 5rem;
}

.mb-section {
    margin-bottom: 5rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .plant-image {
        width: 120px;
        height: 120px;
    }
}

/* Utilitários */
.text-verde-mata {
    color: var(--verde-mata) !important;
}

.text-verde-cipo {
    color: var(--verde-cipo) !important;
}

.text-terra {
    color: var(--terra-argilosa) !important;
}

.rounded-organic {
    border-radius: 8px;
}

.shadow-organic {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Cards da Equipe */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: white;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 94, 61, 0.2);
}

.team-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--verde-chacrona);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-serif);
    color: var(--verde-mata);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--cinza-serra);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
}

/* Informações Institucionais */
.info-card {
    padding: 2.5rem !important;
}

.info-item {
    border-bottom: 1px solid rgba(95, 143, 90, 0.2);
    padding-bottom: 1.5rem;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h5 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content ul {
    color: var(--cinza-serra);
    line-height: 1.7;
    margin-bottom: 0;
}

.info-content ul {
    list-style-type: disc;
}

.info-content ul li {
    margin-bottom: 0.5rem;
}

.info-content a {
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--verde-mata) !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem !important;
    }
    
    .info-icon {
        min-width: 35px;
    }
    
    .info-icon i {
        font-size: 1.25rem !important;
    }
}

/* Cards de Iniciativas */
.initiative-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 94, 61, 0.2);
}

.initiative-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.initiative-title {
    font-family: var(--font-serif);
    color: var(--verde-mata);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.initiative-text {
    color: var(--cinza-serra);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .initiative-image {
        height: 180px;
    }
    
    .initiative-title {
        font-size: 1.1rem;
        min-height: auto;
    }
}

/* === Apoiadores === */

/* Supporter Cards */
.supporter-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.supporter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(47, 94, 61, 0.2) !important;
}

.supporter-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.supporter-location {
    color: var(--cinza-serra);
    font-size: 0.95rem;
}

.supporter-area {
    color: var(--cinza-serra);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Gamification Badge */
.supporter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: badge-appear 0.5s ease;
}

@keyframes badge-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.badge-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Níveis - Cores Específicas */
.nivel-semente {
    background-color: #8B4513;
}

.nivel-arvore {
    background-color: #228B22;
}

.nivel-floresta {
    background-color: #006400;
}

/* Tabs Customizadas */
#apoiadoresTab .nav-link {
    color: var(--verde-mata);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#apoiadoresTab .nav-link:hover {
    color: var(--verde-cipo);
    border-color: var(--verde-chacrona);
}

#apoiadoresTab .nav-link.active {
    color: white;
    background-color: var(--verde-mata);
    border-color: var(--verde-mata);
}

#apoiadoresTab .badge {
    font-size: 0.8rem;
}

/* Admin Badge Styles */
.badge.bg-semente {
    background-color: #8B4513 !important;
}

.badge.bg-arvore {
    background-color: #228B22 !important;
}

.badge.bg-floresta {
    background-color: #006400 !important;
}

/* Animações de entrada */
.supporter-card {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo - Apoiadores */
@media (max-width: 768px) {
    .supporter-name {
        font-size: 1.1rem;
    }
    
    .supporter-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    #apoiadoresTab .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
    }
}

/* === CTA Cards === */
.cta-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(47, 94, 61, 0.25) !important;
}

.cta-card .card-body {
    display: flex;
    flex-direction: column;
}

.cta-card .card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card .card-text {
    flex-grow: 1;
    color: var(--cinza-serra);
    line-height: 1.7;
}

.cta-card .btn {
    margin-top: auto;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-card .btn:hover {
    transform: scale(1.05);
}

/* Responsivo - CTA Cards */
@media (max-width: 768px) {
    .cta-card .card-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .cta-card {
        margin-bottom: 1.5rem;
    }
}

/* === Problem Cards === */
/* Seção Um Futuro em Risco - Institucional */
.section-risk {
    background-color: #ffffff;
    padding: 5rem 0;
}

.section-title-institutional {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-subtitle-institutional {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-serra);
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle-institutional em {
    font-style: italic;
    font-weight: 500;
    color: var(--verde-mata);
}

.risk-card {
    background: #ffffff;
    border: 1px solid rgba(47, 94, 61, 0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.risk-card:hover {
    border-color: var(--verde-chacrona);
    box-shadow: 0 4px 20px rgba(47, 94, 61, 0.08);
    transform: translateY(-4px);
}

.risk-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--verde-mata);
    flex-shrink: 0;
}

.risk-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.risk-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.risk-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cinza-serra);
    margin-bottom: 0;
}

/* Responsividade - Seção Risco */
@media (max-width: 992px) {
    .section-title-institutional {
        font-size: 2rem;
    }
    
    .section-subtitle-institutional {
        font-size: 1rem;
    }
    
    .risk-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-risk {
        padding: 3rem 0;
    }
    
    .section-title-institutional {
        font-size: 1.75rem;
    }
    
    .section-subtitle-institutional {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .risk-title {
        font-size: 1.2rem;
    }
    
    .risk-text {
        font-size: 0.95rem;
    }
    
    .risk-icon {
        width: 56px;
        height: 56px;
    }
    
    .risk-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Estilos antigos (manter por compatibilidade) */
.problem-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--verde-chacrona);
}

.problem-icon {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.problem-card p {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsivo - Problem Cards */
@media (max-width: 768px) {
    .problem-card {
        margin-bottom: 1.5rem;
    }
    
    .problem-card h4 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .problem-icon {
        min-height: 60px;
    }
    
    .problem-icon i {
        font-size: 2.5rem !important;
    }
}

/* === Página de Transparência === */

/* Cards de Resumo Financeiro */
#resumoCards .card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#resumoCards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--verde-chacrona);
}

#resumoCards .card-body h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Gráfico de Evolução */
#evolucaoChart {
    max-height: 400px;
}

/* Tabela de Documentos */
#documentosTable {
    font-size: 0.95rem;
}

#documentosTable thead th {
    background-color: var(--verde-chacrona) !important;
    color: var(--verde-mata);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

#documentosTable tbody tr {
    transition: background-color 0.2s ease;
}

#documentosTable tbody tr:hover {
    background-color: rgba(156, 197, 161, 0.1);
}

#documentosTable tbody td {
    padding: 1rem;
    vertical-align: middle;
}

#documentosTable .btn-verde-mata {
    background-color: var(--verde-mata);
    border-color: var(--verde-mata);
    color: white;
    transition: all 0.3s ease;
}

#documentosTable .btn-verde-mata:hover {
    background-color: var(--verde-cipo);
    border-color: var(--verde-cipo);
    transform: scale(1.05);
}

/* Cards de Projetos */
#projetosContainer .card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#projetosContainer .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--verde-chacrona);
}

#projetosContainer .progress {
    height: 1.5rem;
    border-radius: 8px;
    background-color: rgba(47, 94, 61, 0.1);
}

#projetosContainer .progress-bar {
    background-color: var(--verde-mata);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Loading States */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* Filtros */
#anoFiltro {
    border: 2px solid var(--verde-chacrona);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

#anoFiltro:focus {
    border-color: var(--verde-mata);
    box-shadow: 0 0 0 0.2rem rgba(47, 94, 61, 0.25);
}

/* Responsivo - Transparência */
@media (max-width: 768px) {
    #resumoCards .card-body h4 {
        font-size: 1.4rem;
    }
    
    #resumoCards .card-body h3 {
        font-size: 1.1rem;
    }
    
    #documentosTable {
        font-size: 0.85rem;
    }
    
    #documentosTable thead th,
    #documentosTable tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    #documentosTable .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    #evolucaoChart {
        max-height: 300px;
    }
    
    #projetosContainer .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    #resumoCards .col-md-4 {
        margin-bottom: 1rem;
    }
    
    #documentosTable {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #documentosTable thead,
    #documentosTable tbody,
    #documentosTable tr,
    #documentosTable td,
    #documentosTable th {
        display: block;
    }
    
    #documentosTable thead {
        display: none;
    }
    
    #documentosTable tr {
        margin-bottom: 1rem;
        border: 1px solid var(--verde-chacrona);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    #documentosTable td {
        border: none;
        padding: 0.5rem 0;
        text-align: left;
    }
    
    #documentosTable td:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--verde-mata);
    }
    
    #documentosTable .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Language Flags */
.language-flags {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

/* Flags dentro do navbar-brand */
.navbar-brand .language-flags {
    gap: 0.4rem;
    margin-left: 0.5rem;
}

.language-flags li {
    margin: 0;
    padding: 0;
}

.flag-link {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.7;
}

.flag-link:hover {
    opacity: 1;
    transform: scale(1.15);
}

.flag-link.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for flags */
@media (max-width: 768px) {
    .language-flags {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.35rem;
    }
    
    .navbar-brand .language-flags {
        gap: 0.3rem;
        margin-left: 0.3rem;
    }
    
    .flag-link {
        font-size: 1.3rem;
    }
    
    .navbar-brand .flag-link {
        font-size: 1.2rem;
    }
    
    /* Ocultar texto "SOS Ayahuasca" no mobile */
    .navbar-brand span {
        display: none;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-brand .language-flags {
        margin-left: 0.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--verde-mata) 0%, var(--verde-cipo) 100%);
    color: white;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    border-top: 3px solid var(--verde-chacrona);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent-content i {
    font-size: 1.5rem;
    margin-top: 0.1rem;
    color: var(--verde-chacrona);
}

.cookie-link {
    color: var(--verde-chacrona);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-banner.hidden {
    animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Ajuste para não sobrepor conteúdo quando o banner está visível */
body.cookie-banner-visible {
    padding-bottom: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-content {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    body.cookie-banner-visible {
        padding-bottom: 120px;
    }
}

/* Política de Privacidade - Estilos para listas */
.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    list-style-type: disc;
}

.content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--verde-mata);
    font-size: 1.3rem;
}

.content-section h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--verde-cipo);
    font-size: 1.1rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Google Calendar Container */
.google-calendar-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.google-calendar-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

/* Responsividade para Google Calendar */
@media (max-width: 768px) {
    .google-calendar-container {
        padding: 1rem;
    }
    
    .google-calendar-container iframe {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .google-calendar-container iframe {
        min-height: 400px;
    }
}
