@font-face {
    font-family:'Citrus';
    src:url("../fonts/CitrusGothicRough-Regular.ttf");
}


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto padrão branco */
    overflow-x: hidden;
}

/* Barra no topo */
.top-bar {
    width: 100%;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite a quebra de linha se necessário */
}

.top-bar .timer {
    margin-right: 20px; /* Espaço entre o texto e o contador */
    font-size: 20px;
    text-transform: uppercase;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre as seções do contador */
    flex-wrap: wrap;
}

.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 18px;
}

.countdown-label {
    font-size: 8px;
}



/* Article 1: Background Image, Text, and Signup Form */
.article-signup {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Diminuir o blur */
    backdrop-filter: blur(0px); /* Blur reduzido */
    display: flex;
    align-items: center;
    padding-left: 5%; /* Mover mais para a esquerda */
    position: relative;
}

.etiqueta-image {
    position: absolute;
    top: 10px; /* Ajustar a posição superior */
    right: 10px; /* Ajustar a posição à direita */
    max-width: 250px; /* Ajustar o tamanho da imagem */
    rotate: 0.3rad;
    z-index: 10; /* Garantir que a imagem esteja na frente */
}

.signup-container {
    max-width: 500px; /* Aumentar o tamanho do formulário */
    width: 100%;
}

.signup-text {
    margin-bottom: 20px;
    white-space: nowrap; /* Evitar quebra de linha no título */
}

.signup-text h1 {
    color: #fff;
    font-size: 72px; /* Aumentar ainda mais o tamanho do título */
    font-family: 'Citrus', sans-serif; /* Substitua 'Citrus' pela sua fonte personalizada */
}

.signup-text p {
    color: #ddd;
    font-size: 24px; /* Aumentar ainda mais o tamanho do subtítulo */
    margin-bottom: 20px;
    margin-left: 50px;
}

.signup-container form input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #fff; /* Borda branca */
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    margin-left: 50px;
}

.signup-container form button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 50px;
}

.signup-container form button:hover {
    background-color: #e65500;
}

/* Article 2: Video Section with Text */
.article-video-text {
    display: flex;
    align-items: center;
    padding: 0; /* Remover padding */
    background-color: #000; /* Fundo preto */
}

.article-video-text .video-container {
    flex: 1;
    padding: 0; /* Remover padding */
}

.article-video-text .video-container iframe {
    width: 100%;
    height: 100vh; /* Ocupa toda a altura da viewport */
    border: none;
}

.article-video-text .text-container {
    flex: 1;
    padding: 20px;
    color: #ddd;
}

.article-video-text .text-container h2 {
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

/* Article 3: Footer with Social Media Links */
.article-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.article-footer h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    color: #fff;
    font-size: 18px;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
}

.social-media a:hover {
    color: #ff6600;
}

.social-media i {
    margin-right: 5px;
}

.article-footer p {
    margin-top: 20px;
    color: #999;
}

@media (max-width: 768px) {

    .top-bar {
        display: flex;
        flex-direction: column; /* Permite que o conteúdo se empilhe verticalmente */
        align-items: center; /* Centraliza horizontalmente */
        text-align: center; /* Garante que o texto esteja centralizado */
        padding: 10px; /* Adiciona padding, se necessário */
    }

    .top-bar .timer {
        font-size: 18px; /* Ajusta o tamanho da fonte, se necessário */
        margin-bottom: 10px; /* Adiciona espaço abaixo do texto */
    }

    #countdown {
        display: flex;
        justify-content: center; /* Centraliza o conteúdo horizontalmente */
        gap: 10px; /* Espaço entre as seções do contador */
    }

    .countdown-section {
        text-align: center; /* Garante que o texto dentro de cada seção esteja centralizado */
    }

    .signup-container {
        width: 100%; /* Ocupar toda a largura */
        margin: 0;
        background-color: #000;
        padding: 20px;
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .signup-text h1 {
        font-size: 48px;
        text-align: center;
    }

    .signup-text p {
        font-size: 18px;
        text-align: center;
        margin-left: 0;
    }

    .signup-container form input {
        width: 100%; /* Ajustar inputs à largura do container */
        font-size: 16px;
        margin-left: 0;
    }

    .signup-container form button {
        width: 100%; /* Ajustar botão à largura do container */
        font-size: 16px;
        margin-left: 0;
    }

    .etiqueta-image {
        max-width: 150px;
        top: 5px;
        right: 5px;
    }

    .article-video-text {
        flex-direction: column;
        margin-top: 20px; /* Adiciona espaçamento superior */
    }

    .article-video-text .video-container iframe {
        height: 50vh;
        margin-top: 100px;
    }

    .article-footer {
        padding: 20px 10px;
    }

    
}

@media (max-width: 480px) {
    .signup-container {
        width: 100%; /* Ocupar toda a largura */
        top: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .signup-text h1 {
        font-size: 36px;
    }

    .signup-text p {
        font-size: 16px;
    }

    .signup-container form input,
    .signup-container form button {
        width: 100%; /* Ajustar inputs e botão à largura do container */
        font-size: 14px;
    }

    .top-bar {
        font-size: 14px;
        padding: 6px 0;
        justify-content: center;
        align-items: center;
    }

    .signup-container {
        padding: 15px;
    }

    .article-video-text {
        flex-direction: column;
        margin-top: 30px; /* Adiciona mais espaçamento superior em telas menores */
    }

    .article-video-text .video-container iframe {
        height: 40vh;
    }

    .article-video-text .text-container {
        padding: 15px;
    }
}



