/* ==========================================================================
   ESTILOS PÁGINA "CONTACTO" (INTRA)
   ========================================================================== */

/* Banner Principal */
.page-header {
    padding: 150px 0 80px 0; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 4px solid #d90429;
}

.nosotros-header {
    position: relative;
    padding: 100px;
    background-image: linear-gradient(rgba(4, 41, 75, 0.49), rgba(4, 41, 75, 0.463)), url('../img/hero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.nosotros-header h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Tarjetas de Información */
.why-card {
    background: #ffffff;
    border-radius: 8px;
    border-top: 3px solid #c3c2c273;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-card:hover {
    transform: translateY(-5px);
    border-top-color: #d90429;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.why-icon {
    font-size: 2.2rem !important; 
    color: #d90429;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

/* Contenedor del Formulario */
.contact-form-container {
    border-top: 3px solid #c3c2c273;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    border-top-color: #d90429;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Campos del Formulario */
.custom-input {
    background-color: #f7f7f7c3;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.95rem; 
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #d90429;
    box-shadow: 0 0 0 0.2rem rgba(217, 4, 41, 0.15); 
    outline: none;
}

/* Botón de Enviar */
.btn-contact-submit {
    display: inline-block;
    background-color: #04294b;
    color: #ffffff;
    border: 2px solid #04294b;
    transition: all 0.3s ease;
    border-radius: 6px;
    letter-spacing: 1px; 
}

.btn-contact-submit:hover {
    background-color: transparent;
    color: #d90429;
    border-color: #d90429;
    transform: translateY(-2px);
}

/* ==========================================================================
   BOTÓN DE WHATSAPP FLOTANTE
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: white;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}