/* Configurações Globais / Variáveis CSS */
:root {
    --primary-color: #2f9e41; /* Verde IFMT */
    --highlight-color: #D4AF37; /* Dourado */
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fa; /* Cinza Extra Claro */
    --text-color: #333333;
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

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

.bg-light { background-color: var(--bg-light); }
section { padding: 80px 0; }

.section-title {
    text-align: center; font-size: 2.5rem;
    margin-bottom: 3rem; color: #222;
}

p { margin-bottom: 1.2rem; }

/* BOTOES */
.btn {
    display: inline-block; padding: 12px 28px;
    border-radius: 40px; text-decoration: none;
    font-weight: 600; cursor: pointer;
    transition: all 0.3s ease; border: 2px solid transparent;
    font-family: var(--font-body); text-align: center;
}
.btn-lg { padding: 18px 40px; font-size: 1.2rem; }
.btn-hero { background-color: var(--primary-color); color: var(--bg-white); }
.btn-hero:hover {
    background-color: var(--highlight-color); color: var(--bg-white);
    transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-inscreva {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border: 2px solid var(--highlight-color);
}
.btn-inscreva:hover {
    background-color: var(--highlight-color);
    border-color: var(--primary-color);
}

.btn-sober {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-sober:hover { background-color: var(--primary-color); color: var(--bg-white); }

/* HEADER GLOBAL E MOBILE MENU */
.global-header {
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.header-container {
    display: flex; justify-content: space-between;
    align-items: center; padding: 15px 20px;
}
.logo-box {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.5rem; color: var(--primary-color);
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links li a {
    color: var(--text-color); text-decoration: none;
    font-weight: 600; transition: color 0.3s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }

.menu-toggle {
    display: none; background: transparent; border: none;
    font-size: 1.8rem; color: var(--primary-color); cursor: pointer;
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--bg-white); box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .main-nav.active { display: flex; }
    .nav-links { flex-direction: column; width: 100%; text-align: center; }
    .btn-inscreva { margin-top: 15px; width: 100%; }
}

/* HERO SECTION */
.hero {
    position: relative; height: 60vh; min-height: 450px;
    display: flex; align-items: center; justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2000');
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--bg-white); margin-bottom: 10px; }
.hero-subtitle { font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--bg-white); margin-bottom: 30px; font-weight: 400; }

/* GRIDS E CARDS DA HOME */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.concept-card {
    background: var(--bg-white); padding: 40px 30px;
    border-radius: 12px; text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eaeaea;
    display: flex; flex-direction: column;
}
.concept-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.concept-title { font-size: 1.5rem; margin-bottom: 15px; }
.concept-card p { flex-grow: 1; margin-bottom: 25px; } /* Faz o texto preencher o espaço e empurrar o botão */
.concept-card .btn { margin-top: auto; } /* Garante que o botão fique preso na base */

/* TEORIA: CARDS DE DOWNLOAD */
.download-card {
    background: var(--bg-white); padding: 30px;
    border-radius: 12px; border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); display: flex; flex-direction: column;
}
.download-title { font-size: 1.2rem; margin-bottom: 15px; }
.download-desc { flex-grow: 1; margin-bottom: 20px; color: #555; }

/* LISTAS / POESIA E ÍCONES DOURADOS */
.list-group { list-style: none; margin-bottom: 30px; }
.list-group li {
    padding: 15px; background: var(--bg-white); margin-bottom: 10px;
    border-radius: 8px; display: flex; align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid #eee;
}
.list-group li i { margin-right: 15px; font-size: 1.2rem; }
.gold-icon { color: var(--highlight-color); }

.box-informativo {
    background: #fffdf5; border-left: 4px solid var(--highlight-color);
    padding: 20px; border-radius: 4px; margin-bottom: 30px;
}

/* VÍDEO E CENAS */
.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    margin: 0 auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background-color: #000;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.max-w-900 { max-width: 900px; margin: 0 auto; }

.dicas-card {
    background: linear-gradient(135deg, #fff, #fffdf5);
    border: 1px solid #fde68a; padding: 30px; border-radius: 12px; height: 100%;
}
.dicas-card h3 { color: var(--highlight-color); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

.gallery-placeholder {
    height: 300px; background-color: #eee; border: 2px dashed #ccc;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 1.2rem; margin-top: 30px; text-align: center;
}

/* FOOTER */
footer { background-color: #2c3e50; color: var(--bg-white); padding: 50px 0; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
@media (min-width: 768px) { .footer-content { flex-direction: row; justify-content: space-between; } }
.footer-logos { display: flex; gap: 20px; align-items: center; }
.footer-logos img { background-color: var(--bg-white); padding: 10px 15px; border-radius: 8px; }
.logo-box-footer {
    font-family: var(--font-heading); font-weight: 700; padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background-color: rgba(0,0,0,0.1);
}
