:root {
    --primary-color: #4f0720;
    --secondary-color: #C61B47;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --light-color: #f8f9fc;
    --dark-color: #5a5c69;
	--brown-color: #DCC9A4;
}

body {
    font-family: "Montserrat", serif;
    background-color: #f7f3ed;

}

.bold {
    color: #6A1B32;
    font-weight: 700;
}

.bg-container {
    background: url(../img/elemento-bg.svg);
}

.bg-general{
	background: linear-gradient(135deg, #6A1B32 0%, #C61B47 100%);
	
}

.bg-brown{
	background: var(--brown-color);
	
}

.text-degradado{
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

ol.list-group.list-group-numbered {
    font-weight: 600;
}

.btn-degradado{
    background: linear-gradient(135deg, #6A1B32 0%, #C61B47 100%);
	transition: all 0.3s ease;
	color:#fff;
}

.btn-degradado:hover{
	background: linear-gradient(135deg, #6A1B32 0%, #C61B47 100%);
	transition: all 0.3s ease;
}

.btn-border-reveal {
    text-decoration: none;
    background-color: transparent;
    color: #C61B47;
    border: 2px solid #C61B47;
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    transform: translateZ(0);
    isolation: isolate; 
}

.btn-border-reveal::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #C61B47;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-border-reveal:hover::after {
    width: 100%;
}

.btn-border-reveal:hover {
    color: white;
}

/* Estilo específico para el icono */
.btn-border-reveal i {
    position: relative;
    z-index: 1;
}



.fc-daygrid-event-harness a {
    font-size: 10px;
}

.fc-h-event .fc-event-main-frame {
    display: flex;
    flex-direction: column;
}

.card {
    border: none;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #C61B47;
    border-color: #4f0720;
}

.lead{
	color: #235c4f;
	font-weight: 500;
}

button.btn.btn-outline-primary {
    color: #4f0720;
    border-color: #000;
}

button.btn.btn-outline-primary:hover {
    color: #fff;
    border-color: #000;
	background: #C61B47;
}

.form-check-input:checked {
    background-color: #dc3545;
    border-color: #c61b47;
}

.user{
	color: #fff;
	margin: auto;
}

.bg-recuadro-info {
    background: #dcc9a4;
    color: #6a1b32;
}

button.nav-link {
    background: #fff !important;
    color: #6a1b32 !important;
	border-bottom: 1px solid #dee2e6 !important;
}

button.nav-link.active {
    background: linear-gradient(135deg, #6A1B32 0%, #C61B47 100%) !important;
    color: #fff !important;
}

.user i {
    padding: 0 5px 0 15px;
}

/* Animaciones */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Estilos para el calendario */
.fc-event {
    cursor: pointer;
    transition: all 0.2s;
}

.fc-event:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Estilos para el formulario */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.is-invalid {
    border-color: var(--danger-color);
}

/* Estilos para la página de confirmación */
.confirmation-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

/* Estilos para el panel de administración */
.sidebar {
    position: sticky;
    top: 1rem;
}

button#btn-agendar:disabled {
    background: #dec98f;
	border: none;
}

h5 {
    color: #550722;
}

input, select, textarea {
    box-shadow: inset 1px 1px 4px 0px #ccccccb3;
}

.list-group-item.active {
    background-color: var(--brown-color);
    border-color: var(--brown-color);
}


.bg-confirmada{ background: #235c4f;}
.bg-cancelada{ background: #c61b47;}
.bg-atendida{ background: #bc955b;}

.cambiar-estado-btn, .btn-detalles {
    color: #c61b47;
    border: 1px solid #c61b47;
}


table.fc-col-header a {
    color: #6c1b32;
}

.fc-daygrid-day-top a {
    color: #b7863e;
}

.cambiar-estado-btn:hover, .btn-detalles:hover {
	background: #c61b47;
    color: #fff;
    border: 1px solid #c61b47;
	transition: 1s;
}

footer {
		bottom: 0px;

		left: 0;
		right: 0;
		height: 50px;
		background-image: url(../img/cinta.png);
	}
	
	.barra-footer{
			text-align: center;
            padding: 10px;
            color: var(--text-light);
            font-size: 0.8rem;
		}
		
		.barra-footer p {
			color: #c90247;
			margin: 0;
		}
		
		.sistemas-text {
			font-weight: 100;
			font-size: 10px;
		}
		
		.gold-accent {
            color: #c7a86d;
            font-weight: 600;
        }
		
		
@media print { 

	body{
		print-color-adjust:exact;
        -webkit-print-color-adjust:exact;
		font-size: 12px;
	}
	
	i.fas.fa-calendar-check.fa-5x.text-degradado.mb-3{
		display:none !Important;
	}
	
	.h2, h2 {
        font-size: 1rem;
    }
	
	a.btn.btn-primary.me-md-2, button.btn.btn-outline-primary{
		display:none !Important;
	}

	.frase-anual {
		margin: 80px 10px 0 0;
	}
	
	.frase-anual p {
        font-size: 8px !Important;
        line-height: 0px;
    }
	
	.titulo-imp {

    padding: 10px 0;

	}
	
	footer {
		display:none !Important;
	}
	
}


@media screen and (max-width: 768px) {

	 .user {
		margin: 0px;
	}
	
	.fc .fc-button {
       font-size: .5em !Important;
	}
	
	.fc .fc-toolbar-title {
		font-size: 1em !Important;
		color: #235c4f !Important;
	}
	
}