/* ================================================
   ECOMEDICC - ESTUDIOS Diagnóstico por Imagen (SONOGRAFÍAS)
   CSS Responsivo Completo - VERSIÓN OPTIMIZADA
   Versión: 2.0
   Fecha: 2025
   Cambios: 
   - Adaptado específicamente para sonografías
   - Colores suaves: azul, blanco, gris
   - Efectos pulsantes modernos
   - Diseño más limpio y profesional
   ================================================ */

/* ================================================
   1. Variables CSS - Sistema de Diseño para Sonografías
   ================================================ */
   :root {
    /* Colores Principales - Tonos Azules Suaves */
    --primary-color: #4A90E2;
    --secondary-color: #7DB8E8;
    --accent-color: #A8D5F2;
    --tertiary-color: #6C8EAD;

    /* Colores de Texto y Fondos */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F7F9FC;
    --bg-lighter: #EDF2F7;
    --white: #ffffff;
    --border-color: #E2E8F0;

    /* Degradados Suaves */
    --gradient-primary: linear-gradient(135deg, #5B9BD5 0%, #89C4E8 100%);
    --gradient-secondary: linear-gradient(135deg, #A8D5F2 0%, #C9E4F5 100%);
    --gradient-service: linear-gradient(135deg, #6BA3D0 0%, #8FC4E8 100%);

    /* UI - Sombras y Transiciones */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 5px 20px rgba(74, 144, 226, 0.08);
    --shadow-md: 0 10px 40px rgba(74, 144, 226, 0.12);
    --shadow-lg: 0 15px 40px rgba(74, 144, 226, 0.18);
}

/* ================================================
   2. Estilos de Componentes Principales
   ================================================ */

/* ----- Contenedor de Sección ----- */
.section-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7F9FC 0%, #ffffff 100%);
}

/* ----- Textos y Títulos ----- */
.section-area .head-text h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-area .head-text h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.3;
}

.section-area .head-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ----- Imagen Principal con Efecto ----- */
.section-area .ttr-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    position: relative;
}

.section-area .ttr-media::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.section-area .ttr-media:hover {
    transform: translateY(-5px);
}

.section-area .ttr-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   5. LISTA DE CARACTERÍSTICAS
   ================================================ */
   .section-area .list-check-square {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-area .list-check-square li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
    border-radius: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.section-area .list-check-square li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.25s ease;
}

.section-area .list-check-square li:hover {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.08);
    padding-left: 32px;
    transform: translateX(4px);
}

.section-area .list-check-square li:hover:before {
    animation: pulse-check 0.6s ease-in-out;
    color: var(--secondary-color);
}

@keyframes pulse-check {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.2);
    }
}

/* ----- Grid de Tarjetas (Sonografía) ----- */
.section-area .sonografia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ----- Tarjeta Individual ----- */
.section-area .sonografia-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.section-area .sonografia-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.section-area .sonografia-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-area .sonografia-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-area .sonografia-card:hover .sonografia-card-image img {
    transform: scale(1.1);
}

.section-area .sonografia-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-area .sonografia-card:hover .sonografia-card-overlay {
    opacity: 0.92;
}

.section-area .sonografia-card-overlay i {
    color: var(--white);
    font-size: 3rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.section-area .sonografia-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-area .sonografia-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #093b60;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.section-area .sonografia-card:hover .sonografia-card-title {
    color: var(--primary-color);
}

.section-area .sonografia-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 auto 0;
}

/* ----- Badge Informativo en Tarjeta ----- */
.section-area .info-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease;
    align-self: flex-start;
    animation: pulse-badge 3s ease-in-out infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-area .sonografia-card:hover .info-badge {
    transform: translateX(5px);
}

.section-area .info-badge i {
    font-size: 1.1rem;
    animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(74, 144, 226, 0.25);
    }
    50% { 
        transform: scale(1.03); 
        box-shadow: 0 6px 30px rgba(74, 144, 226, 0.35);
    }
}

@keyframes pulse-soft {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.85;
    }
}

/* ================================================
   3. Sección de Información Adicional
   ================================================ */
.section-area .info-section {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.section-area .info-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    animation: float-soft 4s ease-in-out infinite;
}

@keyframes float-soft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.section-area .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.section-area .info-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.section-area .info-card-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-area .info-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   4. WIDGET PRINCIPAL - Sidebar (SCOPED)
   ================================================ */
.section-area .widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.section-area .widget:hover {
    box-shadow: var(--shadow-md);
}

.section-area .widget-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.section-area .widget-title h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Widget de Información */
.section-area .widget-info {
    background: var(--gradient-primary);
    color: var(--white);
}

.section-area .widget-info .widget-title {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.section-area .widget-info .widget-title h4 {
    color: var(--white);
}

.section-area .info-box {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.section-area .info-box:last-child { 
    border-bottom: none; 
    padding-bottom: 0; 
}

.section-area .info-box:first-child { 
    padding-top: 0; 
}

.section-area .info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.section-area .info-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-area .info-text p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* ----- Widget CTA (Call to Action) ----- */
.section-area .widget-cta {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    text-align: center;
    padding: 40px 30px;
    border: 2px solid rgba(74, 144, 226, 0.1);
}

.section-area .cta-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

.section-area .cta-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-area .cta-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-area .btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.section-area .btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* ============================================
   SECCIÓN SERVICIOS Y RECURSOS - RESPONSIVE
   ============================================ */

/* Sección Independiente de Servicios y Recursos */
.services-resources-section {
    background: linear-gradient(135deg, #F7F9FC 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.services-resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 213, 242, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Widget de Servicios Moderno - Colores Suaves */
.widget-services {
    background: linear-gradient(135deg, #7DB8E8 0%, #A8D5F2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    position: relative;
}

.widget-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.widget-services:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
}

.services-header {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.services-header i {
    font-size: 1.75rem;
    color: #fff;
    animation: pulse-service 2.5s ease-in-out infinite;
}

@keyframes pulse-service {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.08);
        opacity: 0.9;
    }
}

.services-title {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 2rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-item.active {
    background: rgba(255, 255, 255, 0.25);
}

.service-item.active::before {
    transform: translateX(0);
}

.service-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.service-name i {
    font-size: 1.2rem;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.service-item:hover .service-name i {
    transform: scale(1.15);
}

.service-item .fa-chevron-right {
    font-size: 0.9rem;
    opacity: 0.75;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-item:hover .fa-chevron-right {
    transform: translateX(8px);
    opacity: 1;
}

/* Widget de Recursos Moderno */
.widget-resources {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.12);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    position: relative;
}

.widget-resources:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.18);
}

.resources-header {
    background: linear-gradient(135deg, #6BA3D0 0%, #8FC4E8 100%);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.resources-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.resources-header i {
    font-size: 1.75rem;
    color: #fff;
    position: relative;
    z-index: 1;
    animation: bounce-soft 3s ease-in-out infinite;
}

@keyframes bounce-soft {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-7px);
    }
}

.resources-title {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.resources-content {
    padding: 2rem;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.resource-card:hover::before {
    left: 100%;
}

.resource-card:last-child {
    margin-bottom: 0;
}

.resource-card:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.resource-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.resource-card:hover .resource-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.25);
}

.resource-icon i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resource-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.resource-info h6 {
    margin: 0 0 0.4rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.resource-card:hover .resource-info h6 {
    color: var(--primary-color);
}

.resource-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.resource-card:hover .resource-info p {
    color: var(--text-dark);
}

.resource-action {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.25);
    position: relative;
    z-index: 1;
}

.resource-card:hover .resource-action {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.resource-action i {
    font-size: 1.1rem;
}

/* Ubicación - Mapa */
.section-area .location-address {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0.5rem 0;
    font-weight: 400;
}

.section-area .info-text .map-container {
    margin-top: 1rem !important;
}

/* Botón de Mapa con Selector de Aplicación */
.section-area .map-container {
    position: relative;
    display: inline-block;
}

.section-area .map-btn-wrapper {
    position: relative;
    display: inline-block;
}

.section-area .map-container .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.section-area .map-container .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-area .map-container .btn-outline-primary i {
    margin-right: 0.5rem;
}
/* Menú desplegable de opciones de mapa */
.section-area .map-options {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    }
.section-area .map-btn-wrapper:hover .map-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    }

.section-area .map-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
    }

.section-area .map-option-item:last-child {
    border-bottom: none;
    }

.section-area .map-option-item:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #7DB8E8 100%);
    color: #fff;
    padding-left: 24px;
    }
        
.section-area .map-option-item i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    }

.section-area .map-option-item:hover i {
    transform: scale(1.15);
    }

.section-area .map-option-text {
    display: flex;
    flex-direction: column;
    }

.section-area .map-option-text strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
    }

.section-area .map-option-text span {
    font-size: 0.75rem;
    opacity: 0.8;
    }

/* Responsive para el texto de ubicación */
@media (max-width: 768px) {
.section-area .location-address {
        font-size: 0.85rem;
    }

    .section-area .map-options {
        left: 0;
        right: 0;
    }
    
    .section-area .map-option-item {
        padding: 12px 15px;
    }
    
    .section-area .sonografia-card-image {
        height: 180px;
    }
    
    .section-area .sonografia-card-image img {
        padding: 8px;
    }
}
@media (max-width: 575px) {
    .section-area .sonografia-card-image {
        height: 160px;
    }

    .section-area .sonografia-card-image img {
        padding: 6px;
    }

    @media (max-width: 374px) {
    .section-area .sonografia-card-image {
        height: 140px;
    }
    .section-area .sonografia-card-image img {
        padding: 5px;
    }
/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Extra Large Devices (Desktops grandes, 1400px y más) */
@media (min-width: 1400px) {
	.services-resources-section {
		padding: 5rem 0;
		margin: 4rem 0;
	}
	
	.services-header,
	.resources-header {
		padding: 2rem 2.5rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 1.5rem;
	}
	
	.service-item a {
		padding: 1.5rem 2.5rem;
	}
	
	.resources-content {
		padding: 2.5rem;
	}
	
	.resource-card {
		padding: 1.75rem;
	}
}

/* Large Devices (Desktops, 992px - 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
	.services-resources-section {
		padding: 3.5rem 0;
		margin: 2.5rem 0;
	}
	
	.services-header,
	.resources-header {
		padding: 1.5rem 1.75rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 1.2rem;
	}
	
	.service-item a {
		padding: 1.25rem 1.75rem;
	}
	
	.service-name {
		font-size: 0.95rem;
	}
	
	.resources-content {
		padding: 1.75rem;
	}
	
	.resource-card {
		padding: 1.35rem;
		gap: 1rem;
	}
	
	.resource-icon {
		width: 55px;
		height: 55px;
	}
	
	.resource-icon img {
		width: 32px;
		height: 32px;
	}
	
	.resource-action {
		width: 42px;
		height: 42px;
	}
}

/* Medium Devices (Tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
	.services-resources-section {
		padding: 3rem 0;
		margin: 2rem 0;
	}
	
	.widget-services,
	.widget-resources {
		margin-bottom: 2rem;
	}
	
	.widget-resources {
		margin-bottom: 0;
	}
	
	.services-header,
	.resources-header {
		padding: 1.5rem;
	}
	
	.services-header i,
	.resources-header i {
		font-size: 1.5rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 1.15rem;
	}
	
	.service-item a {
		padding: 1.15rem 1.5rem;
	}
	
	.service-name {
		font-size: 0.95rem;
		gap: 0.85rem;
	}
	
	.service-name i {
		font-size: 1.1rem;
	}
	
	.resources-content {
		padding: 1.5rem;
	}
	
	.resource-card {
		padding: 1.25rem;
		gap: 1rem;
		margin-bottom: 1rem;
	}
	
	.resource-icon {
		width: 52px;
		height: 52px;
	}
	
	.resource-icon img {
		width: 30px;
		height: 30px;
	}
	
	.resource-icon i {
		font-size: 1.6rem;
	}
	
	.resource-info h6 {
		font-size: 1rem;
	}
	
	.resource-info p {
		font-size: 0.875rem;
	}
	
	.resource-action {
		width: 40px;
		height: 40px;
	}
	
	.resource-action i {
		font-size: 1rem;
	}
}

/* Small Devices (Móviles grandes / Tablets pequeñas, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
	.services-resources-section {
		padding: 2.5rem 0;
		margin: 1.5rem 0;
	}
	
	.widget-services,
	.widget-resources {
		margin-bottom: 1.75rem;
		border-radius: 16px;
	}
	
	.widget-resources {
		margin-bottom: 0;
	}
	
	.services-header,
	.resources-header {
		padding: 1.35rem 1.25rem;
		flex-direction: row;
		text-align: left;
	}
	
	.services-header i,
	.resources-header i {
		font-size: 1.4rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 1.1rem;
	}
	
	.service-item a {
		padding: 1.1rem 1.25rem;
		flex-wrap: nowrap;
	}
	
	.service-name {
		font-size: 0.9rem;
		gap: 0.75rem;
	}
	
	.service-name i {
		font-size: 1rem;
	}
	
	.service-item .fa-chevron-right {
		font-size: 0.85rem;
	}
	
	.resources-content {
		padding: 1.25rem;
	}
	
	.resource-card {
		padding: 1.15rem;
		gap: 0.9rem;
		margin-bottom: 1rem;
		border-radius: 12px;
	}
	
	.resource-icon {
		width: 48px;
		height: 48px;
		border-radius: 12px;
	}
	
	.resource-icon img {
		width: 28px;
		height: 28px;
	}
	
	.resource-icon i {
		font-size: 1.5rem;
	}
	
	.resource-info h6 {
		font-size: 0.95rem;
		margin-bottom: 0.3rem;
	}
	
	.resource-info p {
		font-size: 0.85rem;
		line-height: 1.4;
	}
	
	.resource-action {
		width: 38px;
		height: 38px;
		border-radius: 10px;
	}
	
	.resource-action i {
		font-size: 0.95rem;
	}
}

/* Extra Small Devices (Móviles, menos de 576px) */
@media (max-width: 575px) {
	.services-resources-section {
		padding: 2rem 0;
		margin: 1rem 0;
	}
	
	.services-resources-section::before {
		display: none;
	}
	
	.widget-services,
	.widget-resources {
		margin-bottom: 1.5rem;
		border-radius: 14px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	}
	
	.widget-resources {
		margin-bottom: 0;
	}
	
	.widget-services:hover,
	.widget-resources:hover {
		transform: translateY(-5px);
	}
	
	.services-header,
	.resources-header {
		padding: 1.25rem 1rem;
		flex-direction: row;
		text-align: left;
		gap: 0.75rem;
	}
	
	.services-header i,
	.resources-header i {
		font-size: 1.3rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 1rem;
		letter-spacing: 0.3px;
	}
	
	.service-item a {
		padding: 1rem;
		flex-direction: row;
		align-items: center;
	}
	
	.service-name {
		font-size: 0.875rem;
		gap: 0.65rem;
		flex: 1;
	}
	
	.service-name i {
		font-size: 0.95rem;
	}
	
	.service-item .fa-chevron-right {
		font-size: 0.8rem;
		margin-left: 0.5rem;
	}
	
	.resources-content {
		padding: 1rem;
	}
	
	.resource-card {
		padding: 1rem;
		gap: 0.85rem;
		margin-bottom: 0.9rem;
		border-radius: 10px;
		flex-wrap: nowrap;
	}
	
	.resource-card:hover {
		transform: translateX(5px) scale(1.01);
	}
	
	.resource-icon {
		width: 45px;
		height: 45px;
		border-radius: 10px;
		flex-shrink: 0;
	}
	
	.resource-card:hover .resource-icon {
		transform: scale(1.1) rotate(5deg);
	}
	
	.resource-icon img {
		width: 26px;
		height: 26px;
	}
	
	.resource-icon i {
		font-size: 1.4rem;
	}
	
	.resource-info {
		flex: 1;
		min-width: 0;
	}
	
	.resource-info h6 {
		font-size: 0.9rem;
		margin-bottom: 0.25rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.resource-info p {
		font-size: 0.8rem;
		line-height: 1.35;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.resource-action {
		width: 36px;
		height: 36px;
		border-radius: 9px;
		flex-shrink: 0;
	}
	
	.resource-card:hover .resource-action {
		transform: scale(1.15) rotate(180deg);
	}
	
	.resource-action i {
		font-size: 0.9rem;
	}
}

/* Móviles muy pequeños (menos de 375px) */
@media (max-width: 374px) {
	.services-resources-section {
		padding: 1.5rem 0;
	}
	
	.services-header,
	.resources-header {
		padding: 1rem 0.85rem;
	}
	
	.services-title,
	.resources-title {
		font-size: 0.95rem;
	}
	
	.service-item a {
		padding: 0.9rem 0.85rem;
	}
	
	.service-name {
		font-size: 0.825rem;
		gap: 0.6rem;
	}
	
	.service-name i {
		font-size: 0.9rem;
	}
	
	.resources-content {
		padding: 0.85rem;
	}
	
	.resource-card {
		padding: 0.9rem;
		gap: 0.75rem;
	}
	
	.resource-icon {
		width: 42px;
		height: 42px;
	}
	
	.resource-icon img {
		width: 24px;
		height: 24px;
	}
	
	.resource-icon i {
		font-size: 1.3rem;
	}
	
	.resource-info h6 {
		font-size: 0.85rem;
	}
	
	.resource-info p {
		font-size: 0.75rem;
	}
	
	.resource-action {
		width: 34px;
		height: 34px;
	}
	
	.resource-action i {
		font-size: 0.85rem;
	}
}

/* Landscape para móviles (altura menor a 500px) */
@media (max-height: 500px) and (orientation: landscape) {
	.services-resources-section {
		padding: 1.5rem 0;
		margin: 1rem 0;
	}
	
	.service-item a {
		padding: 0.75rem 1rem;
	}
	
	.resource-card {
		padding: 0.85rem;
		margin-bottom: 0.75rem;
	}
}

/* Optimización para impresión */
@media print {
	.services-resources-section {
		background: #fff;
		padding: 2rem 0;
		page-break-inside: avoid;
	}
	
	.widget-services,
	.widget-resources {
		box-shadow: none;
		border: 1px solid #ddd;
		page-break-inside: avoid;
	}
	
	.resource-card:hover,
	.service-item:hover,
	.widget-services:hover,
	.widget-resources:hover {
		transform: none;
		box-shadow: none;
	}
}

/* Accesibilidad - Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	
	.services-header i,
	.resources-header i {
		animation: none !important;
	}
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
	.services-resources-section {
		background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
	}
	
	.widget-resources {
		background: #2d3748;
	}
	
	.resource-card {
		background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
		color: #e5e7eb;
	}
	
	.resource-card:hover {
		background: #1f2937;
	}
	
	.resource-info h6 {
		color: #f3f4f6;
	}
	
	.resource-info p {
		color: #d1d5db;
	}
}

   
/* ================================================
   7. RESPONSIVE DESIGN - Media Queries
   ================================================ */

/* ----- Extra Large Devices (Desktops grandes, 1400px+) ----- */
@media (min-width: 1400px) {
    .section-area .sonografia-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    .section-area .head-text h2 { font-size: 2.8rem; }
    .section-area .info-section { padding: 50px; }
}

/* ----- Large Devices (Desktops, 992px - 1399px) ----- */
@media (min-width: 992px) and (max-width: 1399px) {
    .section-area .sonografia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .section-area .head-text h2 { font-size: 2.3rem; }
    .section-area .sonografia-card-title { font-size: 1.15rem; }
    .section-area .info-section { padding: 35px; }
}

/* ----- Medium Devices (Tablets, 768px - 991px) ----- */
@media (min-width: 768px) and (max-width: 991px) {
    .section-area { padding: 60px 0; }
    .section-area .head-text h2 { font-size: 2rem; }
    .section-area .head-text h4 { font-size: 1.6rem; }
    .section-area .head-text p { font-size: 1rem; }
    .section-area .sonografia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    .section-area .sonografia-card-image { height: 200px; }
    .section-area .sonografia-card-content { padding: 20px; }
    .section-area .sonografia-card-title { font-size: 1.1rem; }
    .section-area .sonografia-card-description { font-size: 0.9rem; }
    .section-area .list-check-squer li { font-size: 0.95rem; }
    .section-area .widget,
    .section-area .widget-secondary { padding: 15px; }
    .section-area .widget-title h4 { font-size: 1.05rem; }
    .section-area .info-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .section-area .info-text h5 { font-size: 0.9rem; }
    .section-area .info-text p { font-size: 0.75rem; }
    .section-area .info-card-content h5 { font-size: 1rem; }
    .section-area .btn-cta { padding: 9px 24px; font-size: 0.85rem; }
    .section-area .widget-secondary .service-menu li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .section-area .widget-secondary .download-link {
        padding: 18px 12px;
    }
    .section-area .widget-secondary .download-link img {
        width: 35px;
        height: 35px;
    }
    .section-area .widget-secondary .download-link .title {
        font-size: 0.85rem;
    }
    .section-area .widget-secondary .download-link span {
        font-size: 0.75rem;
        padding: 5px 15px;
    }
}

/* ----- Orientaciones Específicas ----- */
@media (max-width: 991px) and (orientation: landscape) {
    .section-area { padding: 40px 0; }
    .section-area .sonografia-grid { grid-template-columns: repeat(2, 1fr); }
    .section-area .sonografia-card-image { height: 160px; }
    .section-area .ttr-media { margin-bottom: 20px; }
    .section-area .head-text h2 { font-size: 1.8rem; }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .section-area .sonografia-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .section-area .sonografia-card-image { height: 190px; }
}

/* ================================================
   8. Media Queries de Preferencias y Accesibilidad
   ================================================ */

/* ----- Optimización para Dispositivos Táctiles ----- */
@media (hover: none) and (pointer: coarse) {
    .section-area .sonografia-card { transition: all 0.2s ease; }
    .section-area .sonografia-card:active { transform: scale(0.98); }
    .section-area .sonografia-card-content { min-height: 160px; }
    .section-area .widget-secondary .service-menu li:active {
        background: rgba(220, 53, 69, 0.1);
    }
    .section-area .widget-secondary .download-link:active {
        transform: scale(0.98);
    }
}

/* ----- Modo Oscuro (Respeta preferencias del sistema) ----- */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #e9ecef;
        --text-light: #adb5bd;
        --bg-light: #212529;
        --white: #2d3238;
    }
    .section-area { background: linear-gradient(135deg, #1a1d20 0%, #212529 100%); }
    .section-area .sonografia-card { background: var(--white); box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
    .section-area .sonografia-card:hover { box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3); }
    .section-area .info-section { background: #1a1d20; }
    .section-area .info-card { background: #212529; }
    .section-area .widget,
    .section-area .widget-secondary { background: #212529; }
    .section-area .widget-title { border-bottom-color: #343a40; }
    .section-area .widget-secondary .service-menu li { border-bottom-color: #343a40; }
    .section-area .widget-secondary .brochure-bx .title-head { border-bottom-color: #343a40; }
    .section-area .widget-secondary .download-link {
        background: linear-gradient(135deg, #1a1d20 0%, #212529 100%);
    }
}

/* ----- Reducción de Movimiento (Accesibilidad) ----- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .section-area .sonografia-card:hover,
    .section-area .ttr-media:hover,
    .section-area .sonografia-card:hover .sonografia-card-image img,
    .section-area .widget-secondary:hover,
    .section-area .widget-secondary .download-link:hover {
        transform: none;
    }
}

/* ----- Alto Contraste (Accesibilidad) ----- */
@media (prefers-contrast: high) {
    .section-area .sonografia-card { border: 2px solid var(--primary-color); }
    .section-area .info-badge { border: 2px solid var(--bg-white); }
    .section-area .widget-secondary { border: 2px solid var(--bg-light); }
    .section-area .widget-secondary .service-menu li { border-bottom: 2px solid var(--bg-light); }
}

/* ================================================
   9. Estilos de Impresión
   ================================================ */
@media print {
    .section-area { padding: 20px 0; background: white; }
    .section-area .sonografia-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
    .section-area .sonografia-card-overlay, 
    .section-area .widget-cta, 
    .section-area .info-badge { display: none; }
    .section-area .widget-secondary .download-link span { 
        background: #333; 
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ================================================
   10. Animaciones Adicionales
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animaciones a elementos cuando se cargan */
.section-area .widget-secondary {
    animation: fadeInUp 0.6s ease-out;
}

.section-area .widget {
    animation: slideInRight 0.6s ease-out;
}

/* Desactivar animaciones si el usuario prefiere reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    .section-area .widget-secondary,
    .section-area .widget {
        animation: none;
    }
}

/* ================================================
   11. Utilidades Adicionales
   ================================================ */

/* Scroll suave para navegación interna */
html {
    scroll-behavior: smooth;
}

/* Resetear scroll suave si el usuario prefiere reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Focus visible para accesibilidad de teclado */
.section-area .widget-secondary .service-menu li a:focus-visible,
.section-area .widget-secondary .download-link:focus-visible,
.section-area .btn-cta:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Asegurar que las imágenes sean responsivas */
.section-area img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   FIN DEL ARCHIVO - diagnostico.css v1.2
   ================================================ */
    .section-area .widget-secondary { padding: 25px; }
    .section-area .info-section { padding: 30px; }
    .section-area .info-card { flex-direction: column; text-align: center; }
    .section-area .info-card-icon { margin: 0 auto 15px; }
    .section-area .widget-cta { padding: 35px 25px; }

/* ----- Small Devices (Móviles grandes, 576px - 767px) ----- */
@media (min-width: 576px) and (max-width: 767px) {
    .section-area { padding: 50px 0; }
    .section-area .head-text h2 { font-size: 1.8rem; line-height: 1.3; }
    .section-area .head-text h4 { font-size: 1.4rem; }
    .section-area .head-text p { font-size: 0.95rem; }
    .section-area .sonografia-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 25px; }
    .section-area .sonografia-card-image { height: 180px; }
    .section-area .sonografia-card-content { padding: 18px; }
    .section-area .sonografia-card-title { font-size: 1.15rem; }
    .section-area .sonografia-card-description { font-size: 0.9rem; }
    .section-area .list-check-squer li { font-size: 0.9rem; padding-left: 30px; }
    .section-area .list-check-squer li:before { font-size: 1rem; }
    .section-area .widget,
    .section-area .widget-secondary { padding: 20px; margin-bottom: 20px; }
    .section-area .widget-title h4 { font-size: 1.2rem; }
    .section-area .info-box { padding: 15px 0; }
    .section-area .info-text h5 { font-size: 1rem; }
    .section-area .info-text p { font-size: 0.85rem; }
    .section-area .info-section { padding: 25px; margin-top: 30px; }
    .section-area .info-card { flex-direction: column; text-align: center; padding: 20px; }
    .section-area .info-card-icon { margin: 0 auto 15px; }
    .section-area .widget-cta { padding: 30px 20px; }
    .section-area .cta-content i { font-size: 2.5rem; }
    .section-area .cta-content h4 { font-size: 1.2rem; }
}

/* ----- Extra Small Devices (Móviles pequeños, < 576px) ----- */
@media (max-width: 575px) {
    .section-area { padding: 40px 0; }
    .section-area .ttr-media { border-radius: 15px; margin-bottom: 20px; }
    .section-area .head-text h2 { font-size: 1.6rem; margin-bottom: 10px; line-height: 1.3; }
    .section-area .head-text h4 { font-size: 1.3rem; }
    .section-area .head-text p { font-size: 0.9rem; line-height: 1.6; }
    .section-area .sonografia-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 20px; }
    .section-area .sonografia-card { border-radius: 12px; }
    .section-area .sonografia-card-image { height: 160px; }
    .section-area .sonografia-card-content { padding: 16px; }
    .section-area .sonografia-card-title { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.3; }
    .section-area .sonografia-card-description { font-size: 0.85rem; line-height: 1.5; }
    .section-area .info-badge { font-size: 0.75rem; padding: 6px 15px; margin-top: 12px; }
    .section-area .list-check-squer li { font-size: 0.85rem; padding: 10px 0 10px 28px; }
    .section-area .list-check-squer li:before { font-size: 0.9rem; top: 10px; }
    .section-area .list-check-squer li:hover { padding-left: 32px; }
    .section-area .sonografia-card-overlay i { font-size: 2.5rem; }
    .section-area .widget,
    .section-area .widget-secondary { padding: 18px; margin-bottom: 20px; border-radius: 12px; }
    .section-area .widget-title { margin-bottom: 15px; padding-bottom: 12px; }
    .section-area .widget-title h4 { font-size: 1.15rem; }
    .section-area .info-box { padding: 15px 0; gap: 12px; }
    .section-area .info-icon { width: 45px; height: 45px; font-size: 1.3rem; }
    .section-area .info-text h5 { font-size: 0.95rem; margin-bottom: 6px; }
    .section-area .info-text p { font-size: 0.8rem; }
    .section-area .info-section { padding: 20px; margin-top: 25px; border-radius: 12px; }
    .section-area .info-card { flex-direction: column; text-align: center; padding: 18px; }
    .section-area .info-card-icon { width: 55px; height: 55px; font-size: 1.6rem; margin: 0 auto 12px; }
    .section-area .info-card-content h5 { font-size: 1.1rem; }
    .section-area .info-card-content p { font-size: 0.88rem; }
    .section-area .widget-cta { padding: 25px 18px; }
    .section-area .cta-content i { font-size: 2.2rem; margin-bottom: 15px; }
    .section-area .cta-content h4 { font-size: 1.15rem; margin-bottom: 12px; }
    .section-area .cta-content p { font-size: 0.9rem; margin-bottom: 15px; }
    .section-area .btn-cta { padding: 10px 28px; font-size: 0.9rem; }
    
    /* Widget Secundario Mobile */
    .section-area .widget-secondary .service-menu li a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .section-area .widget-secondary .download-link {
        padding: 20px 15px;
    }
    .section-area .widget-secondary .download-link img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .section-area .widget-secondary .download-link .title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .section-area .widget-secondary .brochure-bx .title-head {
        font-size: 1.15rem;
    }
}

/* ----- Dispositivos Ultra Pequeños (< 375px) ----- */
@media (max-width: 374px) {
    .section-area { padding: 35px 0; }
    .section-area .ttr-media { border-radius: 12px; margin-bottom: 18px; }
    .section-area .head-text h2 { font-size: 1.4rem; margin-bottom: 8px; line-height: 1.25; }
    .section-area .head-text h4 { font-size: 1.15rem; }
    .section-area .head-text p { font-size: 0.85rem; line-height: 1.5; }
    
    .section-area .sonografia-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 18px; }
    .section-area .sonografia-card { border-radius: 10px; }
    .section-area .sonografia-card-image { height: 140px; }
    .section-area .sonografia-card-content { padding: 14px; }
    .section-area .sonografia-card-title { font-size: 0.95rem; margin-bottom: 8px; line-height: 1.3; }
    .section-area .sonografia-card-description { font-size: 0.8rem; line-height: 1.45; }
    .section-area .sonografia-card-overlay i { font-size: 2.2rem; }

    .section-area .info-badge { font-size: 0.7rem; padding: 5px 12px; margin-top: 10px; }
    .section-area .list-check-squer li { font-size: 0.8rem; padding: 8px 0 8px 25px; }
    .section-area .list-check-squer li:before { font-size: 0.85rem; top: 9px; }
    .section-area .list-check-squer li:hover { padding-left: 28px; }

    .section-area .widget,
    .section-area .widget-secondary { padding: 15px; margin-bottom: 18px; border-radius: 10px; }
    .section-area .widget-title { margin-bottom: 12px; padding-bottom: 10px; }
    .section-area .widget-title h4 { font-size: 1.05rem; }

    .section-area .info-box { padding: 12px 0; gap: 10px; }
    .section-area .info-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .section-area .info-text h5 { font-size: 0.9rem; margin-bottom: 5px; }
    .section-area .info-text p { font-size: 0.78rem; }

    .section-area .info-section { padding: 18px; margin-top: 22px; border-radius: 10px; }
    .section-area .info-card { flex-direction: column; text-align: center; padding: 16px; }
    .section-area .info-card-icon { width: 50px; height: 50px; font-size: 1.5rem; margin: 0 auto 10px; }
    .section-area .info-card-content h5 { font-size: 1rem; }
    .section-area .info-card-content p { font-size: 0.85rem; }

    .section-area .widget-cta { padding: 22px 15px; border-radius: 10px; }
    .section-area .cta-content i { font-size: 2rem; margin-bottom: 12px; }
    .section-area .cta-content h4 { font-size: 1.05rem; margin-bottom: 10px; }
    .section-area .cta-content p { font-size: 0.85rem; margin-bottom: 12px; }
    .section-area .btn-cta { padding: 8px 24px; font-size: 0.85rem; }
}

/* ================================================
   FIN DEL ARCHIVO - Sonografias.css v3.0
   ================================================ */
