body {
    font-family: 'Arial', sans-serif;
    background-color: #f8fafc;
    color: #333;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-img {
    max-height: 55px;
}

.info-header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    color: #1e293b;
}

.info-item i {
    color: #00b4d8;
    font-size: 1.5rem;
    margin-top: 2px;
}

.info-item div span {
    display: block;
}

.info-item .titulo-info {
    font-weight: bold;
    color: #0d2a5c;
    font-size: 1.05rem;
}

/* Estructura exclusiva y ampliada para el equipo */
.main-equipo-detallado {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.main-equipo-detallado h1 {
    color: #0d2a5c;
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.subtitulo-equipo-detallado {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.grid-equipo-grande {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.tarjeta-doctor-grande {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(13, 42, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.tarjeta-doctor-grande:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 42, 92, 0.12);
}

.tarjeta-doctor-grande img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
}

.info-doctor-grande {
    padding: 25px;
}

.info-doctor-grande h3 {
    color: #0d2a5c;
    margin: 0 0 8px 0;
    font-size: 1.4rem;
}

.info-doctor-grande p {
    color: #00b4d8;
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-volver {
    display: inline-block;
    margin-top: 60px;
    padding: 14px 30px;
    background-color: #0d2a5c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-volver:hover {
    background-color: #00b4d8;
}