/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 27 2025 | 20:50:14 */
.modal-content .modal-body h5 {
	letter-spacing: 0.1rem;
}

.modal-content .modal-body p {
	text-align: justify;
}

.img-container {
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.img-container:hover img {
    transform: scale(1.1); /* Agranda la imagen al 110% en hover */
    filter: brightness(70%);
}

.img-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurecimiento */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container:hover .overlay {
    opacity: 1;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background-color: #fff; /* Fondo del botón */
}

/* Estilos adicionales para la galería emergente en forma de carrusel */
.carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.carousel.slide {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 900px;
}

.close-gallery {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 3;
}

.carousel-item img {
    height: 100% !important;
}

/*.nav-link.active {
   background-color: #8B4513 !important;
   color: white !important;
	
 }

.nav-tabs {
	--bs-nav-tabs-border-color: #8B4513 !important ;  
}*/

/* Estilo para el texto en cursiva */
.italic-text {
    font-style: italic;
}

/* Estilo para mantener el texto normal */
.normal-text {
    text-transform: capitalize; /* Asegura mayúscula inicial en caso de error */
    font-style: normal;
}


/*Estilos linea cafe tab 7*/
h2 span.linea-cafe {
    display: block;
    margin: 5px auto 0;
    width: 40%;
    height: 3px;
    background-color: #8B4513;
}



/*ESTILOS PARA EL MENU DE TABS*/
.nav-tab-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px; /* Espaciado entre botones */
	margin-bottom: 15px;
}

.nav-item-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #8B4513;
	border: 1px solid #8B4513;
	border-radius: 5px;
	padding: 0 15px;
	font-size: 14px;
	min-width: 50px; /* Ancho mínimo consistente */
	height: auto; /* Ajuste de altura dinámico */
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
}

    
.nav-item-link:hover {
	background-color: #8B4513;
	color: white;
}

    
.nav-item-link.active {
	background-color: #000000;
	color: white;
	border-color: #8B4513;
}

.nav-item-link i {
	display: none; /* Ícono oculto por defecto */
	font-size: 18px;
}

/* Estilo responsivo para móviles */
@media (max-width: 768px) {
	.nav-item-link span {
		display: none; /* Oculta el texto */
	}
	
	.nav-item-link i {
		display: inline-block; /* Muestra el ícono */
	}

	.nav-item-link {
		padding: 7px; /* Reduce padding en móviles */
		min-width: auto; /* Ancho dinámico */
		width: 45px; /* Botones pequeños y uniformes */
		height: 45px; /* Altura igual al ancho */
		border-radius: 10%; /* Botones redondeados */
	}
}



