:root { --primary: #C29B61; --bg: #FFFDF7; --text: #5D4D4D; }
body { font-family: 'Lato', sans-serif; background: var(--bg); color: var(--text); margin: 0; padding: 0; }

/* Landing */
.landing-body { display: flex; align-items: center; justify-content: center; height: 100vh; text-align: center; background: url('https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&q=80'); background-size: cover; }
.landing-hero { background: rgba(255,255,255,0.9); padding: 40px; border-radius: 15px; margin: 20px; }
.landing-hero h1 { font-family: 'Cinzel'; color: var(--primary); font-size: 2.5rem; }

/* App Header */
.app-header { background: white; padding: 15px; text-align: center; border-bottom: 1px solid #eee; position: fixed; top: 0; width: 100%; z-index: 100; }
.logo { font-family: 'Cinzel'; color: var(--primary); font-weight: bold; font-size: 1.2rem; }

/* Container */
.container { padding: 70px 20px 20px 20px; max-width: 600px; margin: 0 auto; }

/* Cards */
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 20px; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.author-link { display: flex; align-items: center; text-decoration: none; color: inherit; }
.avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; }
.meta small { color: #999; display: block; }

.answered-card { border: 2px solid var(--primary); background: #fffcf0; }
.badge-answered { background: var(--primary); color: white; padding: 3px 8px; border-radius: 10px; font-size: 0.7rem; }
.testimony-box { background: rgba(194, 155, 97, 0.1); padding: 10px; border-radius: 5px; margin-top: 10px; font-style: italic; }

/* Forms */
textarea { width: 100%; border: 1px solid #ddd; padding: 10px; border-radius: 5px; box-sizing: border-box; font-family: 'Lato'; }
input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }

/* Buttons */
.btn { background: var(--primary); color: white; border: none; padding: 12px; width: 100%; border-radius: 5px; font-weight: bold; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-sm { background: var(--primary); color: white; border: none; padding: 8px 15px; border-radius: 20px; cursor: pointer; margin-top: 5px; }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); text-decoration: none; padding: 10px; display: inline-block; border-radius: 5px; }
.action-btn { background: none; border: none; color: #888; cursor: pointer; font-size: 0.9rem; }
.btn-miracle { color: var(--primary); font-weight: bold; }

/* Profile */
.profile-header { text-align: center; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.badge { background: #eee; padding: 3px 10px; border-radius: 15px; font-size: 0.8rem; margin: 2px; display: inline-block; }
.social-link { display: block; margin-top: 10px; color: var(--primary); text-decoration: none; font-weight: bold; }

/* Tabs */
.tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.tab-btn { flex: 1; padding: 10px; background: #eee; border: none; border-radius: 5px; cursor: pointer; }
.tab-btn.active { background: var(--primary); color: white; }

/* Nav Bottom */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: white; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #eee; z-index: 100; }
.bottom-nav a { text-decoration: none; color: #999; text-align: center; font-size: 0.8rem; }
.bottom-nav a:hover { color: var(--primary); }

/* Modal */
.modal { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; z-index: 200; }
.modal-content { background: white; padding: 20px; border-radius: 10px; width: 90%; max-width: 400px; }
.close { float: right; cursor: pointer; font-size: 1.5rem; }

/* --- NOVO MENU ELEGANTE --- */
.main-nav {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #F0EAE0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #A67B7B;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links-group {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #C29B61;
}

.nav-link.active {
    color: #C29B61;
    border-bottom: 1px solid #C29B61;
}

@media (max-width: 600px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .nav-links-group { gap: 15px; }
}

/* --- ESTILO DAS ORAÇÕES --- */
.devotional-header {
    text-align: center;
    padding: 60px 20px;
    background: #FFFBF0; /* Creme suave */
    margin-bottom: 40px;
}
.prayer-day-card {
    background: white;
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #F9F9F9;
}
.day-number {
    font-family: 'Pinyon Script', cursive;
    color: #C29B61;
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}
.day-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #5D4D4D;
    margin-bottom: 20px;
}
.verse-box {
    border-left: 3px solid #A67B7B;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #777;
    background: #FFFDF9;
    padding: 15px 20px;
}
.prayer-text {
    font-weight: bold;
    color: #A67B7B;
}
