/* ===================== FORMULARIO ===================== */
#form-necesito-ayuda {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 180, 197, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#form-necesito-ayuda:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 180, 197, 0.15);
}

.input-necesito-ayuda {
    border: 2px solid #e3fafc;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.input-necesito-ayuda:focus {
    border-color: #00B4C5;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.1);
}

#btn-necesito-ayuda {
    background: linear-gradient(45deg, #00B4C5, #00c6d8);
    color: white;
    padding: 12px 35px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#btn-necesito-ayuda::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

#btn-necesito-ayuda:hover::after {
    left: 100%;
}

#btn-necesito-ayuda:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 180, 197, 0.3);
}

/* ===================== LOGOS ===================== */
.text-center > img { /* Logo principal Volver a Soñar */
    width: min(250px, 100%);
    height: auto;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.text-center > img:hover {
    transform: scale(1.05);
}

.logo-contacto img { /* Logo RWR */
    width: 180px;
    height: auto;
    opacity: 0.9;
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

.logo-contacto img:hover {
    opacity: 1;
    transform: translateX(10px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    #form-necesito-ayuda {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .input-necesito-ayuda {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    #btn-necesito-ayuda {
        width: 100%;
        padding: 12px;
    }
    
    .logo-contacto img {
        width: 140px;
        margin: 0 auto 1rem;
        display: block;
    }
}