@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
 
  font-family: "Poppins", sans-serif;
}

/************************
     el encabezado
*************************/
header{
  box-sizing: border-box;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}


.logo{  /* abarca la imagen de base de datos y la marca */
    display: flex;
    align-items: center;
}


header .base{
  
  height: 50px;
  width: 50px;
    
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  
  
}

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}


/************************
 termina el encabezado
*************************/

section{
  padding: 100px 200px;
  box-sizing: border-box;
    
     
  
}



.home{                /* home son los videos y palabras del centro */
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #2696E9;
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h1{
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 40px;
}

.home .content h1 span{
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p{
  margin-bottom: 65px;
}

.home .content a{
  background: #fff;
  padding: 15px 35px;
  color: #1680AC;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}


/************************
     las redes sociales
*************************/

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a{
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media-icons a:hover{
  transform: scale(1.3);
}


/******************************
    fin de  las redes sociales
******************************/









/******************************
    fin de  las flechas
******************************/
.flechas{
    margin-left: -200px;
    top: 80px;
    position: absolute;
    z-index: 999;
    *background: red;
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

  
/******************************
    fin de  las flechas
******************************/














.home video{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
 z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
  background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.video-slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

@media (max-width: 1294px){
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;  /*****************************/
  }
    
    
    .flechas{
    margin-left: -20px;
    
}

}


@media (max-width: 1040px){
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(images/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(images/cerrar.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}

@media (max-width: 560px){
  .home .content h1{
    font-size: 3em;
    line-height: 60px;
  }
  

}
  


/******************************
    aqui termina el encabezado
*******************************/





/****************************
** PREGUNTAS FRECUENTES******

*****************************
#pregunta{
  background: #eff0f4;
}
#pregunta .container{
    
    margin-top: 0px;
    display: flex;
    justify-content: space-around;
    
    align-items: center;
    
}

.faq {
    width: 50%;
    text-align: center;
    
}


.faq p{
    
    margin: 40px 20px;
    font-size: 14px;
    line-height: 24px;
    

    
}
.faq a{
    
        

    background: #F64B4B;
    padding: 20px 40px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    
    
}



.cont{
    width: 50%;
    text-align: center;
    
}

.cont iframe{
    width: 500px;
    height: 252px;
}





***************************
** MEDIA DE FAQ FAQ FAQ******

*****************************
@media screen and (max-width: 800px) {
    
#pregunta .container{
    flex-direction: column;
    
    margin-top: -40px;
    padding-top: 0px; 
    
    
    
}
.cont{
  
  
    width: 100%;
    margin-top: 40px;
   
        
    }
  
.cont iframe{
    width: 351px;
    height: 205px;
   
}  
.faq{
  
    width: 100%
    }
    
#pregunta h2{
        margin-top: 0px;
        font-size: 24px;
    }
  

  

}
***************************
** FIN DE PREGUNTAS FRECUENTES******

******************************/







/****************************
** INICIO DE PALABRAS Y PRECIO

******************************/


h2{
    color:dodgerblue;
}
h3{ font-family: cursive;
    
    color: deeppink;
    
}

h4{
    font-family:serif;
    font-size: 30px;
    color: forestgreen;
}

h5{
    
    font-family:sans-serif;
    color:red;
}

h6{ font-family: monospace;
    font-size: 28px;
    color: darkorange;
}


.palabras {
    
margin-top: 40px; 
margin-bottom: 40px;
 display:flex;
 flex-wrap: wrap;
 justify-content: space-around;
  *background: red; 
 width: 100%; 
    text-align: center;
}


.estasson{
    width: 35%;
    *background: grey;
}

.precios{
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
   *background: yellow;
}

.caja{
    padding-top: 10px;
    width: 28%;
    height: 100%;
    border: 3px dotted blue;
    background-color: dodgerblue;
    border-radius: 8px;
}

.caja j{
    font-family: cursive;
    color: yellow;
}

.caja i{
    color:yellow;
}

.caja p{ color:aliceblue;}


/****************************
** INICIO DE PALABRAS Y PRECIO

******************************/
/***************************
** MEDIA DE palabras******

*****************************/
@media screen and (max-width: 800px) {
    
    .estasson{
        width: 90%;
    }
    
    .precios{
        width: 90%;
    }
    
    .caja{
        width: 90%;
        height: 300px;
        
        margin-bottom: 10px;
    }

}



/* ****************************
AQUI VAMOS A METER EL MENU 3D
***************************** */


.contenedor1 { 
  
  padding-top: 100px;
  *background: #162D56; /*azul oscuro*/
  *background: #EA50D0; /*rosado*/
  *background: #788DC8; /*azul calro*/
  background: linear-gradient(90deg, #2696E9, #fff);
  *background-image: url("images/fondobases.jpg");
  background-size: cover;
 font-family: 'Barlow Condensed', sans-serif;   
 display: flex;
 justify-content:space-around;
 flex-wrap: wrap;
 
}

ul{
    position: relative;
    transform: skewY(-15deg);
    transition: 0.5s;
    padding-bottom: 100px;  
    margin-left:100px;
    
}

ul li{
    position: relative;
    list-style: none;
    width: 200px;
    background: #3e3f46;
    padding: 15px;
    z-index: var(--i);
    transition: 0.5s;
}

.im li:hover{
    background: #02D702; /*#33a3ee */
    transform: translateX(50px);
}

.ex li:hover{
    background: #fe0000; /*FF4747; /*#33a3ee al frente */
    transform: translateX(50px);
}


.im li::before{
    content: '';
    position: absolute;
    margin-top:-15px; /*tuve que arreglar el top cero*/
    /*top 0;*/
    left: -40px;
    width: 40px;
    height: 100%;
    background: #006800; /* color al lado*/
    transform-origin: right;
    transform: skewY(45deg);
    transition: 0.5s;
    
}

.ex li::before{
    content: '';
    position: absolute;
    margin-top:-15px; /*tuve que arreglar el top cero*/
    /*top 0;*/
    left: -40px;
    width: 40px;
    height: 100%;
    background: #bb0903; /* color al lado queda*/
    transform-origin: right;
    transform: skewY(45deg);
    transition: 0.5s;
    
}

.im li::after{
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #00A000;/*#35383e*/ /*superior*/
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 0.5s;
    
}
.ex li::after{
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #df0000;/*#35383e*/ /*superior*/
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 0.5s;
    
}

ul li:hover::after{
   /* background: #2982b9;*/
}

ul li a{
    font-family: 'Barlow Condensed', sans-serif;
    text-decoration: none;
    color: white;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.5s;
    font-size: 20px;
    
}
ul li:hover a{
    color:#fff;
   
}

ul li:last-child::after{
    box-shadow: -100px 100px 20px rgba(0,0,0,1);
}


/* ****************************
AQUI TERMINA EL MENU 3D
***************************** */





/* ****************************
AQUI COMIENZA CALCULADORA
***************************** */


/***********************************
** ESQUEMA CALCULADORA CUADROS ******

******************************/


#seccalc{ /*toda la seccion de la calculadora*/
  
  *background: #fff444;
}

#seccalc .container{ /*contiene a los dos caluladora y al titulo*/
    *background: #344566; /*fonde ambos*/
    margin-top: -40px;
    display: flex;
    justify-content: space-around;
    *background-color: #fff;
    align-items: center;
    
}


.dibucalc { /*contiene a la calculadora*/
    width: 50%;
    text-align: center;
  *background: red;
  
    
}


.titulo {
    width: 50%;
    text-align: center;
    *background-color: orange; /*titulo parrafo y boton*/
}


.titulo p{
    
    margin: 40px 20px;
    font-size: 14px;
    line-height: 24px;
  
    

    
}
.titulo a{
    
    
    background: #F64B4B;
    color:#fff;
    padding: 20px 40px;
    display: inline-block;
    font-weight: 500;
    border-radius: 30px;
    
}


.containercalcu{ /* es la caluladora en si*/ 
   width: 51%; /*determina el ancho de la calculadora*/
   margin: auto;
}




/****************************
** MEDIA DE CALCULADORA******

******************************/


@media screen and (max-width: 800px) {
  
.containercalcu{
   width: 50%;
}  
    
#seccalc .container{
    flex-direction: column;
    
    margin-top: -40px;
    padding-top: 0px;   
    
    
}
.dibucalc{
        width: 100%;
        
    } 
.titulo {
        width: 100%
    }
    
#seccalc h2{
        margin-top: 80px;
        font-size: 24px;
    }
  


}

@media screen and (max-width: 1440px) {
 
.containercalcu{
   width: 86%;
}    

}
/****************************
** FIN DE PREGUNTAS FRECUENTES******

******************************/


/**{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas;
}*/

/*body{
  
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #333;
  
}*/

.containercalcu {
  position: relative;
  min-width: 100px;
  min-height: 200px;
  background: #333;
  padding: 40px 30px 30px;
  border-radius: 20px;
  box-shadow: 25px 25px 75px rgba(0,0,0,0.25), 10px 10px 70px rgba(0,0,0,0.25), inset -5px -5px 15px rgba(0,0,0,0.5), inset 5px 5px 15px rgba(0,0,0,0.5);
  
}

.calculator{
  position: relative;
  display: grid;
}

.calculator .value{
  position: relative;
  grid-column: span 4;
  height: 50px;
  left: 10px;
  width: calc(100% - 50px);
  border: none;
  outline: none;
  background: #a7af7c;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.75);
  text-align: right;
  padding: 10px;
  font-size: 2em;
}

.calculator span{
  position: relative;
  display: grid;
  place-items: center;
  width: 60px; /*ancho de boton*/
  height: 60px; /*altura de boton*/
  margin: 6px; /*margen entre botones*/
  background: linear-gradient(180deg, #2f2f2f, #3f3f3f);
  box-shadow: inset -8px 0 8px rgba(0,0,0,0.15), inset 0 -8px 8px rgba(0,0,0,0.25), 0 0 0 2px rgba(0,0,0,0.75), 10px 20px 25px rgba(0,0,0,0.4);
  color: #fff111; /*color de boton*/
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  border-radius: 10px;
  
}

.calculator span::before{
  content: "";
  position: absolute;
  top:3px;
  left:4px;
  bottom: 14px;
  right: 12px;
  background: linear-gradient(90deg, #2d2d2d, #4d4d4d);
  border-radius: 10px;
  box-shadow: -5px -5px 15px rgba(0,0,0,0.1), 10px 5px 10px rgba(0,0,0,0.15);
  border-left: 1px solid #0004;
  border-bottom: 1px solid #0004;
  border-top: 1px solid #0009;
  
}

.calculator span:active{
  filter: brightness(1.5);
}

.calculator span i{
  position: relative;
  font-style: normal;
  font-size: 1.5em;
  text-transform: uppercase;
  
}

.calculator .clear{
  grid-column: span 2;
  width: 160px; /*ancho de clear */
  background: #f00;
}

.calculator .clear::before{
  background: linear-gradient(90deg, #d20000, #ffffff5c);
  border-left: 1px solid #fff4;
  border-bottom: 1px solid #fff4;
  border-top: 1px solid #fff4;
  
}
.calculator .plus{
  grid-row: span 2;
  height: 130px; /*altura de mas +  */
  
}
.calculator .equal{
  
  background: #2196f3;
  
}

.calculator .equal::before{
  background: linear-gradient(90deg, #1479c9, #ffffff5c);
  border-left: 1px solid #fff4;
  border-bottom: 1px solid #fff4;
  border-top: 1px solid #fff4;
  
}




/****************************
** inicio de Tarjetas 3  ***

******************************/



/**{ 
  margin: 0;
  padding: 0;
  box box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}*/

.tarjetas{
  *box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: #eff0f4;
  *background: linear-gradient(90deg, #fff, #2696E9);
  *background: grey;
}

.containert{
  width: 100%;
  *background: red; /*esta es la sub caja que abarca las 3 tarjetas*/
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 0;
  gap: 40px 60px;
  
}

.containert .drop{
  
  position: relative;
  width: 350px;
  height: 350px;
  
  box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05), 25px 35px 20px rgba(0,0,0,0.05), 25px 30px 30px rgba(0,0,0,0.05), inset -20px -20px 25px rgba(255,255,255,0.9);
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  
}


.containert .drop:nth-child(1){
  
  border-radius: 57% 43% 43% 57% /43% 43% 57% 57%;  
  
}

.containert .drop:nth-child(2){
  
  border-radius: 73% 27% 59% 41% /57% 59% 41% 43%;  
  
}

.containert .drop:nth-child(3){
  
  border-radius: 35% 65% 31% 69% /57% 59% 41% 43%;  
  
}
.containert .drop:hover{
  border-radius: 50%;
   
}

.containert .drop::before{
  
  content: '';
  position: absolute;
  top: 50px;
  left: 85px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
}


.containert .drop::after{
  
  content: '';
  position: absolute;
  top: 90px;
  left: 110px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
}


.containert .drop .content{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  gap: 15px;
  
  
}

.containert .drop .content h2{
  position: relative;
  width: 80px;
  height: 80px;
  background: #eff0f4;
  border-radius: 50%;
  box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1), inset -2px -5px 10px rgba(255,255,255,1), 15px 15px 10px rgba(0,0,0,0.05), 15px 10px 15px rgba(0,0,0,0.025);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: var(--clr);
}

.containert .drop .content a{
  position: relative;
  padding: 10px 25px;
  background: var(--clr);
  text-decoration: none;
  color: #fff;
  border-radius: 25px;
  font-weight: 500;
  text-shadow: 0 2px 2px rgba(0,0,0,0.25);
  opacity: 0.75;
  transition: 0.5s;
    
}

.containert .drop .content a:hover{
  
  opacity: 1;
}

.containert .drop .content a::before{
  
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 5px;
  border-radius: 5px;
  background: rgba(255,255,255,0.5);
  
  
}

/****************************
** fin de Tarjetas 3  ***

******************************/




/****************************
** AAAA Aqui viene el Footer AAA ***

******************************/


/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
/*:::::Pie de Pagina*/

.box a{
  color: deeppink;
  *background: #333;
}

.pie-pagina{
    width: 100%;
    background-color: #0a141d;
    *background: red;
}
.pie-pagina .grupo-1{
    *background: orange;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}
.pie-pagina .grupo-1 .box figure{
    margin-top: 50px;
    margin-left: 90px; /*se mueve la imagen conceadu*/
    width: 40%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure a{
  font-size: 24px;
  color: aqua;
}

.pie-pagina .grupo-1 .box figure img{
    width: 150px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
}
.pie-pagina .grupo-1 .red-social a:hover{
    color: aqua;
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
        *display:none;
    }
}




/****************************
**AAAAA FINAL Aqui viene el Footer AAAA ***

******************************/

