body {
    font-family: "Oswald", sans-serif;
    background-color:#4F4F4F; /*	#C19A6B*/
}

/*Texto titulo*/

.titulo {
    font-family: "Bebas Neue", sans-serif;
}

.titulo .naranja {
    color: #f97e3c;
}

.logo a {
    display: flex;
    /* Disposición en línea de los hijos directos */
    align-items: center;
    /* Alinea los elementos verticalmente */
    text-decoration: none;
    /* Quita el subrayado del enlace */
    color: inherit;
    /* Mantiene el color del texto */
}

.logo a:hover {
    transform: scale(1.1);
    /* Aumenta el tamaño del enlace al 110% del tamaño original */
    transition: transform 0.2s;
    /* Agrega una transición suave para que el efecto sea gradual */
}

.imglogo {
    width: 50px;
    height: auto;
}

.logo h1 {
    font-size: 21px;
}



/*Navbar*/

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

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}


.menu-toggle {
    display: flex;
}

.nav-links {
    z-index: 10;
    /*Hace que la hamburguesa se despliegue por encima de todo*/
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #333;
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.nav-links li {
    margin: 20px 0;
}

.nav-links a {
    font-size: 24px;
}

.nav-links.active {
    height: calc(100vh - 60px);
    /* Dejar espacio para el header */
}




/*Caja sign up*/

.padre {
    padding:20px 20px 0px 20px;
    justify-content: center;
    text-align: center;
    background-color:#4F4F4F; /*	#C19A6B*/
}

.hijo {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #333333;
    box-shadow: 15px 15px 7px;
}

.nombre {
    display: flex;
    justify-content: center;
}

.botonsubmit {
    width: 40%;
    background-color: #F0653B;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Oswald", sans-serif;
}

@media(min-width: 960px) {
  .padre {
    padding-bottom: 50px;
    padding-left: 400px;
    padding-right: 400px;
    justify-content: center;
    text-align: center;
  }
}


.olvidarcontraseña:hover{
  transform: scale(1.1);
  transition: transform 0.2s;
}

.olvidarcontraseña a:hover{
  color: #F0653B;
}



/*overlay olvide mi contraseña*/
.text-success {
  color: green;
}

.text-error {
  color: red;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 400px;
  width: 80%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


/* Estilo de la "X" de cierre */
.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ff4444;
  cursor: pointer;
  font-weight: bold;
}

.close-icon:hover {
  color: #ff2222;
}










/*Boton signup*/
.portfolio-experiment {
    background: #333333;
  }
  
  .portfolio-experiment a {
    color: white;
    text-decoration: none;
    padding: 0.7em calc(0.7em * 1.2);
    display: inline-block;
    border: 3px solid transparent;
    position: relative;
    font-size: 1.5em;
    cursor: pointer;
    letter-spacing: 0.07em;
    transition: all 0.3s ease; /* Asegura una transición suave */
  
    .text {
      padding: 0 0.3em;
      transform: translate3d(0,0.7em,0);
      display: block;
      transition: transform 0.4s cubic-bezier(.2,0,0,1) 0.4s;
    }

    @media(max-width: 960px) {
        .text{
            transform: none;
        }
    }
  
    &:after {
      position: absolute;
      content: '';
      bottom: -3px;
      left: calc(0.7em * 1.2);
      right: calc(0.7em * 1.2);
      height: 3px;
      background: #f26522;
      z-index: -1;
      transition: 
        transform 0.8s cubic-bezier(1,0,.37,1) 0.2s,
        right 0.2s cubic-bezier(.04,.48,0,1) 0.6s,
        left 0.4s cubic-bezier(.04,.48,0,1) 0.6s;
      transform-origin: left;
    }
  }
  
  .line {
    position: absolute;
    background: #f26522;
  
    &.-right,
    &.-left {
      width: 3px;
      bottom: -3px;
      top: -3px;
      transform: scale3d(1,0,1);
    }  
  
    &.-top,
    &.-bottom {
      height: 3px;
      left: -1px;
      right: -1px;
      transform: scale3d(0,1,1);
    }
  
    &.-right {
      right: -3px;
      transition: transform 0.1s cubic-bezier(1,0,.65,1.01) 0.23s;
      transform-origin: top;
    }
  
    &.-top {
      top: -3px;
      transition: transform 0.08s linear 0.43s;
      transform-origin: left;
    }
  
    &.-left {
      left: -3px;
      transition: transform 0.08s linear 0.51s;
      transform-origin: bottom;
    }
  
    &.-bottom {
      bottom: -3px;
      transition: transform 0.3s cubic-bezier(1,0,.65,1.01);
      transform-origin: right;
    }  
  }
  
  a:hover,
  a:active,
  a.animate-hover { /* Añade esta clase para activar el hover */
    .text {
      transform: translate3d(0,0,0);
      transition: transform 0.6s cubic-bezier(.2,0,0,1) 0.4s;
    }
  
    &:after {
      transform: scale3d(0,1,1);
      right: -3px;
      left: -3px;
      transform-origin: right;
      transition: 
        transform 0.2s cubic-bezier(1,0,.65,1.01) 0.17s,
        right 0.2s cubic-bezier(1,0,.65,1.01),
        left 0s 0.3s;
    }
  
    .line {
      transform: scale3d(1,1,1);
  
      &.-right {
        transition: transform 0.1s cubic-bezier(1,0,.65,1.01) 0.2s;
        transform-origin: bottom;
      }
  
      &.-top {
        transition: transform 0.08s linear 0.4s;
        transform-origin: right;
      }
  
      &.-left {
        transition: transform 0.08s linear 0.48s;
        transform-origin: top;
      }
  
      &.-bottom {
        transition: transform 0.5s cubic-bezier(0,.53,.29,1) 0.56s;
        transform-origin: left;
      }
    }
  }
  







/*Footer*/

footer {
	overflow: hidden;
	background-color: #212529;
	color: rgb(165, 165, 165);
	width: 100%;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	text-align: center;
  right: 0;
  left: 0;
  position: sticky;
  bottom: 0;
}

@media(max-width: 960px) {
  footer{
      position: absolute;
  }
}

.textofooter{

	text-align: center;
	display: flex;
}

footer a{
	color: rgb(165, 165, 165);
}

footer a:hover {
  transform: scale(1.1); /* Aumenta el tamaño del enlace al 110% del tamaño original */
  transition: transform 0.2s; /* Agrega una transición suave para que el efecto sea gradual */
}


.redeslogo{
	width: 40px;
	height: auto;
}










  
  
  