body { font-family: 'Manrope', sans-serif; }
        .faq-item[open] summary .expand-icon { transform: rotate(180deg); }
        input[type="date"]::-webkit-calendar-picker-indicator {
            background: transparent;
            bottom: 0;
            color: transparent;
            cursor: pointer;
            height: auto;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: auto;
        }


/* WHATSAPP FIJO */

.waNab {
    position: fixed;
    right: 2px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    z-index: 99999;
    background-color: #0aaa46;
    padding: 8px;
    display: flex;
    justify-content: center;
    color: #fff !important;
    border-radius: 100px;
    margin: 20px;
}

#btnWa a {
    color: #fff !important;
    font-weight: 500;
    font-size: 17px;
}

#btnWa img {
    width: 50px;
    height: auto;
    align-items: center;
    padding-top: 2px;
    padding-left: 4px;
}

@media (max-width: 600px) {
	.waNab {
		 bottom: 60px;
		 width: 64px;
    height: 64px;
	}
	
	#btnWa img {
    width: 100px;
}
}

/* END WHATSAPP FIJO */

        /* contenedor calendario */
.flatpickr-calendar {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: inherit;
}

/* header */
.flatpickr-months {
    background: #f8fafc;
    border-radius: 16px 16px 0 0;
}

/* días */
.flatpickr-day {
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* hover */
.flatpickr-day:hover {
    background: rgba(59,130,246,0.1);
}

/* seleccionado */
.flatpickr-day.selected {
    background: #3b82f6;
    color: white;
}

/* hoy */
.flatpickr-day.today {
    border-color: #3b82f6;
}

/* días deshabilitados (fines de semana) */
.flatpickr-day.disabled {
    color: #cbd5f5;
    opacity: 0.4;
}

/* dark mode */
.dark .flatpickr-calendar {
    background: #0f172a;
    color: white;
}

.dark .flatpickr-months {
    background: #020617;
}

.dark .flatpickr-day:hover {
    background: rgba(59,130,246,0.2);
}


