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

body {
    padding-top: 3.5em;
    font-family: 'Outfit';
    background: linear-gradient(#177cbb, #001624);
}

.contact-container {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: inherit;
    flex-wrap: wrap;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2 {
    font-weight: 600;
    color: #EAB11A;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #EAB11A;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #ECE9DE;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #ff994f, #EAB11A);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

/* ✅ Versión responsiva corregida */
@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-inputs {
        width: 80vw;
    }

    .contact-right {
        display: block;
        margin-top: 20px;
    }

    .contact-right img {
        width: 80vw;
        height: auto;
    }
}

body, .logo a, #menu, nav, header {
    font-family: "Poppins", sans-serif !important;
}
