/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif; /* Fonte padrão para o corpo */
    line-height: 1.6;
    color: #f0f0f0; /* Cor do texto principal (claro para fundo escuro) */
    display: flex;
    flex-direction: column; /* Layout em coluna (conteúdo + footer) */
    justify-content: center; /* Centraliza o conteúdo principal */
    align-items: center; /* Centraliza horizontalmente */
    min-height: 100vh;
    overflow: hidden;
    position: relative; /* Necessário para o footer absoluto */
}

/* Pseudo-elemento para a imagem de fundo e overlay */
body::before {
    content: '';
    position: fixed; /* Posição fixa para cobrir a tela inteira */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg'); /* **TROQUE POR SUA IMAGEM!** */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Overlay escuro ou colorido sobre a imagem */
    background-color: rgba(0, 0, 0, 0.7); /* Overlay preto semi-transparente */
    background-blend-mode: overlay; /* Mistura a cor do overlay com a imagem */
    z-index: -1; /* Garante que fique atrás de tudo */
    /* Opcional: efeito de paralaxe suave */
    /* transform: translateZ(-1px); */
}

.container {
    text-align: center;
    /* Fundo do container opcional - use rgba com baixa opacidade ou remova para ver o fundo diretamente */
    /* background-color: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(3px); */ /* Efeito de desfoque sutil */
    padding: 40px 30px;
    border-radius: 8px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */ /* Sombra sutil */
    max-width: 800px;
    width: 90%;
    z-index: 1; /* Garante que fique acima do background */
    /* Centraliza o container dentro do flex column do body */
    margin-top: auto;
    margin-bottom: auto;
}

.logo {
    max-width: 200px; /* Tamanho para o logo */
    margin-bottom: 30px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); /* Sombra no logo se for PNG transparente */
}

h1 {
    font-family: 'Montserrat', sans-serif; /* Fonte para o título */
    font-size: 4em; /* Tamanho grande para o título */
    font-weight: 700; /* Peso da fonte */
    color: #ffffff; /* Cor branca */
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra sutil no texto */
}

.subtitle {
    font-size: 1.5em;
    font-weight: 300; /* Peso da fonte mais leve */
    color: #cccccc; /* Cor cinza claro */
    margin-bottom: 30px;
}

.message {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Estilos para previsão/data (se descomentar) */
/* .coming-soon-text {
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 5px;
}

.date {
    font-size: 1.6em;
    font-weight: 700;
    color: #00bcd4; cor de destaque
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
} */

/* Estilos para o formulário (se descomentar) */
/* .signup-form { margin-top: 20px; }
.signup-form p { margin-bottom: 15px; font-size: 1em; color: #ccc; }
.signup-form form { display: flex; justify-content: center; align-items: center; flex-wrap: wrap;}
.signup-form input[type="email"] {
    padding: 12px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 250px; flex: 1; min-width: 200px;
}

.signup-form button {
    padding: 12px 25px;
    margin: 5px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 700;
}

.signup-form button:hover {
    background-color: #0097a7;
} */

/* Estilos para links sociais (se descomentar) */
/* .social-links { margin-top: 40px; }
.social-links p { margin-bottom: 15px; font-size: 1em; color: #ccc;}
.social-links a {
    color: #ffffff;
    font-size: 1.1em; /* Tamanho do texto */
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.social-links a:hover {
    color: #00bcd4; /* Cor de destaque */
} */

footer {
    position: absolute; /* Posição absoluta para fixar no rodapé */
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #aaa; /* Cor clara */
    z-index: 1; /* Acima do background */
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        width: 95%;
    }

    h1 {
        font-size: 3em; /* Reduz tamanho do título */
    }

    .subtitle {
        font-size: 1.2em;
    }

    .message {
        font-size: 1em;
    }

    /* .date { font-size: 1.4em; } */

    /* .signup-form input[type="email"],
    .signup-form button {
        width: 80%; centraliza inputs menores */
     /* } */
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em; /* Reduz mais o título em telas bem pequenas */
    }

    .subtitle {
        font-size: 1em;
    }

     /* .signup-form input[type="email"],
     .signup-form button {
        width: 95%; /* Quase 100% em telas muito pequenas */
     /* } */
}