/* --- Variáveis --- */
:root {
    --primary-blue: #002F5D;
    --secondary-blue: #00509d;
    --accent-teal: #009CA6;
    --accent-gold: #F4C430; 
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --whatsapp-green: #25D366;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* --- Header --- */
.main-header {
    background-color: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.header-logo { max-width: 500px; height: auto; }

/* --- Hero Section --- */
.hero-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top right, #eef4f8 0%, #fff 60%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media(min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hero-text { flex: 1; padding-right: 2rem; }
    .hero-image { flex: 1; display: flex; justify-content: flex-end; }
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0px var(--accent-gold); /* Detalhe visual moderno */
}

.badge {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.page-title {
    color: var(--primary-blue);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--accent-teal);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.cta-button {
    background-color: var(--accent-teal);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 156, 166, 0.3);
}
.cta-button:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* --- Objetivos (Cards) --- */
.goals-section { padding: 5rem 0; background-color: white; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { color: var(--primary-blue); font-size: 2.2rem; margin-bottom: 0.5rem; }
.section-desc { color: #888; font-style: italic; }

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.goal-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: white;
}

.icon-box {
    width: 60px; height: 60px;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.goal-card h3 { color: var(--primary-blue); margin-bottom: 1rem; font-size: 1.25rem; }
.goal-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* --- Destaque --- */
.highlight-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.highlight-content { max-width: 800px; margin: 0 auto; padding: 0 1rem; }
.highlight-icon { font-size: 3rem; color: var(--accent-gold); margin-bottom: 1.5rem; }
.highlight-section h3 { font-size: 2rem; margin-bottom: 1rem; }
.highlight-section p { font-size: 1.1rem; opacity: 0.9; }

/* --- Tabela --- */
.table-section { padding: 5rem 0; }
.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    text-align: center;
}

.table-header-main {
    background-color: var(--primary-blue);
    color: white;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.table-subheader th {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 1rem;
    font-weight: 800;
}

td { padding: 1.5rem; border-bottom: 1px solid #eee; color: var(--text-dark); font-size: 1.1rem; }
.highlight-cell { font-weight: 700; color: var(--primary-blue); text-align: left; padding-left: 2rem; }
.vertical-center { vertical-align: middle; background-color: #fdfdfd; font-weight: 600; color: var(--text-light); }

/* --- Footer & WhatsApp --- */
.footer-note { text-align: center; padding: 2rem; color: #999; font-size: 0.9rem; }
.whatsapp-btn {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: var(--whatsapp-green); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none; z-index: 100; transition: transform 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* Responsivo */
@media(max-width: 768px) {
    .page-title { font-size: 2.5rem; }
    .hero-image img { box-shadow: 10px 10px 0px var(--accent-gold); margin-top: 2rem; }
}