/* ================================================
   🎨 CSS da Landing Page - JUPTI (home.css)
   Versão CORRIGIDA para evitar sobreposição
   ================================================ */

/* --- Reset e Padrões Globais --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* --- Cabeçalho Fixo --- */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.home-logo {
    font-size: 24px;
    font-weight: 700;
    color: #0f4c5c;
}

.mobile-menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: #0f4c5c;
}

/* --- Menu Mobile --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px; /* Altura do header */
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
    flex-direction: column;
}

.mobile-link {
    text-decoration: none;
    color: #333;
    padding: 18px 30px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.mobile-link:last-child {
    border-bottom: none;
}

/* --- Seção Principal (Hero) --- */
.hero-section {
    background-color: #679099;
    color: white;
    padding: 80px 20px 40px 20px; /* Padding ajustado */
    text-align: center;
    /* ✅ CORREÇÃO PRINCIPAL: Adiciona margem no topo para não ficar atrás do header */
    margin-top: 68px; 
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Contador Regressivo --- */
.countdown-container {
    margin: 40px 0;
}

.countdown-container h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#countdown {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* --- Botão de Ação --- */
.hero-cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: white;
    color: #333;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* --- Seção "Nossa História" --- */
.story-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 32px;
    color: #0f4c5c;
    margin-bottom: 40px;
    text-align: center;
}

.story-text {
    font-size: 17px;
    color: #555;
    text-align: left;
}

.story-text p {
    margin-bottom: 25px;
}

.story-highlight {
    font-style: italic;
    color: #0f4c5c;
    font-weight: 600;
    padding: 20px;
    border-left: 4px solid #0f4c5c;
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.story-final-quote {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
    color: #333;
}

/* --- Rodapé --- */
.home-footer {
    background-color: #f8f9fa;
    color: #555;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #0f4c5c;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .home-header {
        padding: 15px 20px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}
