/*Estilos filtro de imagenes  */

body{
    min-height: 100vh;
    background-color: white;

}

.container_filter{

    position: relative;
    
    width: 90%;
    padding: 20px;
    margin: 50px auto;
    background-color: white;
}
button{
    padding: 10px 20px;
    font-size: 18px;
    background-color: white;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
.precio{
    color: black;
    font-size: large;
    margin-top: 20px;
    text-align: center;
}
.filter-buttons{
    display: flex;
    align-items: center;
    gap: 10px;
    
}
button.active {
    background-color: red;
    color: white;

}
.filterable_cards{
    display: flex;
    margin-top: 100px;
    gap: 15px;
    flex-wrap: wrap;
    
}
.card{

    width: 250px;
    background-color: white;
    
    border-radius: 8px;
    border: 1px solid black;
    align-items: center;

}
.card.hide{
    display: none;
}
.card img {

    margin: 30px;
    width: 80%;
    height: 180px;
    border-radius: 8px 8px 0 0;
    object-fit: fill;
}
.card-body{
    padding: 15px 20px 20px;
}
.card-title{
    font-size: 20px;
    font-weight: 50px;
    color: black;
    text-align: center;
    margin-bottom: 20px;

}
.card-text{
    text-align: center;
    font-size: 18px;
    color: black;


}

@media (min-width: 350px) and (max-width: 700px){

   .filterable_cards{
    display: flex;
    justify-content: center;
    display: grid;
    grid-template-columns: auto auto;
    background-image: none;
    margin: 0px;
    margin-top: 30px;
  
  
    
}

.card{

    width: 180px;
    background-color: rgb(249, 244, 244);
    
    border-radius: 8px;
    border: 1px solid black;
    align-items: center;
    height: 400px;
}

.container_filter{

    position: relative;

    width: 100%;
    padding: 20px;
    margin: 50px auto;
    
}
.card img {

    margin: 10px;
    width: 80%;
    height: 150px;
    border-radius: 8px 8px 0 0;
    object-fit: fill;
}
  

}
/*imagenes gif */


.texto h2{
    font-size: xx-large;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.container_gif img{
    width: 180px;
    height: 250px;
    border-radius: 20px;
    margin: 5px;
    
}
.container_gif{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    max-width: 100%;
    
    
}

@media (min-width: 350px) and (max-width: 700px){
    

    
    .container_gif img{
    width: 180px;
    height: 250px;
    border-radius: 20px;
}
.container_gif{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
     justify-content: flex-start;
    
}

}

/*Waves */

.container-wave{
    background-color: red;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1;
}

h2{
    position: absolute;
    font-size: 5rem;
    
}
.border{
    color: black;
    text-shadow: 
    -1px 1px 0 white,
    1px -1px 0 white,
    1px 1px 0 white,
    -1px -1px 0 white
}
.wave{
    color: #09f;
    animation:wave 3s ease-in-out infinite;
}
@keyframes wave{
    0%, 100% {
        clip-path: polygon(
            0% 47%,
            10% 48%,
            33% 54%,
            54% 68%,
            70% 61%,
            84% 59%,
            100% 52%,
            100% 100%,
            0% 100%
        );

    }
    50%{
        clip-path: polygon(
            0% 60%,
            15% 65%,
            34% 66%,
            51% 62%,
            67% 50%,
            84% 45%,
            100% 46%,
            100% 100%,
            0% 100%
        );
    }
}
@media (min-width: 350px) and (max-width: 700px){
    h2{
        font-size: 4rem;
    }
    .container-wave{
        z-index: 1;
    }
}

/*Slider automatico */

.slider{
    width: 100%;
    height: 500px;
    margin: auto;
    overflow: hidden;
}
.slider ul{
    padding: 0;
    display: flex;
    width: 400%;

    animation: slider 20s infinite alternate;
    animation-timing-function: linear;
}
.slider li{
    width: 100%;
    list-style: none;
}
.slider li img{
    width: 100%;
    height: 500px;
}
@keyframes slider{
    0%{margin-left: 0;}
    20%{margin-left: 0;}

    25%{margin-left:-100%;}
    45%{margin-left: -100%;}

    50%{margin-left: -200%;}
    70%{margin-left: -200%;}

    75%{margin-left: -300%;}
    100%{margin-left: -300%;}
}

/*menu*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

:root {
  --primary: #8a3ffc;
  --primary-border: rgba(138, 63, 252, 0.2);
  --white: #fff;
  --black: #e9e9ed;
  --container: 120rem;
  --nav-height: 6rem;
}
.container_menu {
   display: flex;
   
  padding: 0 1rem;
  margin: 0 auto;
  background-color: black;
  width: 100%;
  height: 70px;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: 'Outfit', sans-serif;
}
header {
  box-shadow: 0 0 0.4rem rgba(139, 150, 214, 0.5);
}
.btn-primary {
  color: var(--white);
  display: inline-block;
  background: var(--primary);
  font-size: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
  font-weight: bold;
  padding: 0.8rem 3rem;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0 0 2rem 0.5rem rgba(175, 175, 175, 0.5);
}
.btn-primary:hover {
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: inset 0 0 2rem 0.5rem rgba(255, 255, 255, 0.74);
}
.logo {
  width: 8rem;
  height: 5rem;
  object-fit: cover;
}
.navigation {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_list {
  display: inline-block;
  margin: 0 1.6rem;
}
.nav_link {
  position: relative;
  font-size: 1.7rem;
  color: var(--black);
  font-weight: 500;
  border-radius: 0.2rem;
  outline: none;
}
.f-10 {
  font-size: 3rem;
  color: #8e80d3;
  font-weight: 600;
}
.hero_heading {
  font-size: 4rem;
}
.hero-container {
  padding: 9rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center end;
  grid-gap: 2rem;
}
.hero_left {
  width: 100%;
  place-items: center start;
}
.profile {
  width: 32rem;
  border-radius: 50%;
  margin-right: 10rem;
  background-size: cover;
  border: 0.1rem solid var(--primary-border);
  outline-offset: 1rem;
  outline: 0.1rem solid var(--primary-border);
}
.hero_left * {
  margin: 1rem 0;
}
ul {
  position: relative;
}
.nav_link.active {
  color: var(--white);
  animation: wait 0.5s linear;
  
}
#marker {
  position: absolute;
  height: 3.4rem;
  left: -0.4rem;
  top: -0.4rem;
  padding: 0.6rem 2rem;
  width: 8.5rem;
  background: var(--primary);
  border-radius: 0.4rem;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out,
    left 0.5s ease-in-out;
  position: absolute;
}

.typing {
  letter-spacing: 0.2rem;
  font-size: 3rem;
}
.txt-type {
  color: var(--primary);
  border-right: 0.3rem solid var(--primary);
}
@keyframes wait {
  0% {
    color: var(--black);
  }
  100% {
    color: var(--white);
  }
}
@media (max-width: 768px) {
  .hero-container {
    padding: 3rem 0;
    grid-template-columns: repeat(1, 1fr);
    place-content: center center;
    place-items: center;
    gap: 5rem;
  }
  .hero_right {
    grid-column: 1;
    grid-row: 1;
  }
  .hero_left {
    grid-column: -2;
    grid-row: 2;
    text-align: center;
  }
  .profile {
    margin-top: 3rem;
    width: 27rem;
    margin-right: 0;
  }
  .nav_menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(23, 3, 3, 0.9);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
  }
  .nav_menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all 0.5s ease-in-out;
    animation: menuBlur 0.5s linear;
  }
  @keyframes menuBlur {
    0% {
      filter: blur(1rem);
    }
    100% {
      filter: blur(0);
    }
  }
  #marker {
    display: none;
  }
  .nav_list {
    display: block;
    padding: 1rem 0;
    text-align: center;
  }
  .nav_link.active {
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  .mobile_icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }
  .line {
    position: relative;
    width: 100%;
    height: 0.3rem;
    top: 1.5rem;
    background: var(--primary);
    border-radius: 0.1rem;
    transition: all 0.5s ease-in-out;
  }
  .line.active {
    background: transparent;
  }
  .line::before,
  .line::after {
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background: var(--primary);
    border-radius: inherit;
    transition: all 0.5s ease-in-out;
  }
  .line::before {
    transform: translateY(-1rem);
  }
  .line.active::before {
    transform: rotate(-45deg);
  }
  .line::after {
    transform: translateY(1rem);
  }
  .line.active::after {
    transform: rotate(45deg);
  }
}


/*whatsApp*/

.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;
	}
}

/*Footer*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
footer{
    background-color: rgb(44, 43, 43);
}
.footer-container{
    width: 100%;
    padding: 70px 30px 20px;
}
.redes-icon{
    display: flex;
    justify-content: center;
}
.redes-icon a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.redes-icon a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;


}
.redes-icon a:hover{
    background-color: black;
    transition: 0.5s;
}
.redes-icon a:hover i{
    background-color: white;
    transition: 0.5s;
}

.footer-nav{
    margin: 30px 0;
}
.footer-nav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footer-nav ul a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footer-nav ul a:hover{
    opacity: 1;

}
.footer-buttom{
    background-color: black;
    padding: 20px;
    text-align: center;
}
.footer-buttom p{
    color: white;
}

@media (min-width: 350px) and (max-width: 700px){

.footer-nav ul{
    flex-direction: column;
}
.footer-nav ul li{
    width: 100%;
    text-align: center;
    margin: 10px;
}
}

/*Doble_seccion*/

.container_seccion img{
    width: 850px;
    height: 400px;
    border-radius: 20px;
    margin-bottom: 50px;
}
.container_seccion{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.seccion_text{
    
text-align: center;
}
.seccion_text p{
    font-size: x-large;
}

@media (min-width: 350px) and (max-width: 700px){
  .container_seccion{
    display: block;
    margin-bottom: 50px;
    
    width: 96%;
    
 } 
 .container_seccion img{
    width: 90%;
    height: 400px;
    
    
}
.seccion_img{
  display: flex;
  justify-content: center;
}
 .seccion_text{
    font-size: xx-large;
    font-weight: 700;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
    width: 90%;
} 
.seccion_text p{
    text-align: center;
} 
}

/*Video*/
.video{
  
  display: flex;
  justify-content: center;
}
.video iframe{
  width: 500px;
  height: 400px;
}

@media (min-width: 350px) and (max-width: 700px){

  .video iframe{
  width: 90%;
  height: 400px;
}

}

/*Reloj digital*/

.container-clock{
    height: 45%;
    width: 40%;
    display: grid;
    margin-left: 350px;
    grid-template-rows: 35% 65%;
    align-items: center;
    justify-content: center;
    border: .3rem solid #e70707;
    border-radius: 3rem;
    background-color: #1a1a1a;
}
.day{
    margin-top: 3rem;
    font-size: 3.5rem;
    text-align: center;
    padding: 0 1rem;
    border-bottom: 2px solid #1a1a1a;
    background: linear-gradient(90deg,#00dbde,#fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.box{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 .5rem;
    width: 70%;
    height: 8rem;
    align-items: center;
    color: #fff;
    background-color: #1a1a1a;
    position: relative;
    border-radius: 1rem;
    font-size: 4rem;
    overflow: hidden;
}
.clock p{
    font-size: 1rem;
}.clock::before{
    content: " ";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 90%;
    height: 8rem;
    background: linear-gradient(0deg, transparent,
    transparent, #531102, #531102, #531102 );
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 5s linear infinite;
}
.clock::after{
    content: " ";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 90%;
    height: 8rem;
    background: linear-gradient(0deg, transparent,
    transparent, #6e0385, #6e0385, #6e0385 );
    z-index: 0;
    transform-origin: bottom right;
    animation: animate 5s linear infinite;
    animation-delay: -3s ;

}

@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.front-clock{
    text-align: center;
    padding-top: .6rem;
    background-color: #0d0d0d;
    width: 93%;
    height: 93%;
    border-radius: 1rem;
    z-index: 1;

}
@media (max-width: 890px) {
    .container-clock{
        width: 60%;
    }
    .clock{
        font-size: 3rem;
    }
}
@media (max-width: 590px){
    .container-clock{
        grid-template-rows: 20% 80%;
    }
    .day{
        margin-top: 0;
    }
    .box{
        display: grid;
        grid-template-rows: 33% 33% 33%;

    }
    .clock{
        width: 30vw;
        margin: 0;
        font-size: 4rem;
        margin-top: .8rem;

    }

}
@media (min-width: 350px) and (max-width: 700px){
    .container-clock{
        margin-left: 0;
        width: auto;
        height: 300px;
        background-color: #1a1a1a;
        border: 1px solid white;
        
    }
    .box{
        display: flex;
    }
    
   

}







