/*AGREGAR ANIMACION EN EL SCROLL
https://codepen.io/guillermolojo02/pen/AXQKLv
https://codepen.io/bramus/pen/yikfd
*/


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --turquesa: #42CFC6;
    --violeta: #A64AC9;
    --gris: #413F42;
    --amarillo: #F8DE29;
    --terracota: #C24616;
    --negro: #000;
    --blanco: #FFF;
    --fucsia: #E91157;
}

@font-face {
	font-family: "bebas";
	src: url('../tipografias/bebas/BebasNeue-Regular.ttf');
}
@font-face {
	font-family: "allura";
	src: url('../tipografias/allura/Allura-Regular.otf');
}
@font-face {
	font-family: "kiona-regular";
	src: url('../tipografias/kiona/Kiona-Regular.ttf');
}
@font-face {
	font-family: "kiona-bold";
	src: url('../tipografias/kiona/Kiona-Bold.ttf');
}
@font-face {
	font-family: "lato-thin";
	src: url('../tipografias/lato/Lato-Thin.ttf');
}
@font-face {
	font-family: "lato-regular";
	src: url('../tipografias/lato/Lato-Regular.ttf');
}
@font-face {
	font-family: "lato-bold";
	src: url('../tipografias/lato/Lato-Bold.ttf');
}
@font-face {
	font-family: "lato-cursiva";
	src: url('../tipografias/lato/Lato-Italic.ttf');
}
@font-face {
	font-family: "montserrat-bold";
	src: url('../tipografias/Montserrat/Montserrat-Bold.ttf');
}
@font-face {
	font-family: "abril";
	src: url('../tipografias/abril/AbrilFatface-Regular.ttf');
}
@font-face {
	font-family: "visby-regular"; 
	src: url('../tipografias/visby/VisbyCF-Regular.otf');
}
@font-face {
	font-family: "visby-medium"; 
	src: url('../tipografias/visby/VisbyCF-Medium.otf');
}
@font-face {
	font-family: "visby-bold"; 
	src: url('../tipografias/visby/VisbyCF-Bold.otf');
}
@font-face {
	font-family: "hello";
	src: url('../tipografias/hello/Hello.otf');
}
@font-face {
	font-family: "clip";
	src: url('../tipografias/clip/Clip.ttf');
}


body{
    background-color: var(--blanco);
}
a{
    text-decoration: none !important;
}

/*----------------------------------------------- HEADER -----------------------------------------------*/

header{
    width: 100%;
    height: 80px;
    background-color: var(--negro);
    color: var(--blanco);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200; 
    font-family: "bebas";
}

.logo{
    position: absolute;
    height: 80px;
    float: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: var(--blanco);
    padding-left: 20px;
}
.logo img{
    height: 60px;
    width: auto;
}  
/*
.logo a,
.logo a:hover{
    text-decoration: none;
}
.logo a h1#nombre{
    color: var(--blanco);
    font-size: 20px;
    letter-spacing: 5px;
}
.logo h1#slogan{
    color: var(--blanco);
    font-size: 15px;
    font-family: "lato-bold";
    letter-spacing: 1px; 
    font-weight: lighter; 
}
header img#lupa{
    width: 15px;
    height: auto;
}
*/

.nav-contenedor {
    max-width: 1200px;
    margin: 0 auto; 
}

nav {
    float: right; 
    font-size: 16px;
    letter-spacing: 3px;
}

nav ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0; 
    background-color: var(--negro);
}

nav ul.nav-menu li.menu-principal {
    float: left;
    position: relative; 
}

nav ul.nav-menu li.menu-principal a,
nav ul.nav-menu li.menu-principal a:visited {
    display: inline-block;
    padding: 0px 22px;
    line-height: 80px;
    color: var(--blanco); 
    text-decoration: none; 
}

nav ul.nav-menu li.menu-principal a:hover,
nav ul.nav-menu li.menu-principal a:visited:hover{
    color: var(--amarillo); 
}

/* Mobile header */
.nav-mobile {
    display: none;
    position: absolute;
    top: 5px;
    right: 0;
    background: transparent; /*Fondo de las rayas del menú mobile*/
    height: 70px;
    width: 70px; 
}

#nav-desplegable {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px; 
}
#nav-desplegable span,
#nav-desplegable span:before,
#nav-desplegable span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 23px; /*Ancho de las rayas del menú mobile*/
    background: var(--blanco); /*Color de las rayas del menú mobile*/
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out; 
}
#nav-desplegable span:before {
    top: -8px; /*Espacio de la raya de arriba del menú mobile*/
}
#nav-desplegable span:after {
    bottom: -8px;  /*Espacio de la raya de abajo del menú mobile*/
}
#nav-desplegable.active span {
    background-color: transparent; 
}
#nav-desplegable.active span:before, #nav-desplegable.active span:after {
    top: 0; 
}
#nav-desplegable.active span:before {
    transform: rotate(45deg); 
}
#nav-desplegable.active span:after {
    transform: rotate(-45deg); 
}

/*----------------------------------------------- PORTADAS NUEVO -----------------------------------------------*/

.contenedor-portadas {
    width: 100%;
    height: 100vh; 
    padding: 0px;
    margin: 0px; 
    font: normal 40px "kiona-bold";
    -webkit-font-smoothing: antialiased; 
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portada-turquesa{
    background: var(--turquesa);
}
.portada-violeta{
    background: var(--violeta);
}
.portada-amarillo{
    background: var(--amarillo);
}
.portada-negro{
    background: var(--negro);
}

.circulo-portadas {
    background: var(--negro);
    width: 56px;
    height: 56px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    overflow: hidden;
    opacity: 0;
    margin-top: 70px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    /* -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23); */
    -webkit-animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards;
    animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}
  
@-webkit-keyframes init {
    0% {
        width: 0px;
        height: 0px;
    }
    100% {
        width: 56px;
        height: 56px;
        margin-top: 0px;
        opacity: 1;
    }
}
  
@keyframes init {
    0% {
      width: 0px;
      height: 0px;
    }
    100% {
      width: 56px;
      height: 56px;
      margin-top: 0px;
      opacity: 1;
    }
}
  
@-webkit-keyframes puff {
    0% {
      top: 100%;
      height: 0px;
      padding: 0px;
    }
    100% {
      top: 50%;
      height: 100%;
      padding: 0px 100%;
  
      
    }
}
  
@keyframes puff {
    0% {
      top: 100%;
      height: 0px;
      padding: 0px;
    }
    100% {
      top: 50%;
      height: 100%;
      padding: 0px 100%;
    }
}
  
@-webkit-keyframes borderRadius {
    0% { -webkit-border-radius: 50%; }
    100% { -webkit-border-radius: 0px; }
}
  
@keyframes borderRadius {
    0% { -webkit-border-radius: 50% }
    100% { border-radius: 0px }
}
  
@-webkit-keyframes moveDown {
    0% { top: 50% }
    50% { top: 40% }
    100% { top: 100% }
}
  
@keyframes moveDown {
    0% { top: 50% }
    50% { top: 40% }
    100% { top: 100% }
}
  
@-webkit-keyframes moveUp {
    0% {
      background: var(--negro);
      top: 100%;
    }
    50% {
      top: 40%;
    }
    100% {
      top: 50%;
      background: #E0E0E0;
    }
}
  
@keyframes moveUp {
    0% {
      background: var(--negro);
      top: 100%;
    }
    50% {
      top: 40%;
    }
    100% {
      top: 50%;
      background: #E0E0E0;
    }
}
  
@-webkit-keyframes materia {
    0% {
      background: #E0E0E0;
    }
    50% {
      -webkit-border-radius: 4px;
    }
    100% {
      width: 440px;
      height: 280px;
      background: #FFFFFF;
      -webkit-border-radius: 4px;
    }
}
  
@keyframes materia {
    0% {
      background: #E0E0E0;
    }
    50% {
      border-radius: 4px;
    }
    100% {
      width: 440px;
      height: 280px;
      background: #FFFFFF;
      border-radius: 4px;
    }
}
  
@-webkit-keyframes moveIn {
    0% {
      margin-top: 50px;
      opacity: 0;
    }
    100% {
      opacity: 1;
      margin-top: -20px;
    }
}
  
@keyframes moveIn {
    0% {
      margin-top: 50px;
      opacity: 0;
    }
    100% {
      opacity: 1;
      margin-top: -20px;
    }
}

@media screen and (min-height: 100px) {
    .circulo-portadas .fondo {
        width: auto;
        height: auto;
        padding: 30px 20px;
        display: block;
        float: none;
        border-right: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .circulo-portadas .fondo-blanco-portadas {
        width: 100%;
        height: 100vh; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    @-webkit-keyframes materia {
        0% {
            background: #E0E0E0;
        }
        50% {
            -webkit-border-radius: 0px;
        }
        100% {
            background: #FFFFFF;
            -webkit-border-radius: 0px;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
    @keyframes materia {
        0% {
            background: #E0E0E0;
        }
        50% {
            border-radius: 0px;
        }
        100% {
            background: #FFFFFF;
            border-radius: 0px;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
}



/*----------------------------------------------- PÁGINA: INICIO -----------------------------------------------*/

#body-inicio{
    transition: background-color 1.5s ease;
}
.contenedor-desktop{
    width: 100%;
    max-width: 1100px;
    height: auto;
    /* min-height: 100vh; */
    margin: 70px auto;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    /* border: 3px solid red;
    background-color: rebeccapurple; */
}

.color-negro {
    background-color: var(--negro);
}
.color-amarillo {
    background-color: var(--amarillo);
}
.color-violeta {
    background-color: var(--violeta);
}
.color-turquesa {
    background-color: var(--turquesa);
}
.color-fucsia {
    background-color: var(--fucsia);
}


/*PORTADA*/

.contenedor-portada-inicio-final {
    background-color: var(--fucsia);
    /* animation: shrink 20s 20s linear infinite;  */
}
.contenedor-portada-inicio-final .portada-inicio-final{
    position: relative;
    margin: 80px auto 0 auto;
    padding: 0 1rem;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    /* animation: spin 20s 20s linear infinite; */
    transform-style: preserve-3d;
    perspective: 25rem; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--fucsia);
}
/*
.contenedor-portada-inicio-final .portada-inicio-final  h1{
    font-size: 50px;
    text-align: center;
    z-index: 9999;
    font-family: "kiona-bold";
    color: var(--turquesa);
} 
*/

.contenedor-portada-inicio-final .portada-inicio-final img {
    position: absolute;
    top: 0;
    left: 0;
    width: 25vw;
    transform: translateY(200vh);
    /*animation: float-up-1 40s linear infinite; VALOR ANTERIOR, MÁS LENTO*/
    animation: float-up-1 10s linear infinite;
    box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(1) { animation-delay: 0s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(2) { animation-delay: -3s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(3) { animation-delay: -6s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(4) { animation-delay: -9s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(5) { animation-delay: -12s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(6) { animation-delay: -15s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(7) { animation-delay: -18s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(8) { animation-delay: -21s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(9) { animation-delay: -24s; }
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(10) { animation-delay: -27s; }

.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(1) {
    --name: float-up-1;
    --duration: calc(20s * 1);
    left: 0vw;
    z-index: -1; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(2) {
    --name: float-up-3;
    --duration: calc(20s * 3);
    left: 10vw;
    z-index: -3; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(3) {
    --name: float-up-2;
    --duration: calc(20s * 2);
    left: 90vw;
    z-index: -2; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(4) {
    --name: float-up-1;
    --duration: calc(20s * 1);
    left: 36vw;
    z-index: -1; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(5) {
    --name: float-up-3;
    --duration: calc(20s * 3);
    left: 62vw;
    z-index: -3; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(6) {
    --name: float-up-2;
    --duration: calc(20s * 2);
    left: 15vw;
    z-index: -2; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(7) {
    --name: float-up-2;
    --duration: calc(20s * 2);
    left: 55vw;
    z-index: -2; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(8) {
    --name: float-up-3;
    --duration: calc(20s * 3);
    left: -20vw;
    z-index: -3; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(9) {
    --name: float-up-1;
    --duration: calc(20s * 1);
    left: 68vw;
    z-index: -1; 
}
.contenedor-portada-inicio-final .portada-inicio-final img:nth-child(10) {
    --name: float-up-2;
    --duration: calc(20s * 2);
    left: 0vw;
    z-index: -2; 
}

@keyframes float-up-3 {
    from { transform: translateY(200vh) translateZ(-50vh); }
    to { transform: translateY(-200vh) translateZ(-50vh); } 
}
@keyframes float-up-2 {
    from { transform: translateY(150vh) translateZ(-25vh); }
    to { transform: translateY(-150vh) translateZ(-25vh); } 
}
@keyframes float-up-1 {
    from { transform: translateY(100vh); }
    to { transform: translateY(-100vh); } 
}
@keyframes spin {
    10%,100% {transform: rotateY(360deg); } 
}
@keyframes shrink {
    0% { transform: scale(1) translateX(0); }
    2.5% { transform: scale(0.75) translateX(5%); }
    7.5% { transform: scale(0.75) translateX(-5%); }
    10%,100% { transform: scale(1); } 
}

/*EFECTO PALABRAS QUE SE SUPLANTAN
.contenedor-portada-inicio-final .portada-inicio-final .contenedor-palabras{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--turquesa);
    height: 100px;
    margin: auto;
}
.contenedor-portada-inicio-final .portada-inicio-final .contenedor-palabras .word{
    font-family: "hello";
    font-size: 100px;
    width: auto;
    text-align: center;
    color: var(--blanco);
}

.word {
    position: absolute;
    width: 260px;
    white-space: nowrap;
    opacity: 0;
    top: 0; 
}
.word span {
    display: inline-block !important; 
}
.word .letter {
    display: inline-block;
    position: relative;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px; 
}
.word .letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}
.word .letter.behind {
    transform: rotateX(-90deg); 
}
.word .letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.word .letter:empty {
    margin-left: 10px; 
}
.contenedor-portada-inicio-final .portada-inicio-final .contenedor-palabras .word-violeta{
    color: var(--violeta);
}
.contenedor-portada-inicio-final .portada-inicio-final .contenedor-palabras .word-amarillo{
    color: var(--amarillo);
}
.contenedor-portada-inicio-final .portada-inicio-final .contenedor-palabras .word-turquesa{
    color: var(--turquesa);
}
*/


/*TITULO PORTADA INICIO -- Bienvenidos*/

#palabras-portada-inicio{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#palabras-portada-inicio h1 {
    position:absolute; 
    font-family: "hello";
    font-size: 150px;
    margin:0;
    padding:0;
    width:800px;
    text-align: center;
    visibility: hidden;
    color: var(--blanco);
}

/*PÁRRAFOS PRESENTACIÓN*/

.contenedor-parrafos-inicio{
    width: 100%;
    height: 100vh;
    background-color: var(--fucsia); 
    /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; */

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 15px;
    align-items: center;
    padding: 30px;
}

.parrafo {
    font-size: 20px;
    color: var(--blanco);
    font-family: "bebas";
    text-align: left;
    line-height: 28px;
    letter-spacing: 1px;
    display: none; 
}


/*FRASE*/
.contenedor-frase{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--negro);
}
.texto{
    width: 400px;
    height: 80vh;
    font-family: "bebas";
    font-size: 80px;
    display: flex;
    letter-spacing: 2px;
    align-items: stretch;
    flex-direction: column;
    /*font-weight: 700;*/
    color: var(--blanco);
    background-color: var(--negro);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.fraseInicio {
    line-height: 1;
    position: relative;
    perspective: 1000px;
    text-transform: uppercase; 
}

.frase {
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    text-transform: uppercase; 
}

.frase-out {
    animation: text-out .5s ease; 
}
.frase-in {
    animation: text-in .5s ease; 
}

@keyframes text-out {
    to {
        transform: rotateX(90deg);
        opacity: 0; 
    } 
}
@keyframes text-in {
    from {
        opacity: 0;
        transform: rotateX(-90deg); 
    }
    to {
        transform: rotateX(0deg);
        opacity: 1; 
    } 
}
/*
.frase{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fraseInicio-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fraseInicio-container span#textoFraseInicio{
    font-family: "bebas";
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--negro);
    width: 80%;
    margin: auto;
}
*/


/*SECCIONES*/

.seccion-inicio-left,
.seccion-inicio-right{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column; 
    align-items: center; 
}

.seccion-inicio-left{
    align-items: flex-start;
}
.seccion-inicio-left h2{
    font-size: 60px;
    line-height: 55px;
    font-family: "kiona-bold";
    margin: 0px auto;
    width: 60%;
    text-align: left;
}

.seccion-inicio-right{
    align-items: flex-end;
}
.seccion-inicio-right h2{
    font-size: 60px;
    line-height: 55px;
    font-family: "kiona-bold";
    margin: 0px auto;
    width: 60%;
    text-align: right;
}

.seccion-inicio-left p,
.seccion-inicio-right p{
    font-size: 17px;
    line-height: 25px;
    font-family: "lato-regular";
    margin: 20px auto 0px auto;
    width: 60%;
    text-align: justify;
}

#button-inicio-np,
#button-inicio-ne,
#button-inicio-nt{
    bottom: 0px;
    position: fixed;
    display: block; 
    opacity: 1;
    width: 100%;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999;
    background-color: var(--negro);
}

.button-inicio {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 97vw;
}

.button-inicio:hover .button-border-circle-inicio {
    transform: translateX(60px);
    /* border: 1px solid var(--negro); */
    border: 1px solid var(--blanco);
}
.button-inicio.negro:hover .button-border-circle-inicio {
    transform: translateX(60px);
    border: 1px solid var(--turquesa);
}  
.button-inicio:hover .button-mask-circle-inicio {
    clip-path: circle(25px at 85px);
}
.button-text-inicio {
    z-index: 1;
    font-size: 20px;
    margin-right: -18px;
    color: var(--blanco);
    letter-spacing: 0.05em;
    font-family: "lato-regular";
    letter-spacing: 1px;
}
.button-inicio.negro .button-text-inicio{
    font-size: 30px;
    color: var(--turquesa);
    font-family: "bebas";
    width: 50%;
} 
.button-wrapper-inicio {
    position: relative;
    display: flex;
    align-items: center;
}
.button-arrow-inicio {
    left: 35px;
    height: 3px;
    width: 50px;
    display: flex;
    position: absolute;
    align-items: center;
    background-color: var(--blanco);
}
.button-inicio.negro .button-arrow-inicio {
    left: 35px;
    height: 3px;
    width: 50px;
    display: flex;
    position: absolute;
    align-items: center;
    background-color: var(--negro);
} 
.button-arrow-inicio:after {
    content: '';
    width: 0;
    height: 0;
    top: -5px;
    right: -7px;
    position: absolute;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--blanco);
}
.button-inicio.negro .button-arrow-inicio:after {
    content: '';
    width: 0;
    height: 0;
    top: -5px;
    right: -7px;
    position: absolute;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--negro);
} 
.button-border-circle-inicio {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--blanco);
    transition: transform 987ms;
}
.button-inicio.negro .button-border-circle-inicio {
    border: 1px solid var(--negro);
} 
.button-mask-circle-inicio {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(25px);
    transition: clip-path 987ms;
}
.button-small-circle-inicio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(60px);
    background-color: var(--blanco);
}
.button-inicio.negro .button-small-circle-inicio {
    background-color: var(--turquesa);
}  


/*RECUADROS DE SERVICIOS + TRABAJOS --> EN SECCIÓN "NUESTRA PROPUESTA" Y "NUESTROS TRABAJOS"*/

.contenido-seccion-inicio{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contenido-seccion-inicio .seccion-inicio{
    width: 240px;
    height: 100px;
    padding: 15px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 25px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.356);
    background-color: var(--blanco);
}
.contenido-seccion-inicio .seccion-inicio img{
    width: 50px;
    height: 50px;
    display: block;
    margin: auto 15px auto auto;
}
.contenido-seccion-inicio .seccion-inicio p{
    font-size: 14px;
    font-family: "lato-bold";
    line-height: 19px;
    color: var(--negro);
    text-align: center;
    margin: auto;
}


/*MAPAMUNDI --> EN SECCIÓN "NUESTRO EQUIPO"*/
.mapa-inicio{
    background-image: url(../imagenes/mapamundi.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 65vw;
    height: 30vw;
    margin: 50px auto auto auto;
}
.tooltip-map{
    background-image: url(../vectores/map-point.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    border-radius: 100%;
    display: inline-block;
    /* position: relative; */
    position: absolute;
    width: 50px;
    height: 50px;
}

.tooltip-map .contenedor-caracteristicas-map {
    position:  absolute;
    bottom: 0;
    /* left: -25px;
    right: -25px; */
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    width: 250px;
    height: auto;
    background-color: var(--negro);
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);
    box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);

    z-index: 999;
}

.tooltip-map .contenedor-caracteristicas-map p{
    display: block;
    color: var(--blanco);
    font-family: "lato-regular";
    font-size: 14px;
    width: 100%;
    line-height: 20px;
    margin: 0;
    text-align: justify;
    padding: 4px 0px;
}

.tooltip-map .contenedor-caracteristicas-map p.nombre-tooltip{
    font-size: 18px;
    font-family: "lato-bold";
    border-bottom: 1px solid var(--violeta);
    color: var(--violeta);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.tooltip-map:hover .contenedor-caracteristicas-map {
    bottom: 70px;
    left: 30px;
    visibility: visible;
    opacity: 1;
}


/*MAPAMUNDI --> EN SECCIÓN "NUESTRO EQUIPO"

.mapa-inicio{
    padding: 0 .8rem;
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-inicio img#mapamundi-inicio{
    width: 80%; 
    height: auto;
    margin: auto;
}

.mapa-inicio .point {
    cursor: pointer;
    position: absolute;
    width: 70px;
    height: 70px;
    animation: pulse 3s infinite;  

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url(../vectores/map-point.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
Flora
.mapa-inicio .argentina {
    top: 53%;
    left: 30%; 
}
Guada
.mapa-inicio .sudamerica {
    top: 35%;
    left: 27%; 
}
Ecarni
.mapa-inicio .norteamerica {
    top: 40%;
    left: 15%;
}
Sriana
.mapa-inicio .europa {
    top: 2%;
    left: 44%; 
}
Memi
.mapa-inicio .europa2 {
    top: 4%;
    left: 52%; 
}

@keyframes pulse {
    from { transform: none; }
    50% { transform: scale(1.4); }
    to { transform: none; }
}

.contenedor-tooltip-map{
    padding: 10px;
    text-align: left;
}  
.tooltip{
    position: fixed;
    display: none;
    width: auto;
    height: auto;
    background-color: var(--negro);
    left: 0;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);
    box-shadow: 10px 7px 30px -7px rgba(0,0,0,0.75);
}
.tooltip p{
    color: var(--blanco);
    font-family: "lato-regular";
    font-size: 14px;
    width: 100%;
    line-height: 20px;
    margin: 0;
    text-align: justify;
    padding: 4px 0px;
}
.tooltip p.nombre-tooltip{
    font-size: 18px;
    font-family: "lato-bold";
    border-bottom: 1px solid var(--violeta);
    color: var(--violeta);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
}
.tooltip p span{
    font-family: "lato-bold";
}

.tooltip{
    z-index: 999;
}
*/

/*WAVE INICIO*/

#wave-inicio-2{
    margin-bottom: -20px;
}


/*CARRUSEL DE MARCAS*/

.contenedor-marcas{
    width: 100%;
    height: auto;
    padding: 60px 0px 120px 0px;
    background-color: var(--blanco);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#titulo-slider-marcas{
    width: 100%;
    height: auto;
}
#titulo-slider-marcas h3{
    font-size: 35px;
    line-height: 45px;
    font-family: "bebas";
    margin-bottom: 50px;
    text-align: center;
}

.contenedor-slider-marcas{
    width: 100%;
    height: auto;
    background-color: var(--blanco);
}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 85vw;
    margin-top: -30px;
    margin-bottom: 100px;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 150px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    padding-bottom: 30px;
}
.slider .slide {
    height: 150px;
    width: 250px;
    margin: 0px 40px;

}
.slider .slide img{
    height: 150px;
    width: 250px;
}
@keyframes scroll {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-250px * 7))}
}


/*CONTACTO INICIO

.contacto-inicio{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--blanco);
    padding-top: 100px;
    padding-bottom: 100px;
}

.contacto-inicio p{
    color: var(--turquesa);
    font-family: "abril";
    font-size: 35px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 40px;
}
.contacto-inicio p span{
    color: var(--negro);
}

.boton-contacto-turquesa{
    position:relative;
    text-decoration:none;
    color:var(--negro);
    font-size:30px;
    box-sizing:border-box;
    font-family: "kiona";
    font-weight: bold;

    z-index: 1000;
}
.boton-contacto-turquesa span{
    position:relative;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    flex-direction: column;
    justify-content:center;
    width:150px;
    height:150px;

    z-index: 1000;
}
.boton-contacto-turquesa span:before{
    content:'';
    width:100%;
    height:100%;
    display:block;
    position:absolute;
    border-radius:100%;
    border:7px solid var(--negro);
    background-color: var(--blanco);
    box-sizing:border-box;
    transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
    box-shadow: 0 30px 85px rgba(0,0,0,0.14), 0 15px 35px rgba(0,0,0,0.14);

    z-index: -1000;
}
.boton-contacto-turquesa:hover span:before{
    transform:scale(0.8);
    box-shadow: 0 20px 55px rgba(0,0,0,0.14), 0 15px 35px rgba(0,0,0,0.14);
}
.boton-contacto-turquesa .dots-container{
    opacity:0;
    animation: intro 1.6s;
    animation-fill-mode: forwards;
}
.boton-contacto-turquesa .dot{
    width:8px;
    height:8px;
    display:block;
    background-color:var(--negro);
    border-radius:100%;
    position:absolute;
    transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
}
.boton-contacto-turquesa .dot:nth-child(1){
    top:50px;
    left:50px;
    transform:rotate(-140deg);
    animation: swag1-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-turquesa .dot:nth-child(2){
    top:50px;
    right:50px;
    transform:rotate(140deg);
    animation: swag2-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-turquesa .dot:nth-child(3){
    bottom:50px;
    left:50px;
    transform:rotate(140deg);
    animation: swag3-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-turquesa .dot:nth-child(4){
    bottom:50px;
    right:50px;
    transform:rotate(-140deg);
    animation: swag4-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-turquesa:hover .dot:nth-child(1){
    animation: swag1 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-turquesa:hover .dot:nth-child(2){
    animation: swag2 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-turquesa:hover .dot:nth-child(3){
    animation: swag3 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-turquesa:hover .dot:nth-child(4){
    animation: swag4 0.3s;
    animation-fill-mode: forwards;
}
@keyframes intro {
    0% {
    opacity:0;
    }
    100% {
        opacity:1;
    }
}
@keyframes swag1 {
    0% {
        top:50px;
        left:50px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        top:20px;
        left:20px;
        width:8px;
        opacity:1;
    }
}
@keyframes swag1-out {
    0% {
        top:20px;
        left:20px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        top:50px;
        left:50px;
        width:8px;
        opacity:0;
    }
}
@keyframes swag2 {
    0% {
        top:50px;
        right:50px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        top:20px;
        right:20px;
        width:8px;
        opacity:1;
    }
}
@keyframes swag2-out {
    0% {
        top:20px;
        right:20px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        top:50px;
        right:50px;
        width:8px;
        opacity:0;
    }
}
@keyframes swag3 {
    0% {
        bottom:50px;
        left:50px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        bottom:20px;
        left:20px;
        width:8px;
        opacity:1;
    }
}
@keyframes swag3-out {
    0% {
        bottom:20px;
        left:20px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        bottom:50px;
        left:50px;
        width:8px;
        opacity:0;
    }
}
@keyframes swag4 {
    0% {
        bottom:50px;
        right:50px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        bottom:20px;
        right:20px;
        width:8px;
        opacity:1;
    }
}
@keyframes swag4-out {
    0% {
        bottom:20px;
        right:20px;
        width:8px;
    }
    50% {
        width:30px;
        opacity:1;
    }
    100% {
        bottom:50px;
        right:50px;
        width:8px;
        opacity:0;
    }
}
*/



/*----------------------------------------------- PÁGINA: QUÉ HACEMOS -----------------------------------------------*/

.content-servicios{
    background: #fff;  
    background: -webkit-linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-servicios.jpg);
    background: linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-servicios.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*RECUADROS*/

.contenedor-cards-servicios{
    width: 90vw;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 100px 0px 150px 0px;
}

.card-servicio{
    width: 320px;
    height: 320px;
    margin: 15px;
    border-radius: 10px;
}

.card-servicio > .front{
    width: 320px;
    height: 320px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.356);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    backface-visibility: hidden; 
    transition: transform .5s linear 0s;
}
.front img{
    width: 90px;
    height: 90px;
    display: block;
}
.front h2{
    font-size: 20px;
    font-family: "kiona-bold";
    letter-spacing: 2px;
    color: #000;
    text-align: center;
    width: 70%;
    margin: 40px auto 0px auto;
}
.front span img{
    width: 30px;
    height: 30px;
    display: block;
    margin-top: 15px;
}

.violeta > .front{
    border: 3px solid #A64AC9;
    background-color: var(--blanco);
}
.amarillo > .front{
    border: 3px solid #F8DE29;
    background-color: var(--blanco);
}
.turquesa > .front{
    border: 3px solid #42CDC6;
    background-color: var(--blanco);
}

.card-servicio > .back{
    width: 320px;
    height: 320px;
    box-shadow: 0 15px 20px rgba(15, 13, 13, 0.356);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    transform: perspective(600px) rotateY(180deg);
    position: absolute;
    backface-visibility: hidden;
    transition: transform .5s linear 0s;
}
.back h2{
    color: #fff;
    font-size: 18px;
    font-family: "kiona-bold";
    letter-spacing: 2px;
    width: 70%;
    margin: 0px auto 20px auto;
    text-align: center;
}
.back p{
    color: #000;
    font-size: 13px;
    font-family: "lato-regular";
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    line-height: 20px;
}

.violeta > .back{
    background-color: var(--violeta);
}
.amarillo > .back{
    background-color: var(--amarillo);
}
.turquesa > .back{
    background-color: var(--turquesa);
}

.card-servicio:hover > .front{
    transform: perspective(600px) rotateY(-180deg);
}
.card-servicio:hover > .back{
    transform: perspective(600px) rotateY(0deg);
}


/*CONTACTO SERVICIOS*/

.contacto-servicios{
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--violeta);
    /* margin-top: 160px; */
    padding-top: 100px;
    padding-bottom: 100px;
}

.contacto-servicios p{
    color: var(--blanco);
    font-family: "abril";
    font-size: 35px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 40px;
}
.contacto-servicios p span{
    color: var(--negro);
}

.boton-contacto-violeta{
    position:relative;
    text-decoration:none;
    color: var(--negro);
    font-size:30px;
    box-sizing:border-box;
    font-family: "kiona-regular";
    font-weight: bold;

    z-index: 1000;
}
.boton-contacto-violeta span{
    position:relative;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    flex-direction: column;
    justify-content:center;
    width:150px;
    height:150px;

    z-index: 1000;
}
.boton-contacto-violeta span:before{
    content:'';
    width:100%;
    height:100%;
    display:block;
    position:absolute;
    border-radius:100%;
    border:7px solid var(--negro);
    background-color: var(--blanco);
    color: var(--negro);
    box-sizing:border-box;
    transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
    box-shadow: 0 30px 85px rgba(0,0,0,0.14), 0 15px 35px rgba(0,0,0,0.14);

    z-index: -1000;
}
.boton-contacto-violeta:hover span:before{
    transform:scale(0.8);
    box-shadow: 0 20px 55px rgba(0,0,0,0.14), 0 15px 35px rgba(0,0,0,0.14);
}
.boton-contacto-violeta .dots-container{
    opacity:0;
    animation: intro 1.6s;
    animation-fill-mode: forwards;
}

.boton-contacto-violeta .dot{
    width:8px;
    height:8px;
    display:block;
    background-color:var(--negro);
    border-radius:100%;
    position:absolute;
    transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
}
.boton-contacto-violeta .dot:nth-child(1){
    top:50px;
    left:50px;
    transform:rotate(-140deg);
    animation: swag1-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-violeta .dot:nth-child(2){
    top:50px;
    right:50px;
    transform:rotate(140deg);
    animation: swag2-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-violeta .dot:nth-child(3){
    bottom:50px;
    left:50px;
    transform:rotate(140deg);
    animation: swag3-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-violeta .dot:nth-child(4){
    bottom:50px;
    right:50px;
    transform:rotate(-140deg);
    animation: swag4-out 0.3s;
    animation-fill-mode: forwards;
    opacity:0;
}
.boton-contacto-violeta:hover .dot:nth-child(1){
    animation: swag1 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-violeta:hover .dot:nth-child(2){
    animation: swag2 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-violeta:hover .dot:nth-child(3){
    animation: swag3 0.3s;
    animation-fill-mode: forwards;
}
.boton-contacto-violeta:hover .dot:nth-child(4){
    animation: swag4 0.3s;
    animation-fill-mode: forwards;
}



/*----------------------------------------------- PÁGINA: QUIÉNES SOMOS -----------------------------------------------*/

.body-biografias{
    width: 100%;
    height: auto;
    background: -webkit-linear-gradient(to right, rgba(230, 232, 233, 0.800), rgba(230, 232, 233, 0.800)), url(../imagenes/fondo-equipo.png); 
    background: linear-gradient(to right, rgba(230, 232, 233, 0.800), rgba(230, 232, 233, 0.800)), url(../imagenes/fondo-equipo.png); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*INTRODUCCIÓN*/

.contenedor-intro-biografias{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(100vh - 80px);
}
.contenedor-intro-biografias p#texto-introduccion-biografias{
	font-family: "visby-bold";
    font-size: 25px;
    color: var(--negro);
    text-align: center;
    line-height: 45px;
    margin: auto;
    width: 70%;
}


/*BIOGRAFÍAS*/

#contenedor-biografias {
    background-size: var(--negro);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 55vh 55vh 55vh 55vh;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.biografia {
    /* width: 100%;
    height: 100%; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#bio-guada{
    background-image: url(../imagenes/guada.png);
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 2;
    background-position: center;
}
#bio-florencia{
    background-image: url(../imagenes/flora.png);
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column: 4;
    background-position: top;
}
#bio-florencia .nombre-biografia{
    margin-top: 200px;
}
#bio-siriana{
    background-image: url(../imagenes/siriana.png);
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column: 1;
    background-position: center;
}
#bio-encarni{
    background-image: url(../imagenes/encarni.png);
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 3;
    background-position: center;
}
#bio-memi{
    background-image: url(../imagenes/memi.png);
    grid-row-start: 3;
    grid-row-end: 5;
    grid-column: 3;    
    background-position: top;
}

.nombre-biografia h3{
    font-family: "lato-regular";
    font-size: 14px;
    line-height: 25px;
    color: var(--blanco);
    padding: 5px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #fff;
}
.nombre-biografia p{
    font-family: "lato-regular";
    font-size: 14px;
    line-height: 25px;
    color: var(--blanco);
    padding: 5px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #fff; 
}

.texto-biografia {
    /* z-index: 1; */
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.texto-biografia p {
    font-family: "lato-regular";
    font-size: 14px;
    line-height: 25px;
    color: var(--blanco);
    text-align: justify;
    padding-top: 10px;
}

.biografia img.contacto-personal{
    width: 40px;
    height: auto;
    margin-top: 45px;
}

 .texto-biografia{
    display: none;
} 

.biografia:hover .texto-biografia{
    display: inline;
    background-color: rgba(0, 0, 0, 0.753);
}
.biografia:hover .nombre-biografia{
    display: none;
} 


/*CONTACTO BIOGRAFÍA*/

.contacto-biografias{
    width: 100%;
    height: auto;
    padding: 160px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contacto-biografias p{
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "bebas";
    color: var(--negro);
}

.contacto-biografias form{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background-color: var(--blanco);
    margin-top: 25px;
}

.contacto-biografias form input#email{
    border: none;
    border-radius: 5px;
    display: block;
    padding: 13px;
    background-color: var(--blanco);
    width: 400px;
    max-width: 90vw;
    outline: none;
    text-align: left;
    margin: auto;
    font-family: "lato-regular";
    color: var(--negro);
}
::placeholder {
    font-size: 14px;
    font-family: "lato-regular";
}

.contacto-biografias form input#enviar-email{
    background-color: var(--turquesa);
    color: var(--blanco);
    transition: transform 1s; 
    border: none;
    padding: 15px 20px;
    font-family: "lato-bold";
    font-size: 16px;
    text-align: center;
}
.contacto-biografias form input#enviar-email:hover{
    background-color: var(--negro);
    transform: scale(1.1);  
    cursor: pointer;
}


/*----------------------------------------------- PÁGINA: CREACIONES -----------------------------------------------*/

.body-creaciones{
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: -webkit-linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-creaciones.jpg);
    background: linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-creaciones.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.presentacion-creaciones{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 60px 0px 150px 0px;
}
.creacion-violeta{
    background-color: var(--violeta);
}
.creacion-amarillo{
    background-color: var(--amarillo);
}
.creacion-turquesa{
    background-color: var(--turquesa);
}
.presentacion-creaciones h2{
    font-family: "bebas";
    font-size: 45px;
    color: var(--blanco);
    text-align: center;
    width: 70%;
    margin: 0px auto;
    letter-spacing: 1px;
}
.presentacion-creaciones p{
    font-family: "lato-bold";
    font-size: 18px;
    color: var(--negro);
    text-align: center;
    width: 70%;
    margin: 30px auto 0px auto;
    line-height: 30px;
}

/*CARRUSEL DE CREACIONES*/

.contenedor-creaciones{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: -100px;
    margin-bottom: 150px;
}
.contenedor-slider-creaciones{
    width: 100%;
    height: auto;
    background-color: transparent;
}

.slider-creaciones {
    background-color: var(--blanco);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* margin-bottom: 100px; */
}

/* 
Bordes traslúcidos en las puntas
.slider-creaciones::before, .slider-creaciones::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 300px;
    width: 300px;
    position: absolute;
    z-index: 2; 
} 
*/
.slider-creaciones::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider-creaciones::before {
    left: 0;
    top: 0;
}
/* ORIGINAL ANTERIOR!!
.slider-creaciones .slide-track-creaciones {
    animation: scrollCreaciones 200s linear infinite; 
    display: flex;
    width: calc(400px * 7); 
    padding-bottom: 30px;
}
@keyframes scrollCreaciones {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-400px * 7))}
}

.slider-creaciones .slide-track-creaciones-podcast {
    animation: scrollCreacionesPodcast 200s linear infinite;
    display: flex;
    width: calc(450px * 18); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesPodcast {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-450px * 18))}
}
*/


.slider-creaciones .slide-track-creaciones-notas {
    animation: scrollCreacionesNotas 90s linear infinite; 
    display: flex;
    width: calc(350px * 14); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesNotas {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-350px * 7))}
}

.slider-creaciones .slide-track-creaciones-podcast {
    animation: scrollCreacionesPodcast 90s linear infinite;
    display: flex;
    width: calc(400px * 18); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesPodcast {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-400px * 9))}
}

.slider-creaciones .slide-track-creaciones-ebooks {
    animation: scrollCreacionesEbooks 90s linear infinite; 
    display: flex;
    width: calc(350px * 10); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesEbooks {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-350px * 5))}
}

.slider-creaciones .slide-track-creaciones-fotos {
    animation: scrollCreacionesFotos 40s linear infinite; 
    display: flex;
    width: calc(350px * 14); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesFotos {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-350px * 7))}
}

.slider-creaciones .slide-track-creaciones-videos {
    animation: scrollCreacionesVideos 40s linear infinite; 
    display: flex;
    width: calc(350px * 8); 
    padding-bottom: 30px;
}
@keyframes scrollCreacionesVideos {
    0% {transform: translateX(0)}
    100% {transform: translateX(calc(-350px * 4))}
}

.slider-creaciones .slide-creacion {
    height: 300px;
    width: 300px;
    margin: 0px 40px;
    background-color: var(--blanco);
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.294);

    position: relative;
}
.slide-creacion h3{
    color: var(--negro);
    font-size: 18px;
    line-height: 25px; 
    font-family: "bebas";
    width: 80%;
    margin: 30px auto 15px auto;
    text-align: center;
}
.slide-creacion p {
    font-size: 14px;
    color: var(--negro);
    padding-bottom: 15px; 
    line-height: 22px; 
    font-family: "lato-regular";
    text-align: justify;
    width: 80%;
    margin: 0px auto;
}
.slide-creacion p span{
    font-family: "lato-bold";
}
.slide-creacion a,
.slide-creacion button{
    color: var(--blanco);
    font-family: "abril";
    font-size: 14px;
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    letter-spacing: 1px;
    border-radius: 3px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.294);
    border: none;
    outline: none;
    position: absolute;
    bottom: 6px;
    right: -20px;
}
.redirecciona-creacion-amarillo{
    background-color: var(--amarillo);
}
.redirecciona-creacion-turquesa{
    background-color: var(--turquesa);
}
.redirecciona-creacion-violeta{
    background-color: var(--violeta);
}

.slide-creacion a:hover,
.slide-creacion button:hover{
    background-color: var(--negro);
    cursor: pointer;
}

.slider-creaciones.notas,
.slider-creaciones .slide-creacion.notas{
    height: 380px;
}
.slider-creaciones.podcast,
.slider-creaciones .slide-creacion.podcast {
    height: 450px;
}
.slide-track-creaciones-videos .slide-creacion img{
    width: 100%;
}
/*POPUP REPRODUCCIÓN DE VIDEOS*/
.popup_reproduccion_video{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(29, 28, 28, 0.753);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.popup_reproduccion_video section{
    width: 60vw;
}
@media (max-width: 800px){
    .popup_reproduccion_video section{
        width: 85vw;
    }          
}
.popup_reproduccion_video section div{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 10px;
}
.popup_reproduccion_video section div .cerrar_reproduccion_video{
    font-size: 23px;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    color: #fff;          
    transform: rotate(45deg);
    outline: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_reproduccion_video section div .cerrar_reproduccion_video:hover{
    cursor: pointer;
    color: var(--violeta);
    border: 2px solid var(--violeta);
}
.popup_reproduccion_video section video{
    width: 100%;
    height: auto;
}

/*----------------------------------------------- PÁGINA: CREACIONES GRAL -----------------------------------------------*/

.portada-creaciones{
    width: 100%;
    height: 65vh;
    background-color: var(--negro);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.titulo-portada-creaciones{
    width: 70%;
    font-size: 45px;
    font-family: "kiona-regular";
    text-align: center;
    line-height: 65px;
    font-weight: lighter;
}

.titulo-publicaciones{
    color: var(--amarillo);
}
.titulo-notas{
    color: var(--violeta);
}
.titulo-entrevistas{
    color: var(--turquesa);
}

.contenido-creaciones{
    width: 100%;
    height: auto;
    margin: 80px auto;
    background-color: var(--blanco);
}

.contenido-creaciones p{
    font-size: 14px;
    color: var(--negro);
    line-height: 25px; 
    font-family: "lato-regular";
    text-align: justify;
    width: 80%;
    margin: 10px auto;
}

.contenido-creaciones h2{
    font-size: 20;
    color: var(--negro);
    line-height: 22px; 
    font-family: "kiona-regular";
    text-align: left;
    width: 80%;
    margin: 40px auto 20px auto;
}

.contenido-creaciones span.cita{
    font-family: "lato-cursiva";
}

.enlace-creaciones-ver{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin: auto;
}
.enlace-creaciones-ver a{
    color: var(--blanco);
    font-family: "abril";
    font-size: 16px;
    text-align: center;
    margin: 30px auto;
    padding: 10px 50px;
    background-color: var(--negro);
    letter-spacing: 1px;
    font-weight: lighter;
    display: flex;
    justify-content: center; 
    align-items: center;    
    transition: transform .2s; /*Atenúa el efecto zoom al hacer hover*/
}
.enlace-publicaciones a:hover{
    background-color: var(--amarillo);
    color: var(--negro);
    transform: scale(1.1); /*Efecto zoom al hacer hover*/
}
.enlace-notas a:hover{
    background-color: var(--violeta);
    transform: scale(1.1); /*Efecto zoom al hacer hover*/
}
.enlace-entrevistas a:hover{
    background-color: var(--turquesa);
    transform: scale(1.1); /*Efecto zoom al hacer hover*/
}

.enlace-creaciones-ver a img{
    width: 30px;
    height: 30px;
    margin-left: 20px;
}

.enlace-creaciones-regresar{
    width: 80%;
    height: auto;
    margin: auto auto 100px auto;
}
.enlace-creaciones-regresar a{
    color: var(--negro);
    font-family: "lato-bold";
    font-size: 16px;
    text-align: center;
    background-color: var(--blanco);
    letter-spacing: 1px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
}
.enlace-creaciones-regresar a img{
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
.enlace-creaciones-regresar a:hover{
    color: rgb(78, 78, 78);
}


/*----------------------------------------------- PÁGINA: CONTACTO -----------------------------------------------*/

.body-contacto{
    width: 100%;
    height: auto;
    background: #fff;  
    background: -webkit-linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-contacto.png);
    background: linear-gradient(to bottom, #fffffffb, #ffffff88, #fffffffb),url(../imagenes/fondo-contacto.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contenedor-formularios{
    padding: 100px 0px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    /* background-color: red; */
}

/*FORMULARIO PRINCIPAL*/

.form-general{
    width: 600px;
    max-width: 80vw;
    height: auto;
    padding: 40px 0px;
    margin: auto auto 50px auto;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 5px;
    background-color: var(--turquesa);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form-general p{
    width: 80%;
    color: var(--blanco);
    font-family: "lato-bold";
    font-size: 17px;
    text-align: center;
    margin: 15px auto;
    line-height: 26px;
}

.form-general form{
    width: 80%;
}

.form-general input,
.form-general select,
.form-general textarea{
    width: 100%;
    /* border: 1px solid var(--turquesa); */
    border: none;
    color: var(--negro);
    display: block;
    margin: 20px auto;
    padding: 10px;
    font-family: "lato-regular";
    outline: none;
    background-color: #fff;
    border-radius: 5px;
}

.form-general form input::placeholder,
.form-general form textarea::placeholder{ 
    color: #000;
}
.form-general form input:-ms-input-placeholder,
.form-general form textarea:-ms-input-placeholder{ 
    color: #000;
}
.form-general form input::-ms-input-placeholder,
.form-general form textarea::-ms-input-placeholder{ 
    color: #000;
}

.form-general input:focus,
.form-general textarea:focus{
    box-shadow: rgba(26, 26, 26, 0.2) 0px 2px 8px 0px;
}

.form-general input.enviar-correo{
    color: var(--blanco);
    font-family: "lato-bold";
    font-size: 15px;
    text-align: left;
    margin: auto;
    padding: 10px 20px;
    background-color: var(--negro);
    width: auto;
    border: none;
    outline: none;
    border-radius: 3px;
}

/*FORMULARIO POR REGIÓN*/

/*Desplegable formulario región*/

.contenedor-form-region{
    width: 600px;
    max-width: 80vw;
    height: auto;
    padding: 20px 50px;
    margin: auto auto 30px auto;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contenedor-form-region img{
    width: 50px;
    height: auto;
    margin-right: 20px;
}
.contenedor-form-region p{
    color: var(--negro);
    font-family: "lato-bold";
    font-size: 17px;
    text-align: left;
}

.contenedor-form-region:hover{
    background-color: var(--turquesa);
    cursor: pointer;
}
.contenedor-form-region:hover p{
    color: var(--blanco);
}

/*Formulario región*/

.form-region{
    width: 600px;
    max-width: 80vw;
    height: auto;
    padding: 15px 10px;
    margin: auto auto 20px auto;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.form-region form p{
    margin: 0;
    padding: 10px 15px 5px 15px;
}

.form-region form input,
.form-region form textarea{
    width: 100%;
    padding: 10px;
    outline: none;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    font-family: "lato-regular";
}

.form-region form input:focus,
.form-region form textarea:focus{
    box-shadow: rgba(26, 26, 26, 0.2) 0px 2px 8px 0px;
}

.form-region form .block{
    grid-column: 1/3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-region form .boton-form-region{
    width: auto;
    padding: 10px 12px;
    outline: none;
    color: var(--blanco);
    border-radius: 5px;
    background-color: var(--negro);
    font-family: "lato-bold";
    text-align: center;
}
.form-region form .boton-form-region:hover{
    cursor: pointer;
    background-color: var(--turquesa);
    color: var(--negro);
}

@media (min-width: 500px){
    .form-region form{
        display: grid;
        grid-template-columns: 1fr 1fr; 
    }
}


/*---------------------------------------------------------------------------- FOOTER --------------------------------------------------------------------------*/

footer{
    width: 100%;
    height: 220px;
    background-color: var(--negro);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

footer h2{
    color: var(--blanco);
    font-family: "montserrat-bold";
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px; 
}

footer .iconos-contacto{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

footer .iconos-contacto a img{
    width: 35px;
    height: 35px;
    margin: 0px 10px;
    transition: transform .2s; /*Atenúa el efecto zoom al hacer hover*/
}

footer .iconos-contacto a img:hover{
    cursor: pointer;
    transform: scale(1.2); /*Efecto zoom al hacer hover*/
}


/*---------------------------------------------------------------------------- WS --------------------------------------------------------------------------*/

#enlace-ws {
    position: fixed;
    right: 2%;
    top: 85%;
    width: 60px;
    height: 60px;
    z-index: 200; 
}

#enlace-ws img{
    width: 60px;
    height: 60px;
}