
 /* Sección Doctora - Diseño Profesional Mejorado */
.doctora-presentacion {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.doctora-presentacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #667eea, #ffd700);
}

.doctora-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.doctora-hero-principal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.doctora-hero-foto {
    text-align: center;
    position: relative;
}

.foto-doctora-hero-grande {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

.foto-doctora-hero-grande:hover {
    transform: scale(1.03);
    border-color: #ffd700;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
}

.doctora-hero-info {
    text-align: center;
}

.doctora-hero-info h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctora-hero-info h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffd700;
    opacity: 0.9;
}

.experiencia-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.experiencia-hero h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.experiencia-hero p {
    color: white;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 400;
}

.redes-sociales-hero {
    margin-top: 40px;
}

.redes-sociales-hero h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    text-align: center;
    font-weight: 600;
}

.redes-links-hero {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.red-social-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    min-width: 160px;
    justify-content: center;
}

.red-social-hero.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.red-social-hero.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}

.red-social-hero i {
    font-size: 1.3rem;
}

/* Efectos de partículas de fondo */
.particulas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particula {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: flotar 6s infinite ease-in-out;
}

@keyframes flotar {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive */
@media (min-width: 768px) {
    .doctora-presentacion {
        padding: 120px 0 80px;
    }
    
    .doctora-hero-principal {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .doctora-hero-info {
        text-align: left;
    }
    
    .foto-doctora-hero-grande {
        width: 380px;
        height: 380px;
    }
    
    .doctora-hero-info h1 {
        font-size: 3.2rem;
    }
    
    .experiencia-hero h3 {
        justify-content: flex-start;
    }
    
    .experiencia-hero p {
        text-align: left;
        font-size: 1.15rem;
    }
    
    .redes-sociales-hero h3 {
        text-align: left;
    }
    
    .redes-links-hero {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .doctora-presentacion {
        padding: 20px;
        margin-top: 0%;
    }
    
    .doctora-hero-info h1 {
        font-size: 2.2rem;
    }
    
    .foto-doctora-hero-grande {
        width: 280px;
        height: 280px;
    }
    
    .experiencia-hero {
        padding: 20px;
        margin: 20px 0;
    }
    
    .redes-links-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .red-social-hero {
        width: 50%;
        max-width: 250px;
    }
}
.foto-doctora-hero-grande {
    width: 420px;
    height: 420px;
    border-radius: 25px;
    border: 6px solid rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    filter: brightness(1.08) contrast(1.15) saturate(1.1);
    position: relative;
}
/* Estilos profesionales para el texto de experiencia */
.experiencia-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(10px);
    margin: 0;
}

.palabra-destacada {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Destacar palabras clave */
.palabra-destacada {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Iconos animados en redes sociales */
.red-social-hero i {
    transition: all 0.3s ease;
}

.red-social-hero:hover i {
    transform: scale(1.3) rotate(10deg);
}
/* Solución específica para tu caso */
section.hero-medical {
    margin-bottom: 0;
    padding-bottom: 40px;
}

section.doctora-presentacion {
    margin-top: -20px;
    padding-top: 20px;
}
/* Selector de hora más compacto */
.alarm-time-selector {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
}

.time-display {
    text-align: center;
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.time-display .time {
    font-size: 1.8rem; /* Más pequeño */
    font-weight: 700;
    margin-bottom: 5px;
}

.time-display .ampm {
    font-size: 0.9rem; /* Más pequeño */
    opacity: 0.9;
}

.time-controls {
    display: flex;
    justify-content: center;
    gap: 15px; /* Menos espacio */
    margin-bottom: 15px;
}

.time-wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-wheel-label {
    font-size: 0.8rem; /* Más pequeño */
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.wheel-container {
    position: relative;
    width: 60px; /* Más pequeño */
    height: 80px; /* Más pequeño */
    overflow: hidden;
    border-radius: 8px;
    background: #f8fafc;
    border: 2px solid #e1e5e9;
}

.wheel-item {
    height: 30px; /* Más pequeño */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* Más pequeño */
    font-weight: 600;
}

.wheel-controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 8px;
}

.wheel-btn {
    width: 30px; /* Más pequeño */
    height: 30px; /* Más pequeño */
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.ampm-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.ampm-btn {
    padding: 10px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 80px; /* Más pequeño */
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
    .time-controls {
        gap: 10px;
    }
    
    .wheel-container {
        width: 50px;
        height: 70px;
    }
    
    .wheel-item {
        height: 25px;
        font-size: 0.9rem;
    }
    
    .wheel-btn {
        width: 25px;
        height: 25px;
    }
    
    .ampm-btn {
        padding: 8px 16px;
        max-width: 70px;
    }
}
/* ===== RESPONSIVE MEJORADO PARA MÓVILES ===== */

/* Para móviles pequeños (Samsung S20 FE, etc) */
@media (max-width: 480px) {
    .doctora-presentacion {
        padding: 60px 20px 30px !important;
        margin-top: 0 !important;
    }
    
    .doctora-hero-principal {
        gap: 30px !important;
    }
    
    .foto-doctora-hero-grande {
        width: 280px !important;
        height: 280px !important;
        max-width: 85vw !important;
        margin: 0 auto !important;
    }
    
    .doctora-hero-info h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .doctora-hero-info h2 {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .experiencia-hero {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    .experiencia-hero h3 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .experiencia-hero p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 15px !important;
    }
    
    .redes-sociales-hero {
        margin-top: 25px !important;
    }
    
    .redes-sociales-hero h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    .redes-links-hero {
        gap: 12px !important;
    }
    
    .red-social-hero {
        width: 45px !important;
        height: 45px !important;
        padding: 12px !important;
        min-width: auto !important;
    }
    
    .red-social-hero span {
        display: none !important; /* Ocultar texto, solo iconos */
    }
    
    .red-social-hero i {
        font-size: 1.1rem !important;
        margin: 0 !important;
    }
}

/* Para pantallas muy pequeñas (< 360px) */
@media (max-width: 360px) {
    .doctora-presentacion {
        padding: 50px 15px 25px !important;
    }
    
    .foto-doctora-hero-grande {
        width: 250px !important;
        height: 250px !important;
    }
    
    .doctora-hero-info h1 {
        font-size: 1.8rem !important;
    }
    
    .experiencia-hero p {
        font-size: 0.95rem !important;
    }
}

/* Prevenir problemas de texto en móviles */
.doctora-hero-info {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.experiencia-hero p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Asegurar que no haya scroll horizontal */
.doctora-presentacion {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

.doctora-hero-content {
    max-width: 100% !important;
}

/* Eliminar espacio entre secciones */
.hero-medical {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

.doctora-presentacion {
    margin-top: 0 !important;
    padding-top: 0 !important;
}