/* BANNER (Consistencia con las otras páginas) */
.page-banner {
    height: 35vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/20kva2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
/* CONTENEDOR DE CONTACTO */
.contacto-wrapper {
    max-width: 1100px;
    margin: -60px auto 100px; /* Sube sobre el banner */
    padding: 0 20px;
    position: relative;
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* COLUMNA DE INFORMACIÓN */
.contacto-info {
    background: #1a1a1a;
    color: white;
    padding: 60px;
}

.contacto-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #d34f25;
}

.contacto-info p {
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 24px;
    background: rgba(211, 79, 37, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* COLUMNA DEL FORMULARIO */
.form-card {
    padding: 60px;
    background: white;
}

.input-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.input-group input, 
.input-group textarea {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #d34f25;
    background: white;
    box-shadow: 0 0 0 4px rgba(211, 79, 37, 0.05);
}

.btn-enviar {
    background: #d34f25;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-enviar:hover {
    background: #b8431e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 79, 37, 0.2);
}
.notificacion {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: white !important;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4) !important;
    z-index: 999999 !important;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 6px solid #d34f25 !important;
    width: 90%;
    max-width: 450px !important;
    display: flex !important;
}
.notificacion.mostrar {
    bottom: 40px !important;
}
.notificacion-contenido {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.notificacion-icon {
    font-size: 30px;
}
.notificacion-texto h4 {
    margin: 0;
    color: #1a1a1a;
}
.notificacion-texto p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
.btn-cerrar {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    margin-left: auto;
}
.btn-cerrar:hover {
    color: #333;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .contacto-container {
        grid-template-columns: 1fr;
    }
    .contacto-info {
        padding: 30px;
    }
    .form-card {
        padding: 30px;
    }
}