* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.hero {
    position: relative;
    background-image: url('img3.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem */
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.left {
    flex: 1;
    min-width: 300px;
}

.right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.countdown {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.countdown #contador {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.countdown strong {
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #27ae60;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #219150;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}