:root { 
  --color-principal: #43bca8; /* Color principal */
  --accent-color: #009961; /* Color principal */
  --gris-color: #858282; /* Color principal */
  --gris2-color: rgb(145 137 137); /* Color principal */  
}

.whatsapp-btn {
    position: fixed;
    /* visibility: hidden; */
    /* opacity: 0; */
    right: 30px;
    bottom: 101px;
    z-index: 100000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);	
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.4s;
}

.whatsapp-btn i {
    font-size: 19px;
    color: #fff;
    line-height: 0;
}

.whatsapp-btn:hover {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        width: 32px;
        height: 32px;
    }
	
	.whatsapp-btn i {
		font-size: 16px;
	}
}

.servicios{
	cursor:pointer;
}

.servicios:hover .SubmenuH3{
	color:var(--accent-color);
}

.SubmenuH3{
	color:var(--gris-color);
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.back-btn{
	position: absolute;
    top: 25px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.back-btn:hover {
	background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.trans-table{
	--bs-table-bg: #ffffff36!important;
    --bs-table-border-color: #000!important;
    --bs-table-color: #ffffff!important;
    --bs-table-striped-color: #ffffff!important;
	--bs-table-color-type:var(--gris-color)!important;	
	--bs-table-color-state:var(--gris-color)!important;
}

#pantalla-carga {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro */
    display: none; /*debe ser flex*/
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
    transition: opacity 0.5s ease; /* Transición suave al desaparecer */
}

/* Spinner sencillo */
.spinner {
    width: 5rem;
    height: 5rem;
    border: 5px solid #fff; /* Color de fondo del spinner */
    border-top: 5px solid #000; /* Color de la parte activa */
    border-radius: 50%;
    animation: girar 1s linear infinite;
}

@keyframes girar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message{
	display:none;
	color: #1bf71ba1;
    text-align: center;
    background: #f72b2ba1;
    padding: 0px 10px 10px 10px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;	
}

.sent-message{
	display: none;
    color: #1bf71ba1;
    text-align: center;
    background: #3c39409c;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
}

.overlay-content{
	background:rgb(255 255 255 / 79%)!important
}

.overlay-content h2 {
	color:var(--accent-color)!important;	
}

.close-btn, .back-btn{
	color:var(--gris-color)!important;	
}

.submit-btn{
	color:var(--gris-color)!important;	
}