@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700;900&display=swap');

/* Reset and general styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream-color: #FBF5EB;
  --dark-color: #1B1B1B;
  --montserrat: 'Montserrat', sans-serif;
  --roboto: 'Roboto', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FBF5EB;
  color: #1B1B1B;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

p {
  font-size: 16px;
}

p>a {
  color: rgb(125, 125, 209);
  text-decoration: underline;
}


.titulos,
.titulos-secundarios,
.titulos-sin-subtitulo,
.titulos-con-subtitulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1B1B1B;
}

.titulos-secundarios {
  font-size: 28px;
  font-weight: 400;
}

.subtitulos {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1B1B1B;
}

.textos {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1B1B1B;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-40 {
  padding-top: 40px;
}

/* Buttons, force update*/
.button-1 {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1B1B1B;
  color: #FBF5EB;
  width: 150px;
  height: 35px;

  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  font-weight: 700;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
  border: none;
}

.button-1>a {
  display: flex;
  align-items: center;
  margin: auto 0;
}

.button-1 .arrow {
  font-size: 24px;
  font-weight: 400;
  margin-left: 8px;
  display: inline-block;
  transform: translateY(-2px);
}

.button-1:hover {
  background-color: #4e4e4e;
}


/* Maximum width containers */
.content {
  min-width: 600px;
  max-width: 1400px;
  margin: 70px auto 90px auto;
  width: 85%;
}

.header-container,
.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
header {
  background-color: #1B1B1B;
  color: #FBF5EB;
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;

}

.name-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.name-title h1 {
  font-weight: bold;
  font-size: 1.8rem;
}

.name-title .separator {
  font-size: 1rem;
  font-weight: 300;
  padding-top: 0.15rem;
}

.name-title h2 {
  font-weight: normal;
  font-size: 1.2rem;
  padding-top: 0.15rem;
}

/* Language selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language {
  font-weight: 400;
}

.language.active {
  font-weight: 700;
}

.burger-menu {
  display: none;
}

/* Language switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FBF5EB;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #1B1B1B;
  transition: .4s;
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Main content */
.content {
  display: flex;
  justify-content: center;
}

/* Side menu */
side-menu {
  /*---COMPONENTE: NO CAMBIAR---*/
  width: 20%;
}

.side-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 160px;
}

.burger-menu,
.burger-menu-icon {
  display: none;
}

.side-menu ul,
.burger-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.menu-item {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 8px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #1B1B1B;
}

.menu-item.active {
  font-size: 24px;
  font-weight: 700;
}

.menu-item.active::after {
  height: 4px;
}

.menu-item:hover {
  font-size: 24px;
  font-weight: 700;
}

.menu-item:hover::after {
  height: 4px;
}


/* Main content area */
.main-content {
  width: 1000px;
  min-width: 600px;
}

/* Footer */
footer {
  background-color: #1B1B1B;
  color: #FBF5EB;
  padding: 1.2rem 0;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-container .info {
  display: flex;
  gap: 1rem;
}

/*
.footer-container .info:last-of-type {
  margin-right: 60px;
}
*/

.footer-container .info i {
  font-size: 20px;
  margin-right: -5px;
  vertical-align: middle;
}

.footer-container .info a {
  text-decoration: underline;
}


/* ----- En desarrollo ----- */
.no-developed {
  color: var(--dark-color);
  padding: 40px;
  border: 5px solid var(--dark-color);
}

.no-developed h4 {
  font-family: var(--roboto);
  font-size: 90px;
  font-weight: bold;
}

.no-developed p {
  font-family: var(--montserrat);
  font-size: 36px;
  font-weight: 400;
}

@media (max-width: 1280px) {

  .header-container,
  .footer-container {
    padding: 0 40px;
  }

  .content {
    margin-left: 40px;
    width: 90%;
    gap: 40px;
  }

  .side-menu ul {
    gap: 1rem;
  }

  .menu-item {
    font-size: 16px;
  }

  .menu-item.active {
    font-size: 18px;
  }

  .main-content {
    min-width: 300px;
  }

}

@media (max-width: 660px) {
  .header-container {
    padding: 0;
    margin: 0 auto;
    width: 90%;
  }

  .name-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .name-title h1 {
    font-size: 18px;
  }

  .separator {
    display: none;
  }

  .name-title h2 {
    font-size: 14px;
    font-weight: light;
    padding-top: 0;
  }

  .burger-menu-icon {
    display: block;
    font-size: 20px;
    cursor: pointer;
    margin-left: 20px;
    margin-top: 2px;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #1B1B1B;
    z-index: 1000;

    /* Para transicion */
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 1s ease
  }

  .burger-menu.show {
    /*Para transicion */
    max-height: 500px;
  }

  .burger-menu ul {
    gap: 20px;
    margin: 20px 5%;
  }

  .menu-item::after {
    background-color: var(--cream-color);
  }

  .content {
    min-width: 300px;
    margin: 40px auto 10px auto;
  }

  .footer-container {
    flex-direction: column;
    padding: 0 6%;
    gap: 15px;
  }




  /*Elemento de Web componenr*/
  side-menu {
    display: none;
  }

}