@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
.fx-pulse{
    position: relative;
    display: inline-block;
}

/* Línea base */
.fx-pulse::before{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.15);
}

/* Pulso animado */
.fx-pulse::after{
    content: "";
    position: absolute;
    top: -6px;
    left: -30%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: pulseMove 2.5s linear infinite;
    opacity: 0;
}

/* Activar al hover */
.fx-pulse:hover::after{
    opacity: 1;
}

/* Animación */
@keyframes pulseMove{
    0%{
        left: -30%;
    }
    100%{
        left: 100%;
    }
}

/* Imagen ligera interacción */
.fx-pulse img{
    transition: transform 0.3s ease;
}

.fx-pulse:hover img{
    transform: translateY(-2px);
}
.fx-heartbeat{
    position: relative;
    display: inline-block;
}

/* SVG debajo del logo */
.heartbeat-line{
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Línea ECG */
.heartbeat-line path{
    fill: none;
    stroke: #e63946; /* rojo médico */
    stroke-width: 2;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    opacity: 0;
}

/* Animación al hover */
.fx-heartbeat:hover .heartbeat-line path{
    animation: heartbeatMove 1.5s linear infinite;
    opacity: 1;
}

/* Animación ECG */
@keyframes heartbeatMove{
    0%{
        stroke-dashoffset: 120;
    }
    100%{
        stroke-dashoffset: 0;
    }
}

/* Interacción del logo */
.fx-heartbeat img{
    transition: transform 0.3s ease;
}

.fx-heartbeat:hover img{
    transform: translateY(-3px);
}
#preloader1{
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b1c2c;
}

/* CONTENEDOR */
.container1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* LOGO */
.logo{
    width: 220px;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

/* ECG */
.ecg{
    width: 300px;
    height: 80px;
}

.ecg path{
    fill: none;
    stroke: #00d4ff;
    stroke-width: 3;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: ecgMove 2s linear infinite;
}

/* TEXTO */
.loading-text{
    color: #00d4ff;
    font-family: Arial;
    margin-top: 10px;
    letter-spacing: 3px;
    text-align: center;
}

/* ANIMACIONES */
@keyframes ecgMove{
    from{ stroke-dashoffset: 500; }
    to{ stroke-dashoffset: 0; }
}

@keyframes glow{
    from{ filter: drop-shadow(0 0 5px #00d4ff); }
    to{ filter: drop-shadow(0 0 20px #00d4ff); }
}

/* ===== SLIDER HOSPITAL MODERNO ===== */

/* IMAGEN */
.hospital-bg {
    filter: brightness(0.65) contrast(1.1);
}

/* OVERLAY AZUL MÉDICO */
.tp-shape {
    background: linear-gradient(
        120deg,
        rgba(10,146,204,0.55),
        rgba(0,0,0,0.35)
    ) !important;
}

/* SUBTÍTULO */
.hospital-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A9E1FF !important;
}

/* TÍTULO */
.hospital-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px !important;
    font-weight: 800;
    line-height: 1.2;
}

/* DESCRIPCIÓN */
.hospital-desc {
    font-size: 17px !important;
    color: #e0f7ff !important;
}

/* BOTÓN */
.hospital-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 32px !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff !important;
    border-radius: 50px !important;
    text-decoration: none;

    background: linear-gradient(135deg, #0A92CC, #0dcaf0);

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 
        0 8px 20px rgba(10,146,204,0.35),
        inset 0 1px 0 rgba(255,255,255,0.2);

    backdrop-filter: blur(6px);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
/* HOVER */
.hospital-btn:hover {
    transform: translateY(-3px);
    
    background: linear-gradient(135deg, #0dcaf0, #0A92CC);

    box-shadow: 
        0 12px 30px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.hospital-btn::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: 0.4s;
}

.hospital-btn:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.hospital-btn:active {
    transform: scale(0.96);
}

.hospital-btn-emergency {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}

.hospital-btn-emergency:hover {
    background: linear-gradient(135deg, #ff0000, #990000);
}

/* TEXTO MÁS LEGIBLE */
.tp-caption {
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
/* CARRUSEL DE ESPECIALISTAS */
.owl-carousel-4col {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.owl-carousel-4col.owl-loaded {
    opacity: 1;
}

/* NAV BOTONES */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #155a96;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
    z-index: 10;
    color: #fff;
    font-size: 18px;
}

/* hover suave */
.owl-nav button:hover {
    background: #1e73be;
    transform: translateY(-50%) scale(1.08);
}

/* posición */
.owl-nav .owl-prev {
    left: -18px;
}

.owl-nav .owl-next {
    right: -18px;
}
/** publiaciones blogger***/
.owl-carousel-3col {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.owl-carousel-3col.owl-loaded {
    opacity: 1;
    visibility: visible;
}
/*CARD SERVICIOS*/
.card-servicio {
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-servicio:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  border-color: #009688; /* color principal */
}

.icon-servicio {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

.card-servicio:hover .icon-servicio {
  transform: scale(1.2);
  color: #009688;
}

.btn-servicio {
  background: linear-gradient(45deg, #009688, #00bfa5);
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}

.btn-servicio:hover {
  background: linear-gradient(45deg, #00796b, #009688);
  color: #fff;
  transform: scale(1.05);
}
/*fuente*/
.robotex {
	font-family: 'Roboto', sans-serif;
}
/** PDF **/
#pdf-container {
            width: 100%;
            height: 600px; /* Ajusta la altura según necesites */
            overflow-y: auto;
            overflow-x: hidden;
            border: 2px solid #007bff;
            border-radius: 10px;
            background: #f8f9fa;
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
            padding: 10px;
 }

/* Cada página del PDF */
 .pdf-canvas {
            width: 100%;
            border-bottom: 2px solid #ccc; /* Separación entre páginas */
            margin-bottom: 10px;
}
/*** SIS **/
.sis-title {
  border-left: 5px solid #00a65a;
  padding-left: 12px;
  margin-bottom: 20px;
}
	/* Card base */
.card-sis {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-left: 6px solid #00a65a;
  transition: all 0.3s ease;
}

/* Hover elegante */
.card-sis:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Variantes de color */
.card-green {
  border-left-color: #00a65a;
}

.card-blue {
  border-left-color: #007bff;
}

.card-orange {
  border-left-color: #f39c12;
}

.card-red {
  border-left-color: #e74c3c;
}

/* Títulos */
.card-sis h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Texto */
.text-content {
  color: #444;
  line-height: 1.7;
}

/* Íconos */
.card-sis i {
  margin-right: 8px;
}

/* Caja destacada */
.highlight-box {
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  border-left: 5px solid #00a65a;
  padding: 18px;
  border-radius: 10px;
}
.event-details{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
/**consultorios**/
.lista-consultorios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:10px;
    margin-top:25px;
}

.consultorio-card{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border-radius:12px;
    padding:13px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    transition:all .3s ease;
    border-left:5px solid #0d6efd;
}

.consultorio-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

.consultorio-icon{
    width:48px;
    height:48px;
    background:#eaf2ff;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.consultorio-info h5{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.consultorio-info span{
    color:#666;
    font-size:13px;
}
/*** horario **/
.horario-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    border-top:5px solid #0d6efd;
}

.horario-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.horario-header i{
    font-size:26px;
    color:#0d6efd;
}

.horario-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#222;
}

.horario-body{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.horario-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    background:#f8f9fa;
    border-radius:10px;
    transition:0.3s;
}

.horario-item:hover{
    background:#eef4ff;
    transform:translateX(4px);
}

.dia{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#333;
}

.dia i{
    color:#0d6efd;
}

.hora{
    font-weight:700;
    color:#198754;
}

.hora.cerrado{
    color:#dc3545;
}
/*reclamos */
.reclamos-section{
    padding:10px 0;
}

.section-title{
    text-align:center;
    margin-bottom:20px;
}

.badge-title{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.reclamos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.reclamo-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.reclamo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.reclamo-card .icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:26px;
    color:#fff;
}

.reclamo-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    color:#222;
}

.reclamo-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/* Colores */

.reclamo-card.info .icon{
    background:#0dcaf0;
}

.reclamo-card.success .icon{
    background:#198754;
}

.reclamo-card.warning .icon{
    background:#ffc107;
    color:#222;
}

.reclamo-card.danger .icon{
    background:#dc3545;
}
/* CARD MANUAL DESTACADA */
.reclamo-card.manual{
    border:2px solid #0d6efd;
    background:linear-gradient(135deg,#eef4ff,#ffffff);
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(13,110,253,0.18);
    transform:scale(1.03);
}

/* Brillo decorativo lateral */
.reclamo-card.manual::after{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:140px;
    height:140px;
    background:rgba(13,110,253,0.12);
    border-radius:50%;
}

/* Banda superior */
.reclamo-card.manual::before{
    content:"GUÍA PASO A PASO";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:#0d6efd;
    color:#fff;
    font-size:11px;
    letter-spacing:1px;
    text-align:center;
    padding:5px 0;
    font-weight:700;
}

/* ICONO GRANDE DEL MANUAL */
.reclamo-card.manual .icon{
    font-size:38px;
    color:#0d6efd;
    background:#fff;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-bottom:14px;
    box-shadow:0 6px 16px rgba(13,110,253,0.25);
}

/* Espacio por la banda */
.reclamo-card.manual h4{
    margin-top:20px;
    color:#0d47a1;
}

/* BOTÓN DESCARGA PREMIUM */
.btn-manual{
    display:inline-block;
    margin-top:14px;
    padding:11px 20px;
    background:linear-gradient(135deg,#0d6efd,#0b5ed7);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    box-shadow:0 6px 18px rgba(13,110,253,0.45);
}

.btn-manual:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(13,110,253,0.55);
	color:#FAEDED;
	background: linear-gradient(135deg, #dc3545, #b02a37);
}
/* CONTENEDOR MODERNO */
.box-modern{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    margin-bottom:25px;
    transition:0.3s;
}
.box-modern:hover{
    transform:translateY(-4px);
}

/* TITULOS */
.title-modern{
    font-weight:700;
    font-size:20px;
    margin-bottom:18px;
    color:#0d6efd;
    border-left:5px solid #0d6efd;
    padding-left:10px;
}

/* LISTA HORARIOS */
.list-hours li{
    padding:10px 0;
    border-bottom:1px dashed #e5e5e5;
    font-size:15px;
}
.list-hours li:last-child{ border-bottom:none; }

.hour-value{
    float:right;
    font-weight:bold;
    color:#333;
}

/* ICONOS */
.icon-title{
    margin-right:8px;
    color:#0d6efd;
}

/* TEXTO CONTENIDO */
.text-modern{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* TABLA */
.table-modern{
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.table-modern thead{
    background:#0d6efd;
    color:#fff;
}

.table-modern th{
    border:none !important;
}

.table-modern td{
    vertical-align:middle !important;
}

/* ALERT INFORMATIVO */
.section-alert{
    background:#eaf4ff;
    padding:12px 18px;
    border-left:5px solid #0d6efd;
    border-radius:8px;
    margin:20px 0;
    font-weight:600;
}
/* MODALES MODERNOS */
.modal-content{
    border-radius:12px;
    overflow:hidden;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.modal-header-modern{
    background:#0d6efd;
    color:#fff;
    padding:8px 16px;
}

.modal-title-modern{
    font-size:20px;
    font-weight:700;
	color:#fff;
}

.modal-body-modern{
    padding:15px 20px;
}

.step-list{
    counter-reset:step;
    padding-left:0;
}

.step-list li{
    list-style:none;
    margin-bottom:14px;
    padding-left:45px;
    position:relative;
    font-size:14px;
    line-height:1.6;
}

.step-list li:before{
    counter-increment:step;
    content:counter(step);
    position:absolute;
    left:0;
    top:0;
    width:30px;
    height:30px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:30px;
    font-weight:bold;
}

.note-box{
    background:#eaf4ff;
    padding:15px;
    border-left:5px solid #0d6efd;
    border-radius:8px;
    margin-top:15px;
}

.modal-footer{
    text-align:center;
}
/* =========================
   MODALES UAU
========================= */

.modal-uau .modal-content{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.modal-uau .modal-body{
    padding: 20px;
    background: #fff;
}

.modal-uau .modal-footer{
    border-top: 1px solid #f1f1f1;
    padding: 5px 12px;
    background: #fafafa;
    text-align: center;
}

/* =========================
   HEADER TITLES
========================= */

.uau-header{
    margin-bottom: 15px;
}

.uau-header .title{
    font-size: 28px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 3px;
}

.uau-header .sub-title{
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
}

/* =========================
   LISTA FUNCIONES
========================= */

.uau-list{
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.uau-list li{
    position: relative;
    padding: 10px 10px 10px 40px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 12px;
    line-height: 1.7;
    transition: all .3s ease;
}

.uau-list li:hover{
    background: #f1f7ff;
    transform: translateY(-2px);
}

.uau-list li i{
    position: absolute;
    left: 18px;
    top: 18px;
    color: #c62828;
    font-size: 18px;
}

/* =========================
   TEXTO
========================= */

.uau-text{
    font-size: 14px;
    color: #555;
    line-height: 1.8;
	text-align: justify;
}

/* =========================
   TABLAS
========================= */

.uau-table{
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.uau-table thead{
    background: #c62828;
    color: #fff;
}

.uau-table thead th{
    border: none !important;
    padding: 6px !important;
    font-size: 12px;
}

.uau-table tbody tr{
    transition: .2s;
}

.uau-table tbody tr:hover{
    background: #fafafa;
}

.uau-table td{
    vertical-align: middle !important;
    padding: 10px !important;
}

/* =========================
   BOTONES
========================= */

.btn-uau{
    background: #c62828;
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    transition: .3s;
}

.btn-uau:hover{
    background: #a91f1f;
    color: #fff;
}

/* =========================
   TELEFONOS
========================= */

.uau-contact{
    margin-top: 25px;
}

.uau-contact li{
    list-style: none;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    font-size: 16px;
}

.uau-contact i{
    width: 30px;
    color: #c62828;
    font-size: 18px;
}
/* =========================
   MODALES CITAS
========================= */

.modal-citas .modal-content{
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.modal-citas .modal-header{
    border: none;
    padding: 15px 15px 10px;
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    position: relative;
}

.modal-citas .modal-body{
    padding: 20px;
    background: #fff;
}

.modal-citas .close-modal{
    position: absolute;
    right: 18px;
    top: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    text-align: center;
    line-height: 35px;
    transition: .3s;
}

.modal-citas .close-modal:hover{
    background: rgba(255,255,255,.3);
    color: #fff;
}

.logo-modal{
    max-width: 220px;
    margin: auto;
    background: #fff;
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.cita-header{
    margin-bottom: 25px;
}

.cita-header .title{
    font-size: 30px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 5px;
}

.cita-header .sub-title{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.cita-text{
    font-size: 15px;
    color: #555;
	text-align:justify;
}

.cita-list{
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
}

.cita-list li{
    background: #f8f8f8;
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 8px;
    transition: .3s;
}

.cita-list li:hover{
    background: #eef5ff;
}

.cita-list i{
    color: #c62828;
    margin-right: 10px;
    font-size: 18px;
}

.badge-cita{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: #c62828;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
/* =====================================================
   TELESALUD PROFESIONAL - HRGDV
===================================================== */

.telesalud-section{
    position: relative;
    background:
        linear-gradient(135deg,
        rgba(0,88,163,.95),
        rgba(0,150,136,.92)),
        url('../images/bg/bg20.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.telesalud-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-200px;
    right:-150px;
}

.telesalud-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-120px;
    left:-100px;
}

/* HERO */

.telesalud-hero{
    position: relative;
    z-index: 2;
    padding: 70px 40px;
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.telesalud-badge{
    display:inline-block;
    background:#00c853;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.telesalud-main-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.telesalud-main-title span{
    color:#ffd54f;
}

.telesalud-lead{
    color:rgba(255,255,255,.92);
    font-size:19px;
    line-height:1.9;
    max-width:900px;
    margin:auto;
}

/* CARDS */

.telesalud-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:30px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.10);
    border:none;
    height:100%;
}

.telesalud-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.telesalud-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(0,150,136,.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

/* ICONS */

.telesalud-icon{
    width:85px;
    height:85px;
    line-height:85px;
    border-radius:24px;
    text-align:center;
    font-size:38px;
    color:#fff;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.icon-blue{
    background:linear-gradient(135deg,#1565c0,#42a5f5);
}

.icon-green{
    background:linear-gradient(135deg,#00897b,#26c6da);
}

.icon-orange{
    background:linear-gradient(135deg,#ef6c00,#ffb300);
}

.icon-red{
    background:linear-gradient(135deg,#c62828,#ef5350);
}

/* TITLES */

.telesalud-title{
    font-size:25px;
    font-weight:800;
    margin-bottom:15px;
    color:#263238;
}

.telesalud-text{
    color:#546e7a;
    line-height:1.9;
    font-size:15px;
}

/* LIST */

.telesalud-list{
    list-style:none;
    padding-left:0;
    margin-top:20px;
}

.telesalud-list li{
    position:relative;
    padding:10px 10px 10px 35px;
    background:#f7fbff;
    border-radius:14px;
    margin-bottom:12px;
    color:#455a64;
    font-weight:500;
    transition:.3s;
}

.telesalud-list li:hover{
    background:#e3f2fd;
    transform:translateX(4px);
}

.telesalud-list li i{
    position:absolute;
    left:15px;
    top:15px;
    color:#00acc1;
    font-size:18px;
}

/* BUTTONS */

.btn-telesalud{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    background:linear-gradient(135deg,#1565c0,#00acc1);
    color:#fff;
    font-weight:700;
    border:none;
    transition:.35s;
    box-shadow:0 8px 25px rgba(21,101,192,.25);
}

.btn-telesalud:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(21,101,192,.35);
}

/* CTA */

.telesalud-contact{
    position:relative;
    background:
        linear-gradient(135deg,
        rgba(255,255,255,.15),
        rgba(255,255,255,.08));
    border-radius:30px;
    padding:50px;
    text-align:center;
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    overflow:hidden;
}

.telesalud-contact h3{
    color:#fff;
    font-size:34px;
    font-weight:800;
    margin-bottom:20px;
}

.telesalud-contact p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
}

/* MINI STATS */

.telesalud-stat{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    margin-top:25px;
}

.telesalud-stat h2{
    font-size:40px;
    font-weight:800;
    color:#1565c0;
    margin-bottom:5px;
}

.telesalud-stat span{
    color:#607d8b;
    font-weight:600;
}
/* =========================================
   BOTON ATENCIONES REALIZADAS
========================================= */

.btn-atenciones{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#00c853,#43a047);
    color: #fff !important;
    border-radius: 40px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow:
        0 0 0 rgba(0,200,83,.7);
    
    animation: pulseAtencion 1.8s infinite;
    transition: .3s;
}

/* EFECTO HOVER */

.btn-atenciones:hover{
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 35px rgba(0,200,83,.45);
}

/* ICONO */

.btn-atenciones i{
    font-size: 18px;
}

/* BRILLO DESLIZANTE */

.btn-atenciones::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:80px;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);

    animation: shine 3s infinite;
}

/* BADGE */

.btn-atenciones .badge-live{
    background:#ff1744;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;

    animation: blinkBadge 1s infinite;
}

.telesalud-horario{
    margin-top:15px;
    text-align:left;
}

.telesalud-horario div{
    padding:8px 0;
    border-bottom:1px dashed #e0e0e0;
}

.telesalud-horario div:last-child{
    border-bottom:none;
}

.telesalud-horario b{
    color:#1565c0;
    display:block;
}

/* PULSO */

@keyframes pulseAtencion{

    0%{
        box-shadow:
            0 0 0 0 rgba(0,200,83,.7);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(0,200,83,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(0,200,83,0);
    }
}

/* BRILLO */

@keyframes shine{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }
}

/* BADGE */

@keyframes blinkBadge{

    0%,100%{
        opacity:1;
    }

    50%{
        opacity:.3;
    }
}
/* =========================
   FIX RESPONSIVE TELESALUD
========================= */

@media (max-width: 768px){

    /* Evita overflow horizontal */
    body{
        overflow-x: hidden;
    }

    /* Cards más compactas */
    .telesalud-card{
        padding: 20px;
    }

    /* Botones uno debajo del otro */
    .telesalud-hero .btn-telesalud,
    .telesalud-hero .btn-atenciones{
        display: block;
        width: 100%;
        margin: 10px 0 !important;
        text-align: center;
    }

    /* Evita que se peguen */
    .telesalud-hero .mt-30{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Ajuste de texto hero */
    .telesalud-main-title{
        font-size: 32px;
    }

    .telesalud-lead{
        font-size: 15px;
    }

    /* Stats cards en columna */
    .telesalud-stat{
        margin-bottom: 15px;
    }
	.telesalud-stat h2{
		font-size:30px;
	}
    /* Evita desbordes de texto */
    .telesalud-text,
    .telesalud-list li{
        word-wrap: break-word;
        font-size: 14px;
    }
}
.btn-group-telesalud{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:20px;
}

/* BOTONES BASE */
.btn-group-telesalud a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* MÓVIL */
@media (max-width:768px){

    .btn-group-telesalud{
        flex-direction:column;
        align-items:center; /* CLAVE PARA CENTRAR */
    }

    .btn-group-telesalud a{
        width:100%;
        max-width:320px; /* evita que se estiren demasiado */
    }
}

/*** DOCTOR CARD ***/
.team-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 18px rgba(0,0,0,0.12);
    transition: all .35s ease;
    position: relative;
}

.team-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.team-thumb{
    position: relative;
    overflow: hidden;
}

.team-thumb img{
    width: 100%;
    transition: transform .4s ease;
}

.team-card:hover img{
    transform: scale(1.05);
}

.team-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s ease;
}

.team-card:hover .team-overlay{
    opacity: 1;
}

.btn-ver-perfil{
    background: #00bcd4;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-ver-perfil:hover{
    background: #0097a7;
    transform: scale(1.05);
}

.team-details{
    padding: 5px;
    text-align: center;
    background: #003b5c;
}

.team-details h4{
    margin-bottom: 4px;
}

.team-details h4 a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.team-details p{
    color: #d6d6d6;
    margin-bottom: 12px;
}

.styled-icons{
    padding: 0;
    margin: 0;
    list-style: none;
}

.styled-icons li{
    display: inline-block;
    margin: 0 4px;
}

.styled-icons li a{
    width: 38px;
    height: 38px;
    background: #00bcd4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s;
}

.styled-icons li a:hover{
    background: white;
    color: #00bcd4;
}
.doctor-card{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.25);
    position: relative;
}

.doctor-close{
    position: absolute;
    right: 18px;
    top: 15px;
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.doctor-image-side{
    background: linear-gradient(135deg,#003b5c,#005b89);
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.doctor-image{
    width: 100%;
    max-width: 240px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.doctor-social{
    margin-top: 25px;
}

.doctor-social a{
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: white;
    border-radius: 50%;
    margin: 0 5px;
    transition: .3s;
}

.doctor-social a:hover{
    background: #00bcd4;
    transform: translateY(-3px);
}

.doctor-info{
    padding: 5px;
}

.doctor-info h2{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #003b5c;
}

.doctor-specialty{
    display: inline-block;
    background: #00bcd4;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-data{
    margin-bottom: 10px;
}

.data-item{
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
    font-size: 15px;
}

.data-item strong{
    color: #003b5c;
    width: 170px;
    display: inline-block;
}

.doctor-description h5{
    color: #003b5c;
    margin-bottom: 12px;
    font-weight: 700;
}

.doctor-description p{
    color: #666;
    line-height: 1.6;
	text-align:justify;
}

.doctor-buttons{
    margin-top: 30px;
}

.btn-doctor-primary{
    background: #00bcd4;
    color: white;
    padding: 12px 28px;
    border-radius: 35px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
    transition: .3s;
}

.btn-doctor-primary:hover{
    background: #0097a7;
    color: white;
    text-decoration: none;
}

.btn-doctor-outline{
    border: 2px solid #00bcd4;
    color: #00bcd4;
    padding: 10px 28px;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.btn-doctor-outline:hover{
    background: #00bcd4;
    color: white;
    text-decoration: none;
}

.servicios-widget{
		background: #ffffff;
		border-radius: 12px;
		padding: 25px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08);
		margin-bottom: 30px;
}

.servicios-widget .widget-title{
		font-size: 22px;
		font-weight: 700;
		color: #0d47a1;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 10px;
}

	.servicios-widget .widget-title i{
		color: #e53935;
		font-size: 24px;
	}

	.servicios-lista{
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.servicios-lista li{
		margin-bottom: 10px;
	}

	.servicios-lista li a{
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 12px 15px;
		background: #f8fafc;
		border-radius: 8px;
		text-decoration: none;
		color: #333;
		font-weight: 500;
		transition: all .3s ease;
		border-left: 4px solid transparent;
	}

	.servicios-lista li a:hover{
		background: #e3f2fd;
		color: #0d47a1;
		transform: translateX(5px);
		border-left: 4px solid #1976d2;
	}

	.servicios-lista li a i{
		color: #1976d2;
		font-size: 14px;
	}

	.sin-info{
		padding: 15px;
		background: #fff3cd;
		border-radius: 8px;
		color: #856404;
		font-weight: 500;
	}
	.staff-widget{
		background: #fff;
		border-radius: 14px;
		padding: 25px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	}

	.staff-widget .widget-title{
		font-size: 24px;
		font-weight: 700;
		color: #0d47a1;
		margin-bottom: 25px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.staff-widget .widget-title i{
		color: #e53935;
		font-size: 26px;
	}

	.espec-card{
		background: #fff;
		border-radius: 12px;
		padding: 20px 15px;
		text-align: center;
		border: 1px solid #edf2f7;
		box-shadow: 0 3px 10px rgba(0,0,0,0.06);
		transition: .3s;
	}

	.espec-card:hover{
		transform: translateY(-3px);
	}

	.espec-avatar{
		width: 65px;
		height: 65px;
		margin: 0 auto 15px;
		border-radius: 50%;
		background: #1976d2;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.espec-avatar i{
		color: #fff;
		font-size: 28px;
	}

	.espec-name{
		font-size: 16px;
		font-weight: 700;
		color: #263238;
		margin-bottom: 8px;
		line-height: 1.4;
	}

.espec-role{
		display: inline-block;
		font-size: 13px;
		padding: 5px 12px;
		border-radius: 20px;
		background: #e3f2fd;
		color: #1565c0;
}

/* ====== ESTILO DIRECCIÓN GENERAL / OFICINAS ====== */

.box-direccion {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 5px solid #0d6efd;
    margin-bottom: 30px;
    transition: all .3s ease;
}

.box-direccion:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.titulo-seccion{
    font-size: 28px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.titulo-seccion::after{
    content:'';
    width: 70px;
    height: 4px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.descripcion-direccion{
    text-align: justify;
    line-height: 1.9;
    color: #555;
    font-size: 15px;
}

.card-director{
    background: linear-gradient(135deg,#0d6efd,#0b4ea2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #fff;
    margin-top: 25px;
}

.card-director img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.4);
    margin-bottom: 15px;
}

.card-director h3{
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.card-director p{
    margin: 0;
    font-size: 15px;
    opacity: .95;
}

.lista-funciones{
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-funciones li{
    position: relative;
    padding: 18px 18px 18px 65px;
    margin-bottom: 18px;
    background: #f8fbff;
    border-radius: 14px;
    border-left: 4px solid #0d6efd;
    transition: .3s;
    text-align: justify;
    line-height: 1.8;
    color: #444;
}

.lista-funciones li:hover{
    background: #eef5ff;
    transform: translateX(4px);
}

.lista-funciones li i{
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 15px;
}

@media(max-width:768px){

    .box-direccion{
        padding: 20px;
    }

    .titulo-seccion{
        font-size: 24px;
    }

    .lista-funciones li{
        padding-left: 55px;
    }
}

/* ===== TITULO CENTRADO ===== */

.titulo-seccion-center{
    font-size: 34px;
    font-weight: 700;
    color: #0d3b66;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.titulo-seccion-center::after{
    content:'';
    width: 80px;
    height: 4px;
    background:#0d6efd;
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    border-radius:10px;
}

/* ===== MENSAJE ===== */

.mensaje-director{
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-left: 5px solid #0d6efd;
}

.mensaje-director i{
    font-size: 70px;
    color:#0d6efd;
    opacity:.15;
    margin-top:10px;
}

.mensaje-director p{
    color:#555;
    line-height:1.9;
    text-align:justify;
}

/* ===== OBJETIVOS ===== */

.objetivo-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    margin-bottom:30px;
    height:100%;
}

.objetivo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.objetivo-card i{
    width:80px;
    height:80px;
    line-height:80px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    font-size:32px;
    margin-bottom:20px;
}

.objetivo-card h4{
    font-weight:700;
    color:#0d3b66;
    margin-bottom:15px;
}

.objetivo-card p{
    color:#666;
    line-height:1.7;
}

/* ===== NORMATIVA ===== */

.lista-normativa{
    list-style:none;
    padding:0;
    margin:0;
}

.lista-normativa li{
    padding:18px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:15px;
}

.lista-normativa li:last-child{
    border-bottom:none;
}

.lista-normativa li i{
    color:#0d6efd;
    margin-right:12px;
}

/* ===== ESTADISTICA E INFORMATICA ===== */

.title-estadistica{
    font-size: 36px;
    font-weight: 800;
    color: #0d3b66;
    margin-bottom: 20px;
    position: relative;
}

.title-estadistica:after{
    content:'';
    width:80px;
    height:4px;
    background:#0d6efd;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

/* ===== CARD GENERAL ===== */

.card-modern{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:30px;
    transition:.3s;
}

.card-modern:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

/* ===== ICONOS ===== */

.icon-circle{
    width:80px;
    height:80px;
    line-height:80px;
    text-align:center;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

/* ===== SERVICIOS ===== */

.service-box{
    background:#f8fbff;
    border-left:5px solid #0d6efd;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
    transition:.3s;
}

.service-box:hover{
    background:#eef5ff;
    transform:translateX(5px);
}

.service-box h4{
    color:#0d3b66;
    font-weight:700;
    margin-bottom:15px;
}

.service-box ul{
    padding-left:20px;
}

.service-box li{
    margin-bottom:10px;
    line-height:1.7;
}

/* ===== ESTADISTICAS ===== */

.stats-mini{
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
    color:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    margin-bottom:25px;
}

.stats-mini h2{
    font-size:40px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.stats-mini span{
    font-size:15px;
}

/* ===== SISTEMAS ===== */

.system-item{
    background:#fff;
    border-radius:14px;
    padding:18px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    margin-bottom:20px;
    transition:.3s;
}

.system-item:hover{
    transform:translateY(-4px);
}

.system-item i{
    font-size:35px;
    color:#0d6efd;
    margin-bottom:10px;
}

.system-item h5{
    font-weight:700;
    color:#0d3b66;
}
/* ===== SIDEBAR BOXES (te faltaban) ===== */

.jefe-box{
    background:#fff;
    border-radius:16px;
    padding:20px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    margin-bottom:20px;
}

.jefe-box h4{
    font-size:18px;
    font-weight:800;
    color:#0d3b66;
    margin-bottom:8px;
}

.jefe-box p{
    color:#6c7a89;
    margin:0;
}

/* INFO SIDE */
.info-side{
    background:#fff;
    border-radius:16px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.info-side h3{
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
    color:#0d3b66;
}

.info-side p{
    color:#6c7a89;
    line-height:1.6;
    margin:0;
}

/* TEXTO PRINCIPAL */
.text-modern{
    font-size:15.5px;
    line-height:1.7;
    color:#4a5a6a;
}

/* ===== NUEVAS TARJETAS DE AREAS ===== */

.service-uei-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-uei-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.service-uei-card:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
}

.service-icon{
    width:80px;
    height:80px;
    line-height:80px;
    text-align:center;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.service-uei-card h4{
    font-size:22px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:15px;
    line-height:1.4;
}

.service-uei-card p{
    color:#667;
    line-height:1.8;
    margin-bottom:20px;
    min-height:110px;
}

.service-uei-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-uei-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#555;
}

.service-uei-card ul li:before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#0d6efd;
    font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:768px){

    .service-uei-card{
        padding:25px;
    }

    .service-uei-card p{
        min-height:auto;
    }

}
/* ===================================
SECCION ESTADISTICA MODERNA
=================================== */

.estadistica-section{
    background:
    linear-gradient(rgba(7,35,70,.92),rgba(7,35,70,.92)),
    url('../images/bg/bg20.png');
    background-size:cover;
    background-position:center;
    padding:20px 0;
    position:relative;
}

.estadistica-title{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.estadistica-title i{
    margin-right:12px;
}

.estadistica-subtitle{
    color:rgba(255,255,255,.85);
    font-size:17px;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/* ===== CARD ===== */

.estadistica-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    margin-bottom:30px;
    height:100%;
    position:relative;
    overflow:hidden;
}

.estadistica-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.estadistica-card:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
}

/* ===== ICONO ===== */

.estadistica-icon{
    width:90px;
    height:90px;
    line-height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
    color:#fff;
    font-size:38px;
    margin-bottom:25px;
}

/* ===== TITULO ===== */

.estadistica-card h3{
    color:#0d3b66;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.4;
}

/* ===== TEXTO ===== */

.estadistica-card p{
    color:#667;
    line-height:1.9;
    margin-bottom:25px;
    min-height:110px;
}

/* ===== BOTON ===== */

.btn-estadistica{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#0d6efd,#0b4ea2);
    color:#fff !important;
    font-weight:600;
    transition:.3s;
    text-decoration:none !important;
}

.btn-estadistica:hover{
    transform:translateY(-2px);
    color:#fff !important;
    box-shadow:0 10px 20px rgba(13,110,253,.30);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

    .estadistica-title{
        font-size:30px;
    }

    .estadistica-card{
        padding:25px;
    }

    .estadistica-card p{
        min-height:auto;
    }

}
	