/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Corpo da página */
body {
    height: 100vh;
    background: url('fundopvm.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white; /* Adicionado cor branca padrão para o texto */
}

/* Container central */
.container {
    text-align: center;
    padding: 70px;
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente para melhor leitura */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    max-width: 500px; /* Limita a largura para centralizar o texto */
    animation: fadeIn 2s ease;
}

/* Logo */
.logo {
    width: 300px; /* aumentado para impacto visual */
    height: auto;
    margin-bottom: 40px;
    animation: fadeInDown 1.5s ease;
}

/* === NOVOS ESTILOS PARA O CONTEÚDO === */

/* Título (h1) */
h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #00ff80; /* Um verde brilhante para destaque */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    animation: slideUp 1.2s ease;
}

/* Parágrafo de descrição */
.description-text {
    font-size: 1.1em;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 0 10px;
    animation: slideUp 1.5s ease;
}

/* Botão profissional */
#descobrirBtn { /* Usando o ID para maior especificidade */
    background: linear-gradient(135deg, #00703a, #00a152);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease, box-shadow 0.4s ease;
    letter-spacing: 0.5px;
    margin-top: 20px; /* Garante que o botão tenha espaço */
}

#descobrirBtn:hover {
    background: linear-gradient(135deg, #00994a, #00c261);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

/* Animações (Certifique-se de que estão definidas) */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}