@font-face {
  font-family: 'Lexend';
  src: url('../fonts/LexendDeca-VariableFont_wght.ttf');
  font-style: normal;
}

:root {
  /* MAIN COLORS */
  --color-primary: #FF3333;
  --color-primary-light: #FF6666;
  --color-success: #28A745;
  --color-error: #DC3545;
  --color-info: #17A2B8;
  --color-warning: #FFC107;

  /* COLORS ALTERNATIVES */
  --color-alt-primary: #FF333335;
  --color-alt-primary-light: #FF666635;
  --color-alt-success: #28A74535;
  --color-alt-error: #DC354535;
  --color-alt-info: #17A2B835;
  --color-alt-warning: #FFC10735;

  /* BACKGROUND COLORS */

  /* TEXT */

  /* BORDERS */
  --border-color: #E0E0E0;

  /* LINKS */
  --link-color: var(--color-primary);
  --link-hover: var(--color-primary-light);
}

.light {
  --bg-main: #FFFFFF;
  --bg-card: #F8F8F8;
  --bg-muted: #F2F2F2;
  --alt-trans: #ffffff7e;

  --text-main: #29293e;
  --text-secondary: #555555;

  background-color: var(--bg-main);
}

.dark {
  --bg-main: #29293e;
  --bg-card: #555555;
  --bg-muted: #B4B4B4;
  --alt-trans: #29293e7e;

  --text-main: #FFFFFF;
  --text-secondary: #F8F8F8;

  background-color: var(--bg-main);
}

* {
  font-family: 'Lexend', sans-serif, 'Trebuchet MS';
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  outline: none;
  color: currentColor;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: var(--text-main);
}

a, button {
  cursor: pointer;
}

svg {
  width: 1.5em;
}

body {
  font-size: 13px;
  min-height: 100vh !important;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body .full_page {
  position: fixed;
  background-color: var(--alt-trans);
  backdrop-filter: blur(1em);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .full_page .alert_container {
  width: 300px;
  height: max-content;
  padding: 2em;
  border-radius: .7em;
  background-color: var(--bg-card);
  box-shadow: inset .2em .2em 1em var(--color-alt-primary-light), 1em 1em 2em var(--color-alt-primary-light);
}

body .full_page .alert_container .alert_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

body .full_page .alert_container .alert_head * {
  color: var(--color-primary);
}

body .full_page .alert_container .alert_head span {
  height: 1em;
  width: 1em;
  font-size: 2em;
  color: var(--color-primary);
  cursor: pointer;
  background-color: var(--color-alt-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

body .full_page .alert_container .alert_head span:hover {
  background-color: transparent;
  transform: scale(1.2);
}

body header > *,
body header ~ * {
  width: 100%;
  padding: 0 4em;
}

body header {
  width: 100%;
  background-color: var(--alt-trans);
  backdrop-filter: blur(1em);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

body header .header-main {
  height: 5em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-color);
}

body header .header-main .logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--color-primary);
  font-weight: bold;
}

body header .header-main .logo img {
  height: 3.05em;
  width: 3.05em;
  border-radius: 50%;
}

body header .header-main form.searchBox {
  height: 3.5em;
  width: 46em;
  position: relative;
  border-radius: .7em;
  overflow: hidden;
  border: 1px solid var(--color-alt-primary-light);
}

body header .header-main form.searchBox input {
  height: 100%;
  width: 100%;
  border: none;
  text-indent: 1em;
  background-color: transparent;
}

body header .header-main form.searchBox input ~ button {
  height: 100%;
  background-color: var(--color-primary);
  color: var(--bg-main);
  font-weight: 500;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: .3em;
  padding: .3em 1em;
}

body header .header-main form.searchBox input ~ button:hover {
  background-color: var(--color-primary-light);
}

body header .header-main nav .links-text {
  display: flex;
  align-items: center;
  gap: .8em;
  height: 4em;
}

body header .header-main nav .links-text a {
  font-weight: bold;
  border-radius: .7em;
  padding: .5em;
}

body header .header-main nav .links-text a:hover {
  background-color: var(--color-alt-primary-light);
}

body header .header-main button {
  display: flex;
  align-items: center;
  gap: .3em;
  padding: 0.4em 0.8em;
  border-radius: .7em;
  height: 2.7em;
  background-color: transparent;
  border: none;
  color: var(--text-main);
  border: 1px solid var(--color-alt-primary-light);
}

body header .header-main div > button:hover {
  opacity: .8;
}

body header .header-main .user-language,
body header .header-main .theme-color {
  height: 2.8em;
  z-index: 2;
  overflow: hidden;
}

body header .header-main .user-language:hover,
body header .header-main .theme-color:hover {
  overflow: visible;
}

body header .header-main .user-language .current-language-value,
body header .header-main .theme-color .current-theme {
  height: 2.7em;
  width: 100%;
}

body header .header-main .user-language .languages-opts,
body header .header-main .theme-color .themes-opts {
  height: calc(2.7em * 2.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  gap: .4em;
  width: 100%;
}

body header .header-main .user-language .languages-opts button,
body header .header-main .theme-color .themes-opts button {
  width: 100%;
  height: 2.7em;
  border: 1px solid var(--bg-main);
  background-color: transparent;
  color: var(--text-main);
  background-color: var(--bg-card);
  border-radius: .7em;
}

body header .header-main .user-language .languages-opts button:hover,
body header .header-main .theme-color .themes-opts button:hover {
  background-color: var(--color-primary-light);
}

body header .header-main .user-language:hover .languages-opts,
body header .header-main .theme-color:hover .themes-opts {
  z-index: 1;
  opacity: 1;
}

body header .header-features {
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 2em 2em;
}

body header .header-features .header-features-items {
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  overflow-x: scroll;
}

body header .header-features .header-features-items button {
  height: 3em;
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5em 1em;
  border-radius: .7em;
  background-color: transparent;
  gap: 1em;
  border: 3px solid transparent;
}

body header .header-features .header-features-items button:first-child,
body header .header-features .header-features-items button:hover {
  background-color: var(--color-primary-light);
  border: 3px solid var(--color-alt-primary);
}

body header .header-features .header-features-items button:hover {
  background-color: var(--color-alt-primary-light);
}

body header .header-features .header-features-details-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: .7em;
  overflow: scroll;
  position: relative;
}





body .sep {
  height: .4em;
  width: 100%;
  background-color: var(--text-main);
  margin: 5em 0;
  opacity: .1;
  border-radius: .7em;
}

body main {
  padding-top: 10em;
  position: relative;
  min-height: 100vh !important;
  overflow: visible;
}

body main section.entrance {
  height: calc(100vh - 10em);
  border-radius: .7em;
  overflow: hidden;
  text-align: center;
  background-image: url('../images/sources/influencer-filming-fashion-vlog.jpg');
  background-position: center;
  background-size: cover;
}

body main section.entrance .entrance-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--alt-trans);
  backdrop-filter: blur(1em);
  gap: 3em;
}

body main section.entrance .entrance-container h1 {
  font-size: 2.5em;
  margin-bottom: 1em;
}
body main section.entrance .entrance-container form {
  height: 5em;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body main section.entrance .entrance-container form input {
  height: 100%;
  width: 100%;
  text-indent: 1em; 
  border-radius: .7em;
  border: 3px solid var(--bg-muted);
  background-color: var(--alt-trans);
  backdrop-filter: blur(1em);
  font-weight: 1.2em;
}

::placeholder {
  color: currentColor;
}

body main section.entrance .entrance-container form button {
  height: 100%;
  width: 20%;
  border-radius: .7em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background-color: var(--color-primary);
  border: 3px solid transparent;
  position: absolute;
  right: 0;
}

body main section.entrance .entrance-container form button:hover {
  border: 3px solid var(--bg-muted);
}

body main section.heroe {
  min-height: 100vh;
  width: 100%;
}

body main section.heroe .pres {
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 4em;
  width: 100%;
}

body main section.heroe .pres h1 {
  font-size: 2em;
}

body main section.heroe .pres .features {
  height: 100%;
  width: 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2em;
  align-items: center;
  justify-items: center;
}

body main section.heroe .pres .features .feature {
  height: 10em;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .7em;
}

body main section.heroe .pres .features .feature:hover {
  box-shadow: inset .2em .2em 1em var(--color-alt-primary-light), 1em 1em 2em var(--color-alt-primary-light);
}

body main section.heroe .pres .features .feature:hover > *,
body main section.heroe .all-categories .category:hover > * {
  transform: scale(.9);
}

body main section.heroe .pres .features .feature span {
  height: 90%;
  min-width: .5em !important;
  border-radius: .7em;
  background-color: var(--color-primary);
  margin: 1em;
}
body main section.heroe .pres .features .feature p {
  font-size: 1.5em;
}

body main section.heroe .pres ~ h1 {
  font-size: 2.5em;
  margin: 2em 0;
  text-align: center;
}

body main section.heroe .all-categories {
  height: max-content;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4em;
  align-items: center;
  justify-items: center;
}

body main section.heroe .all-categories > .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  height: 12em;
  width: 12em;
  background-color: var(--alt-trans);
  border-radius: 50%;
  border: 3px solid var(--border-color);
  padding: 1em;
}

body main section.heroe .all-categories > .category svg {
  font-size: 1.7em;;
}

body main section.heroe .all-categories > .category span {
  text-align: center;
}

body main section.heroe .all-categories > .category:hover {
  border: 3px solid var(--color-primary);
  gap: 2em;
  background: linear-gradient(to top right, var(--color-alt-primary-light), transparent);
  box-shadow: inset .2em .2em 1em var(--color-alt-primary-light), 1em 1em 2em var(--color-alt-primary-light);
}



body footer {
  min-height: 100vh;
  width: 100%;
}
body footer .nav {
  height: 5vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
}

body footer .nav li {
  font-size: 1.2em;
  padding: .5em 1em;
  border-radius: .7em;
}

body footer .nav li:hover {
  background-color: var(--color-alt-primary-light);
}

body footer .structure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-items: center;
  gap: 2em;
}
body footer .structure div {
  width: 70%;
}

body footer .structure > div h3 {
  margin-bottom: .5em;
  padding: .5em 1em;
}

body footer .structure > div ul a {
  display: inline;
}
body footer .structure > div img {
  margin: .5em 1em;
  width: 3em;
}
body footer .structure > div ul li {
  padding: .5em 1em;
  width: 100%;
  border-radius: .7em;
  border: 1px solid transparent;
}

body footer .structure > div ul li:hover {
  background-color: var(--color-alt-primary-light);
  border: 1px solid var(--color-alt-primary);
}


body footer .structure > div ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: .5em;
}

body footer .footer-end {
  height: 5em;
  padding: 1em 3em;
  margin: 1em 0;
  border: none;
  border-top: .5em solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}