#timer {
    background-color: #e1f5fe; /* Azul bebê que você já usa na goal-section */
    border: 2px solid #00306e;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
}


/* Reset Básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 24px; color: #00306e; margin-bottom: 30px; }

/* HERO - O Segredo do Globo */
.hero {
    background: url('../img/globo.gif') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    position: relative;
    width: 100%;
}

.hero-card {
    background: rgba(0, 48, 110, 0.9); /* Azul escuro com transparência */
    color: #ffffff;
    padding: 40px 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    width: 90%; /* Responsivo para telas menores */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-card h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
}

.hero-card p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.4;
}

/* OBJETIVO - Fundo Azul Bebê */
.goal-section {
    background-color: #e1f5fe;
    padding: 60px 0;
    text-align: center;
}

.goal-list { max-width: 800px; margin: 0 auto; text-align: left; }
.goal-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.goal-icon { font-size: 20px; }

/* FONTES DE DADOS */
.data-section { padding: 60px 0; text-align: center; }
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.data-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.card-emoji { font-size: 24px; display: block; margin-bottom: 15px; }

/* FERRAMENTAS */
.tools-section {
    padding: 60px 5%;
    background: #ffffff;
    text-align: center;
}
.section-header h2 {
    color: #00306e;
    font-size: 2rem;
    margin-bottom: 10px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.tool-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 48, 110, 0.1);
}

.tool-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.tool-card h3 {
    color: #00306e;
    margin-bottom: 10px;
}

.tool-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}
.btn-dark {
    display: inline-block;
    background: #00306e;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .tool-card {
        padding: 20px;
    }
}