/* Base y Tipografía */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
}

/* Header Profesional */
.contenedor1 {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 4px solid #e40e9d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logos-texto {
    display: flex;
    justify-content:space-around;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
}

.ine { height: 60px; }
.iso { height: 70px; }
.direccion { text-align: center; font-size: 0.85rem; font-weight: bold; color: #555; }

/* Título */
.lista-titulo {
    text-align: center;
    margin: 40px 0;
    font-weight: 700;
    color: #1d57a8;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Contenedor Principal */
.contenedor-principal {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buscador */
.buscador-seccion {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Botón Nueva Búsqueda */
.new-search {
    display: block;
    margin: 20px auto 0;
    background: #1d57a8;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.new-search:hover {
    background: #e40e9d;
    transform: translateY(-2px);
}

/* Tarjeta de Detalles */
.details-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease;
}

.details-header {
    background: #1d57a8;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-header h2 { margin: 0; font-size: 1.2rem; }
.badge { background: #e40e9d; padding: 5px 12px; border-radius: 15px; font-size: 0.8rem; }

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px;
}

.info-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.info-item strong { color: #1d57a8; display: block; font-size: 0.75rem; text-transform: uppercase; }

.details-footer {
    background: #fdf2f9;
    padding: 15px 25px;
    font-size: 0.9rem;
    border-top: 1px solid #f9e1f0;
}

/* Botón Salir */
.salir { text-align: center; margin: 40px 0; }
.btn-salir {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}
.btn-salir img { width: 60px; height: 60px; border-radius: 50%; }
.btn-salir:hover { transform: scale(1.1); }

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .logos-texto { flex-direction: column; gap: 15px; }
    .details-grid { grid-template-columns: 1fr; }
    .buscador-seccion { padding: 15px; }
}