*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  
  
}
nav{
    background: linear-gradient(98deg,white,rgb(21,50,92));
   
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgb(1, 101, 255,0.5);

}
.nav-container{
   display: flex;
   justify-content: space-between; 
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   font-size: 1.2rem;
}

.nav-links{
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}
.nav-links a {
    color:white; 
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-links a:hover {
    opacity: 0.8;
    color: rgb(21,50,92);
    transform: translateY(-2px);
}
.menu-btn{
    display: none;
   background: none;
   border: none;
   color: white; 
   font-size: 1.5rem;
   cursor: pointer; 
}

@media (max-width: 768px){
    .menu-btn{
        display: block;
    }
    .nav-links{
        position: fixed;
        z-index: 9999;
        top: 100px;
        left: 0;
        width: 100%;
         background: linear-gradient(98deg,white,rgb(21,50,92));
        
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        clip-path: circle(0px at 90% -10%);
        pointer-events: none;
    }
    .nav-links.active{
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    .nav-links.active li{
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links li:nth-child(1){transition-delay:0.1s;}
    .nav-links li:nth-child(2){transition-delay:0.2s;}
    .nav-links li:nth-child(3){transition-delay:0.3s;}
    .nav-links li:nth-child(4){transition-delay:0.4s;}
    .nav-links li:nth-child(5){transition-delay:0.5s;}
    .nav-links li:nth-child(6){transition-delay:0.6s;}
    .nav-links li:nth-child(7){transition-delay:0.7s;}
}
.body{
    background-color:  rgb(255,255,255);
}
.main{
    width: 100%;
    height: 100vh;
    background-color:   rgb(255,255,255);
    
}

/*Inicia seccion 1*/
.section-1{
    display: flex;
    width: 100%;
    height: 16em;
    padding:25px;
    background-color:   rgb(255,255,255);
    
}

.header{
    
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 9.5em;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    font-size:x-large     ;

}
.imgLOGO{
    width: 10%;
    height: 25%;
}
.img{
    width: 25%;
    height: 55%;
}
.menu{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}
.img img{
    object-fit: cover;
    height: 100%;
}
.menu a{
    display: flex;
    text-decoration: none;
    color: rgb(1, 101, 255);
    padding: 2em 1em;
}
.menu a:hover{
    background-color:  rgb(21,50,92);
    color: rgb(255, 255, 255);
}

.box-gallery{
    width: 100%;
    border: 20px solid rgb(255,255,255);
    height: 300px;
    display: flex;
    overflow: hidden;
   

}
.box{
    width: 500px;
    transition: width 0.5s ease;
     &:hover{
        width: 750px;
       
        
    }

}
.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    transition: filter 0.5s ease;
}


.section-2{
    width: 100%;
    height: 16em;
    background-color:  rgb(255,255,255);
    padding: 25px; 
    color: rgb(249, 250, 251);   
}
.s2-img{
    padding: 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: rgb(255,255,255);
    
}
.section-carrusel{
    width: 100%;
    height: 16em;
    background-color: rgb(21,50,92);
    padding: 25px; 
    color: rgb(249, 250, 251);   
   
}
.titulo{
    background-color: rgb(21,50,92); 
    text-align: center;
    padding: 25px;  
    color:  rgb(216,216,216); 

}
.subtitulo{
    background-color:  rgb(255,255,255);
    text-align: left;
    padding-left: 50px;
    color: rgb(21,50,92); 
}
.parrafo{
    background-color:  rgb(255,255,255);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: justify;
    color: rgb(21,50,92); 
    
}

.footer {
  position: relative;
  width: 100%;
  background: rgb(21,50,92);
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10px 5px;
  flex-wrap: wrap;
}

.icon-elem {
  list-style: none;
}

.icon {
  color: white;
  font-size: 32px;
  display: inline-block;
  margin: 0 10px;
  transition: 0.5s;
}

.icon:hover {
  transform: translateY(-10px);
}

.menufo {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.menu-elem {
  list-style: none;
}
.menu-icon {
  color: white;
  font-size: 20px;
  display: inline-block;
  text-decoration: none;
  margin: 5px 10px;
  opacity: 0.5;
  transition: 0.3s;
}

.menu-icon:hover {
  opacity: 1;
}

.text {
  color: white;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 20px;

}



.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #20ba5a;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}


.section-3{
    
    width: 100%;
    height: 35em;
    padding: 35px;
    background-color:  rgb(21,50,92);
    color: rgb(249, 250, 251);  
}
.lista{
    padding-left: 55px;
    padding-right: 55px;
    padding-top: 25px;
    background-color:  rgb(255,255,255);
    color  :  rgb(21,50,92);
    font-size: large;
    align-items: center;

}

.cardi {
	position: relative;
	width: 306px;
	height: 306px;
	border-radius: 10px;
	box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
	font-size: 0.25rem;
}

.cardi::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(
		360deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 0) 71.84%
	);
	opacity: 0;
	top: 0;
	border-radius: 10px;
}

.cardi:hover::before {
	opacity: 1;
	transition: all 0.5s;
}

.cardi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.cardi .cardi-content {
	position: absolute;
	bottom: -20px;
	opacity: 0;
	color: white;
	transition: all 0.5s;
	padding: 10px;
	font-size: 0.75rem;
}

.cardi .cardi-content h2 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
  font-weight: 600;
}

.cardi:hover .cardi-content {
	opacity: 1;
	bottom: 0;
}

.carousel{
    margin:100 px auto;
    width:90%;
    border: 5px solid rgb(255,255,255);
    display: flex;
    overflow-x: auto;
    gap: 2em;
}

.carousel::-webkit-scrollbar{
    display: none;
}
.group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1em;
    animation: spin 15s infinite linear;
    padding-right: 1em;
}
.cardlogo{
    flex: 0 0 5em;
    height: 5em;
    padding: 1em;
    background: rgb(255,255,255);
    font-size: 3rem;
    border-radius: .2em;
    text-align: center;
    align-content: center;
}
@keyframes spin {
   from {translate: 0;}
   to {translate: -100%;} 
}
.container{
    text-decoration: none;
    padding: 3%;
    background: rgb(255,255,255);
    color  :  rgb(21,50,92);
   
}






