.titulo-web{
    font-family: 'Dancing Script', cursive, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 0;
    text-align: center;
    /* text-shadow: 1px 1px 4px #382E38; */
}
.card-body{
    align-items: center;
    text-align: center;
}

.nav-link:hover {
    background-color: rgba(254, 239, 221, 0.50);
    color: #353c56;
}

/* CAMBIO DE IDIOMA */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-bottom: 0%;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s ease;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Hide Spanish content by default */
.hidden {
  display: none !important;
}


/* MENUS */
header{
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
.menu-bar{
    width: 100%;
    min-height: 68px;
    border-bottom: 1px solid #b19fb14a;
    padding: 0 36px;
    color: #382E38;
    background: #F3F4FA;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu-bar a{
    color: #382E38;
}

.menu-movil{
    display: none;
}

/* BANNER */
.principal{
    width: 100%;
}

.disclaimer{
  font-size: 0.75rem;
  color: red;
}
  
#sobreMi{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  @media screen and (max-width: 450px){
    .titulo-web{
      margin: 0px 5px 0px 5px;
      font-size: medium;
    }
  }
  
   @media screen and (max-width: 768px){
    /*Encabezado*/
    .menu-bar{
      display: none;
    }

    .titulo-web{
      margin: 0px 5px 0px 5px;
      font-size: xx-large;
    }
  
    .menu-movil{
      display: block;
      width: 100%;
      padding: 5px 18px;
      background: #F3F4FA;
      color: #382E38;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
    }
    .menu-movil .barra{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .menu-movil .barra .logo-facundo{
      width: 40px;
    }
    .menu-movil .barra a i{
      font-size: 1.4rem;
      color: #382E38;
    }
  
    .menu-movil .items-menu{
      width: 80%;
      display: block;
      position: fixed;
      top: 56px;
      left: -100%;
      border-bottom: 1px solid rgba(204,204,204,0.5);
      border-right: 1px solid rgba(204,204,204,0.5);
      box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.2);
      background: #F3F4FA;
      text-align: center;
    }
  
    .menu-movil .items-menu a{
      display: block;
      padding: 10px;
      color: #382E38;
      border-bottom: 1px solid rgba(204,204,204,0.5);
    }
  
    .menu-movil .items-menu a:hover{
      background: rgba(217, 3, 104);
    }
    .menu-movil .items-menu .iconos-top{
      display: flex;
      justify-content: center;
    }

    /* Sobre mi */
    #sobreMi a{
      margin-bottom: 1rem;
    }

    /* Footer */
    .pie .iconos-redes{
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
}

/* CONTACTO */
#gugel-form{
  transition: all 0.5 ease;
  margin-top: 1rem;
}

#gugel-form a:hover{
  color: #353135;
  background-color: rgba(217, 3, 104);
}

.iconos-redes a{
  font-size: 2.5rem;
  transition: all 0.5s ease, transform 0.5s ease;
  color: #fff;
  max-width: 5.5rem;
}

.iconos-redes a:hover{
  color: rgba(217, 3, 104);
  transform: scale(1.5);
}

#contacto{
  margin: 0%;
}

#contacto .iconos-redes{
  margin: 0%
}

/* FOOTER */

.pie{
  margin: 0%;
}
.pie .iconos-redes{
  margin: 0%;
}
.pie .btn{
  transition: all 0.4s ease;
}
.pie .btn:hover{
  background-color: #fff;
  color: rgba(217, 3, 104);;
}