* {
    padding: 80px 20px;
}

.ofertas h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.ofertas p {
    margin-bottom: 25px;
    font-size: 18px;
}

.contacto {
    padding: 80px 20px;
    text-align: center;
}

.contacto h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

form textarea {
    min-height: 150px;
}

form button {
    padding: 15px;
    border: none;
    background: #00bfff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

form button:hover {
    background: #0099cc;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    .hero-texto h1 {
        font-size: 38px;
    }

    .hero-texto p {
        font-size: 18px;
    }

}