/* ========== ESTILOS GLOBAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* ========== HEADER ========== */
header {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3b1a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 20px;
}

.logo-site {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.header-text {
    text-align: center;
    flex: 1;
}

.header-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitulo {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 8px;
}

.menu-toggle:active {
    transform: scale(0.96);
}

nav {
    background-color: rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    padding: 10px 0;
}

.menu li {
    margin: 0 5px;
}

.menu a {
    display: block;
    padding: 8px 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.menu a:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.menu .active {
    background-color: #ffb703;
    color: #1a3b1a;
    font-weight: 600;
}

.btn-destaque {
    background-color: #ffb703;
    color: #1a3b1a !important;
    font-weight: 600;
}

/* ========== SEÇÕES COMUNS ========== */
.section {
    padding: 50px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 30px;
    position: relative;
}

.section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb703;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========== CARDS (index, campo) ========== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 95, 45, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(44, 95, 45, 0.3);
}

.card i {
    font-size: 3rem;
    color: #ffb703;
    margin-bottom: 20px;
    background: rgba(44, 95, 45, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.card:hover i {
    background: #2c5f2d;
    color: #ffb703;
    transform: rotate(360deg);
}

.card h3, .card h4 {
    color: #2c5f2d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-saiba-mais {
    display: inline-block;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background: #2c5f2d;
    color: white;
    transform: scale(1.05);
}

/* ========== HERO (index) ========== */
.hero {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(255, 183, 3, 0.05) 100%);
    padding: 60px 0;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
}

/* ========== APOIO CTA (index) ========== */
.apoio-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3b1a 100%);
    color: white;
    padding: 60px 0;
}

.apoio-cta h2 {
    color: white;
}

.apoio-cta h2:after {
    background: #ffb703;
}

.apoio-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.apoio-cta .btn-destaque {
    background-color: #ffb703;
    color: #1a3b1a !important;
    font-size: 1.2rem;
    padding: 15px 40px;
}

.apoio-cta .btn-destaque:hover {
    background-color: white;
    color: #2c5f2d !important;
    border-color: #ffb703;
}

/* ========== PERFIL (sobre) ========== */
.profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px;
    border: 5px solid #ffb703;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-card h2 {
    text-align: center;
    color: #2c5f2d;
    font-size: 2rem;
    margin-bottom: 15px;
}

.profile-card h2:after {
    display: none;
}

.lattes-link {
    text-align: center;
    margin-bottom: 30px;
}

.lattes-link a {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ffb703;
}

.lattes-link a:hover {
    background: #ffb703;
    color: #1a3b1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.profile-card h3 {
    color: #2c5f2d;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    padding-left: 15px;
    border-left: 5px solid #ffb703;
}

.profile-card h4 {
    color: #2c5f2d;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.profile-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.profile-card li {
    padding: 12px 20px;
    margin-bottom: 8px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
    transition: all 0.3s ease;
}

.profile-card li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
    background: #f0f7f0;
}

.profile-card li strong {
    color: #2c5f2d;
}

.profile-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* ========== CAMPO ========== */
.section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section h3 {
    color: #2c5f2d;
    font-size: 1.8rem;
    margin: 50px 0 30px;
    text-align: center;
}

.section h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffb703;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ========== CARROSSEL (fotos e videos) ========== */
.carrossel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.carrossel {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    padding: 20px;
    background: white;
}

.slide img, .slide video {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    object-fit: cover;
}

.slide video {
    background: #000;
}

.slide p {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    color: #2c5f2d;
    font-size: 1.1rem;
    padding: 0 10px;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 95, 45, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carrossel-btn:hover {
    background: #ffb703;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 15px;
    flex-wrap: wrap;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador.ativo {
    background: #ffb703;
    transform: scale(1.2);
}

.legenda-carrossel {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* ========== PUBLICAÇÕES ========== */
.section h3 {
    color: #2c5f2d;
    font-size: 1.8rem;
    margin: 40px 0 25px;
    padding-left: 15px;
    border-left: 5px solid #ffb703;
    text-align: left;
}

.section ul {
    list-style: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 30px;
    margin-bottom: 30px;
}

.section li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.section li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
    background: #f0f7f0;
}

.section li a {
    color: #2c5f2d;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.section li a:hover {
    color: #ffb703;
    transform: scale(1.02);
}

/* ========== BLOG (post único) ========== */
.masthead {
    text-align: center;
    margin-bottom: 30px;
}

.masthead h1 {
    font-size: 2.2rem;
    color: #2c5f2d;
    position: relative;
    margin-bottom: 15px;
}

.masthead h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb703;
    margin: 15px auto 0;
    border-radius: 2px;
}

.subhead {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.pub-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.data {
    color: #666;
    font-size: 0.95rem;
}

.tag-editorial {
    background: #2c5f2d;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.corpo-noticia {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 40px;
    margin-bottom: 30px;
}

.corpo-noticia p {
    margin-bottom: 25px;
    color: #444;
    font-size: 1.1rem;
}

.citacao-bloco {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-left: 5px solid #ffb703;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
}

.citacao-bloco p {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.autor-cit {
    text-align: right;
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.fala-entrevista {
    background: #f0f7f0;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #2c5f2d;
}

.fala-entrevista p {
    font-size: 1.15rem;
    color: #1a3b1a;
    margin-bottom: 10px;
}

.autor-fala {
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.comunidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card-comunidade {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #2c5f2d;
    transition: transform 0.3s ease;
}

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

.card-comunidade h4 {
    color: #2c5f2d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #ffb703;
    padding-bottom: 10px;
}

.figura-legenda {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
    border: 1px dashed #2c5f2d;
}

.lista-ervas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    list-style: none;
}

.lista-ervas li {
    background: white;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #2c5f2d;
    color: #2c5f2d;
    text-align: center;
    font-weight: 500;
}

.lista-ervas li:before {
    content: "🌿";
    margin-right: 5px;
}

.rodape-artigo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #f0f7f0;
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    color: #2c5f2d;
    font-weight: 600;
}

/* ========== APOIO (doação) ========== */
.doacao-opcoes {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 30px;
}

.doacao-opcoes h3 {
    text-align: center;
    color: #2c5f2d;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.btn-doacao {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3b1a 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-doacao:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    background: #ffb703;
    color: #1a3b1a;
}

.pix-area {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid #2c5f2d;
}

.pix-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.pix-qrcode {
    flex: 0 0 200px;
}

.pix-qrcode img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pix-copia {
    flex: 1;
    min-width: 250px;
}

.pix-copia code {
    display: block;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 15px;
    color: #333;
}

.btn-copiar {
    background: #2c5f2d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-copiar:hover {
    background: #ffb703;
    color: #1a3b1a;
}

.pix-instrucao {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    color: #666;
    font-style: italic;
}

.agradecimento {
    text-align: center;
    font-size: 1.3rem;
    color: #2c5f2d;
    font-weight: 600;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========== FOOTER ========== */
footer {
    background: #1a3b1a;
    color: white;
    padding: 40px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
    color: #ffb703;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffb703;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* ========== POPUP ========== */
.popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    animation: slideIn 0.5s ease;
}

.popup-box {
    padding: 25px;
    text-align: center;
}

.popup-box h2 {
    color: #2c5f2d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.popup-box p {
    margin-bottom: 20px;
    color: #666;
}

.popup-box button {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-box button:hover {
    background: #f0f0f0;
}

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

/* ========== VLIBRAS ========== */
.enabled {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

/* ========== RESPONSIVIDADE (MENU HAMBURGUER) ========== */
@media (max-width: 768px) {
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-site {
    height: 55px;
}

.header-text {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.header-text h1 {
    font-size: 1.5rem;
}

.subtitulo {
    font-size: 0.7rem;
    max-width: 100%;
}

.menu-toggle {
    display: block;
}

#menuNav {
    display: none;
    width: 100%;
    background-color: #1e3b1e;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

#menuNav.show {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

#menuNav.show {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
}

.menu li:last-child {
    border-bottom: none;
}

.menu a {
    border-radius: 0;
    padding: 14px 20px;
    font-size: 1rem;
}

.menu .btn-destaque {
    background-color: #ffb703;
    color: #1a3b1a;
    padding: 14px 20px;
    border-radius: 0;
}

/* Ajustes gerais em elementos grandes */
.cards-container {
    grid-template-columns: 1fr;
}

.hero-text {
    font-size: 1.1rem;
}

.carrossel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.slide img, .slide video {
    max-height: 300px;
}

.corpo-noticia {
    padding: 20px;
}

.pub-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

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

.lista-ervas {
    grid-template-columns: 1fr 1fr;
}

.doacao-opcoes {
    padding: 20px;
}

.pix-container {
    flex-direction: column;
}