* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #333;
    position: relative;
    min-height: 100vh;
    padding-bottom: 100px; /* Espaço para o footer */
}

.section {
    padding: 60px 20px;
    margin: 30px 5%; 
    width: 90%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.hero {
    text-align: center;
    position: relative;
}

.hero-content {
    padding: 20vh 0; /* Espaçamento de 20% da altura viewport no topo e rodapé */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.content .image-column {
    flex: 1;
}

.content .text-column {
    flex: 1;
}

.content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Estilos para o rodapé */
.footer {
    background-color: #FFD700; /* Amarelo */
    width: 100%;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cta-button {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        margin: 15px 5%;
    }
    
    .hero-content {
        padding: 15vh 0;
    }
    
    .footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    body {
        padding-bottom: 150px; /* Mais espaço para o footer em coluna */
    }
}
