body {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100vw;
    height: 100dvh;
    overflow-y: scroll;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1;
    text-shadow: 1px 1px 2px black;
    font-family: "Fredoka", sans-serif;
    user-select: none;
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
}
.mask{
    position: fixed;
    height: 100dvh;
    width: 100vw;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.loaderContainer {
    width: 100vw;
    height: 100dvh;
    position: fixed;
    background: rgb(255, 255, 255);
    z-index: 99999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loaderContainer video {
    pointer-events: none;
    user-select: none;
}
.profileInfo{
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    height: 90dvh;
    overflow-y: scroll;
    width: 550px;
    position: relative;
    padding: 1.5rem;
}
.imgProfileContainer {
    width: 135px;
    background-color: #ffffff;
    border-radius: 200px;
    padding: 20px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.imgProfile{
    width: 100px;
    height: auto;
}
.menuRedes{

}
.menuRedes ul{
    padding: 0;
    margin: 0;
}
.menuRedes ul li{
    display: inline;
    list-style: none;
}
.menuRedes ul li a{
    text-decoration: none;
}
.linkRectangle{
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    text-shadow: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.linkLabel{
    cursor: pointer;
}
.linkIcon{
    width: 50px;
    height: 50px;
}
.share-container {
    position: absolute;
    right: 15px;
    top: 15px;
}
.share-container .btn {
    margin: 0 0 5px 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: none;
}

#shareButton:hover{
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
#shareButton.is-active{
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background-color: #fff;
    color: #000000;
}
#whatsappShare{
    background-color: #25d366;
}
#twitterShare{
    background-color: #14171a;
}
#facebookShare{
    background-color: #1877f2;
}
#copyLink{
    background-color: #515151;
}
#btnCircuitos.active{
    background-color: #e8e8e8;
}
#countries {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    display: flex;
    /* Siempre presente para permitir transiciones */
}

#countries.active {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    /* ajusta según contenido */
}
.flag{
    width: 20px;
    height: 15px;
    margin-top: -4px;
}
.modalTitleImg{
    width: 30px;
    height: 30px;
}
.btnCountry{
    width: 150px;
    font-size: 18px;
}
.btnPDF{
    width: 90%;
    font-size: 18px;
}
.bi-facebook{
    cursor: pointer;
}
.bi-instagram{
    cursor: pointer;
}
.bi-tiktok{
    cursor: pointer;
}
.bi-facebook:hover{
    color: #1877f2;
}
.bi-instagram:hover{
    color: #c32aa3;
}
.bi-tiktok:hover{
    color: #010101;
}
.modal-header .btn-close {
    filter: brightness(0) saturate(100%) invert(28%) sepia(99%) saturate(7485%) hue-rotate(0deg) brightness(98%) contrast(108%);
}
a{
    color: #ffffff;
}
.carrusel-pro {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
    width: 100%;
    /* Para que respete el ancho del modal */
    box-sizing: border-box;
    justify-content: center;
}

.slide {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    /* Cada slide ocupa el ancho del carrusel (máximo 300px) */
    max-width: 30%;
    scroll-snap-align: center;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.4s ease, z-index 0.3s ease;
}

.slide:hover {
    z-index: 10;
}

.slide img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.slide:hover img {
    transform: scale(1.06);
}
.img-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.img-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.close-btn {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.0);
    color: red;
    border: none;
    cursor: pointer;
    z-index: 1000;
}
.labelModal{
    width: 90%;
    text-shadow: none;
    font-size: 18px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    flex-direction: row;
}
.sqMap{
    width: 40px;
    height: 40px;
}
.labelModal2{
    width: 90%;
    text-shadow: none;
    font-size: 18px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff;
    flex-direction: column;
}
.labelModal2 strong{
    text-shadow: none;
}
@media only screen and (max-width: 991px) {
.labelModal, .labelModal2 {
    width: 100%;
}
}
@media only screen and (max-width: 560px) {
.profileInfo {
    height: 90dvh;
    width: 90%;
}
}
@media only screen and (max-width: 410px) {
.profileInfo {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
}
@media only screen and (max-width: 386px) {
.btnCountry{
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
}
@media only screen and (max-width: 360px) {
.fs-4{
    font-size: 16px !important;
}
}