/* --- CONTACTO EDOGO--- */

.contacto-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #fffaf0, #f5ede9);
    /*  footer  */
    min-height: calc(100vh - 70px - 250px); 
}

/* Contenedor de Imagen/Logo */
.logo-placeholder {
    background: linear-gradient(145deg, #8c7e7a, #6f6460);
    height: 180px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.info-texto {
    background-color: #d8c8c4;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-texto h2 {
    font-family: 'BebasNeue', sans-serif, system-ui;
    font-size: 2.5rem;
    color: #323232;
    text-transform: uppercase;
}

.info-texto p {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.contacto-formulario {
    background-color: #d8c8c4;
    border-radius: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 162, 0, 0.1);
}

.form-label {
    font-family: 'BebasNeue', sans-serif, system-ui;
    font-size: 1.3rem;
    color: #323232;
    letter-spacing: 1px;
}

.edogo-input {
    background-color: #8c7e7a !important;
    border: none !important;
    border-radius: 15px !important;
    color: #fff !important;
    padding: 15px !important;
    transition: 0.3s;
}

.edogo-input:focus {
    background-color: #6f6460 !important;
    box-shadow: 0 0 0 3px rgba(255, 162, 0, 0.4) !important;
}

.edogo-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-enviar-edogo {
    padding: 15px;
    background-color: #323232;
    color: #ffa200;
    border: 2px solid #323232;
    border-radius: 50px;
    font-family: 'BebasNeue', sans-serif, system-ui;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-enviar-edogo:hover {
    background-color: #ffa200;
    color: #323232;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}







@media (max-width: 991px) {
    .logo-placeholder {
        height: 140px;
    }
    .info-texto {
        padding: 30px !important;
    }
}