/* 
 * Hero decorations - Elementos decorativos para el hero
 * Añade elementos flotantes y fondos decorativos
 */

/* Elementos flotantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Circulo decorativo */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 8s infinite ease-in-out;
}

.floating-circle.small {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 184, 169, 0.2);
}

.floating-circle.medium {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 184, 169, 0.15);
}

.floating-circle.large {
    width: 150px;
    height: 150px;
    background-color: rgba(0, 184, 169, 0.1);
}

/* Posicionamiento de los elementos */
.circle1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.circle3 {
    top: 10%;
    right: 15%;
    animation-delay: 2s;
}

.circle4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.circle5 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Animación de flotación */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Fondo degradado para el hero */
.feature-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(0, 184, 169, 0.1) 100%) !important;
    position: relative;
}

/* Fondo para la cabecera de agenda de citas */
.calendar-header {
    background: linear-gradient(135deg, #00b8a9 0%, #00a099 100%) !important;
    color: white !important;
}

.calendar-title h3, .calendar-title span {
    color: white !important;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}
