/*
Theme Name: Kadence Child
Theme URI: https://example.com
Description: Tema hijo de Kadence
Author: Tu Nombre
Template: kadence
Version: 1.0
*/

/* Aquí puedes agregar CSS personalizado */
/* =========================
   CONTENEDOR GENERAL DOCTORES
========================= */
.doctor-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   CARD SUPERIOR
========================= */
.doctor-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

/* IMAGEN */
.doctor-image {
    background: #f4f7fb;
    padding: 20px;
}

.doctor-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* INFORMACIÓN */
.doctor-info {
    padding: 35px 40px;
    background: #f9fbff;
    position: relative;
}

/* Piso destacado */
.doctor-floor {
    font-size: 20px;
    font-weight: 700;
    color: #0A3D91;
    margin-bottom: 5px;
}

/* Consultorio */
.doctor-office {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Nombre */
.doctor-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

/* Especialidad */
.doctor-specialty {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
}

/* Contacto */
.doctor-contact {
    font-size: 14px;
    margin-bottom: 8px;
}

.doctor-contact a {
    text-decoration: none;
    color: #0A3D91;
    font-weight: 500;
}

.doctor-contact a:hover {
    text-decoration: underline;
}

/* Bluecard estilo botón pequeño */
.bluecard-badge {
    display: inline-block;
    margin-top: 15px;
    background: #0A3D91;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* =========================
   SECCIONES INFERIORES
========================= */

.doctor-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Cada bloque tipo tarjeta */
.doctor-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Títulos */
.doctor-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0A3D91;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Iconos */
.doctor-section h3 i {
    font-size: 16px;
}

/* Texto */
.doctor-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .doctor-header {
        grid-template-columns: 1fr;
    }

    .doctor-image {
        text-align: center;
    }

    .doctor-image img {
        max-width: 280px;
    }

    .doctor-section-wrapper {
        grid-template-columns: 1fr;
    }

    .doctor-info {
        padding: 30px;
    }

}

/* =========================
   FINAL DOCTORES
========================= */



