body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 20px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}

.hero-section {
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.2em;
    color: #333;
    line-height: 1.2;
}

.hero-title .highlight {
    color: yellow;
    background-color: #333; /* Para garantir contraste */
    padding: 2px 5px;
    border-radius: 3px;
}

.headline-image {
    max-width: 100%;
    height: auto;
    display: block; /* Garante que a imagem seja um bloco para centralização e ajuste de largura */
    margin: 0 auto; /* Centraliza a imagem */
}

.video-section {
    margin-bottom: 30px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 200%; /* Aumento da altura para 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
}

.video-wrapper iframe,
.video-wrapper video,
.video-wrapper object,
.video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.button-container {
    text-align: center;
    margin: 20px 0;
}

.delayed-button-wrapper {
    display: none;
}

.pulse-button {
    display: inline-block;
    background-color: #28a745; /* Um verde chamativo para o botão de download */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

.pulse-button:hover {
    background-color: #218838;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.featured-section {
    text-align: center;
    margin-bottom: 30px;
}

.featured-title {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 15px;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.delay-section {
    text-align: center;
    padding: 20px;
    background-color: #e9e9e9;
    border-radius: 8px;
    margin-top: 30px;
}

.delay-content {
    /* Este conteúdo será exibido após o atraso via JavaScript */
    font-size: 1.1em;
    color: #666;
}

.delay-content button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.delay-content button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8em;
    }

    .featured-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5em;
    }

    .container {
        margin: 10px;
        padding: 15px;
    }
} 