body{
    /* background: linear-gradient(90deg, 
    #662482 0%, 
    #28348a 100%); */
    /* background-color: #000 !important; */
    /* background: linear-gradient(90deg, 
    #3c3b3c 10%,
    #08080c 100%); */

    /* background-color: #fff; */
    color: #000;
    /* font-family: var(--font-family); */
    font-optical-sizing: auto;
    overflow-x: hidden;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        margin: 0;
}

.content {
    flex: 1;
}


nav .link-logo svg .cls-2 {
    opacity: 1;
}

nav.fixed-top .link-logo {
    width: 150px;
    transition: 0.5s;
}

.link-logo{
    margin-bottom: 10px;
    width: 150px;
}


/* Esto es solo para demostrar el cambio de opacidad */
nav.fixed-top .link-logo svg .cls-2 {
    opacity: 0.5;
    transition: opacity 1s;
}


@keyframes rotateWords {
0%, 20%, 100% {
    opacity: 0;
}

5% {
    opacity: 0;
}

10%, 15% {
    opacity: 1;
}

}

.shadow-down{
    -webkit-box-shadow: 0px 8px 6px -4px rgba(83,41,132,0.52);
-moz-box-shadow: 0px 8px 6px -4px rgba(83,41,132,0.52);
box-shadow: 0px 8px 6px -4px rgba(83,41,132,0.52);
}

footer{
    position: relative;
    bottom: 0;
    width: 100%;
    margin: 0;
}

.bg-footer{
    background: rgb(219, 219, 219);
    background: -moz-linear-gradient(180deg, rgb(223, 223, 223) 0%, rgba(255,255,255,1) 30%);
    background: -webkit-linear-gradient(180deg, rgb(216, 216, 216) 0%, rgba(255,255,255,1) 30%);
    background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgba(255,255,255,1) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7c7c7",endColorstr="#ffffff",GradientType=1);
}


.slide-img{
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 50px 50px -50px rgba(255, 255, 255, 0.8);
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-img-main{
    background-image: url('/assets/img/fondo-viento.webp'); /* Replace with your image path */
}


.slide-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color); /* Color y opacidad del overlay */
    opacity: 0.3;
    z-index: 1;
  }

.slide-img .textos-img{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}

.features-rotate{
    position: relative;
    display: inline-flex;
    justify-content: center;
    height: 1em;
    vertical-align: top;
    margin-top: 2rem;
}

.features-rotate .word{
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation:  16s ease 0s infinite normal none running rotateWords;
    text-shadow: 2px 0px 27px #080808;
}

/* .bg-img-servicios{
    background-image: url('/assets/img/slide-web-op.webp');
    position: relative;
}

.bg-img-servicios::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.8;
    z-index: 1;
}

.container-servicios{
    z-index: 100;
    position: relative;
} */

.bg-brix{
    background: linear-gradient(
  to top right, /* Direccion del gradiente */
  #662482 0%,   /* Primer color con offset 0% */
  #28348a 100%  /* Segundo color con offset 100% */
);
}


.bg-brix-hover{
    -webkit-box-shadow: 0px 10px 42px -17px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 42px -17px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 42px -17px rgba(0,0,0,0.75);
}

.bg-brix-hover .card-title{
    color: var(--primary-color);
}

.card :hover{
    cursor: pointer;
}

.card img{
	transition: transform 1s ease-in-out;
}

.card .imagen-card{
    overflow: hidden;
}

.card img:hover{
    transform: scale(1.1);
}


.navbar-nav .nav-link.active{
    color: var(--navbar-active-color);
}

.navbar-collapse.menu-mobile{
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 1px 12px 56px -13px rgba(84,41,132,0.75);
-webkit-box-shadow: 1px 12px 56px -13px rgba(84,41,132,0.75);
-moz-box-shadow: 1px 12px 56px -13px rgba(84,41,132,0.75);
}

/* #flags{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
} */

.flags__item{
    width: 25px;
    height: auto;
    cursor: pointer;
}


.flags__item.activo{
    opacity: 1
}

.flags__item:not(.activo){
    opacity: 0.4;
}

.flags__item:hover{
    opacity: 1;
}

ul{
    list-style: none;
}

/* Media Queries */

@media (min-width: 576px) { 
    .link-logo{
        width: 160px;
    }
    .flags__item{
        width: 30px;
    }
    
 }

 @media (min-width: 768px) {
    body {
        font-size: 1.25rem; /* Aumentar a 1.5 * 16px = 24px en pantallas más grandes */
    }
}

 @media (min-width: 992px) { 
    .link-logo{
        width: 170px;
    }
    nav:not(.fixed-top) .link-logo {
        margin-top: -10px;
     }
 }

 @media (min-width: 1200px) { 
    .link-logo{
        width: 180px;
    }
 }

 i{
    color: var(--primary-color);
 }

 .bg-h2{
    background-color: #e9e9e9;
 }

 .h2-subopciones{
    border-top: 2px solid var(--primary-color);
 }

 .h3-page{
    background: linear-gradient(
        to right, /* Dirección del gradiente */
        #662482 0%,  /* Primer color con offset 0% */
        #28348a 100% /* Segundo color con offset 60% */
      );
 }