/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --hue-color: 235; /* Indigo / Blue-violet */
  --first-color: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 92%);
  --ai-accent: hsl(190, 90%, 50%);
  --ai-accent-alt: hsl(190, 90%, 42%);
  --title-color: hsl(var(--hue-color), 12%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;
  --border-color: hsl(var(--hue-color), 20%, 90%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  --shadow: 0 8px 24px hsla(var(--hue-color), 40%, 40%, .12);

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.05rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 12%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 10%);
  --container-color: hsl(var(--hue-color), 29%, 14%);
  --border-color: hsl(var(--hue-color), 20%, 22%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 24%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 34%);
  --shadow: 0 8px 24px hsla(0, 0%, 0%, .35);
}

body.dark-theme .home__blob-icon,
body.dark-theme .about__img,
body.dark-theme .portfolio__img {
  filter: brightness(.94);
}

body.dark-theme .nav,
body.dark-theme .services__modal-content,
body.dark-theme .contact__form-input {
  box-shadow: none;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}

/*========== Language toggle ==========*/
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 1;
  padding: .35rem .5rem;
  border-radius: .4rem;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}

.lang-toggle:hover {
  border-color: var(--first-color);
  color: var(--first-color);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height) 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s, color .4s;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img { max-width: 100%; height: auto; }

button, select, textarea, input { font-family: var(--body-font); outline: none; border: none; }

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
  padding: 5.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--mb-0-5);
}

.section__title, .section__subtitle {
  text-align: center;
}

/*==================== LAYOUT ====================*/
.container {
  max-width: 1024px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid { display: grid; gap: 1.5rem; }

.main { overflow: hidden; }

/*==================== BUTTONS ====================*/
.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  color: #fff;
  padding: .9rem 1.75rem;
  border-radius: .75rem;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 20px hsla(var(--hue-color), 60%, 55%, .35);
}

.button:hover { transform: translateY(-3px); }

.button--ghost {
  background: transparent;
  color: var(--title-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  margin-left: .75rem;
}

.button--white {
  background: #fff;
  color: var(--first-color-alt);
  box-shadow: none;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.button__icon { font-size: 1.25rem; }

/*==================== HEADER & NAV ====================*/
.header {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
  font-size: 1.15rem;
}

.nav__logo span { color: var(--first-color); }

.nav__logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  background-color: #fff;
  border-radius: .5rem;
  padding: .15rem;
  box-shadow: 0 2px 8px hsla(var(--hue-color), 40%, 40%, .18);
}

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav__btns {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 12px hsla(var(--hue-color), 24%, 15%, .1);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: .3s;
  }
}

.nav__list {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  column-gap: 0;
}

.nav__item { text-align: center; }

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: .25rem;
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

.nav__icon { font-size: 1.2rem; }

.nav__close {
  position: absolute;
  right: 1.3rem;
  bottom: .5rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu { bottom: 0; }

/* Active link */
.active-link { color: var(--first-color); }

/* Change background header */
.scroll-header { box-shadow: 0 -1px 4px hsla(var(--hue-color), 24%, 15%, .1); }

@media screen and (min-width: 768px) {
  body { margin: 0; }
  .section { padding: 7rem 0 2rem; }

  .header {
    top: 0;
    bottom: initial;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }

  .nav__icon, .nav__close, .nav__toggle { display: none; }

  .nav__list {
    display: flex;
    column-gap: 2.5rem;
  }

  .nav__menu { margin-left: auto; }

  .nav__link {
    flex-direction: row;
    column-gap: .35rem;
  }
}

/*==================== VIDEO INTRO ====================*/
.video-intro__container {
  max-width: 1000px;
}

.video-intro__frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  background: #000;
}

.video-intro__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

/*==================== HOME ====================*/
.home__container {
  row-gap: 3rem;
  padding-top: 2rem;
}

.home__blob {
  position: relative;
  width: 220px;
  margin: 0 auto;
  justify-self: center;
}

.home__blob-shape {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  animation: blob-morph 9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.home__blob-img {
  width: 62%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px hsla(0, 0%, 0%, .2));
}

@keyframes blob-morph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; }
  50% { border-radius: 60% 40% 35% 65% / 55% 65% 35% 45%; }
}

.home__badge {
  position: absolute;
  display: flex;
  align-items: center;
  column-gap: .35rem;
  background-color: var(--container-color);
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  padding: .5rem .85rem;
  border-radius: 3rem;
  box-shadow: var(--shadow);
}

.home__badge--1 { top: 8%; left: -12%; }
.home__badge--2 { bottom: 6%; right: -14%; }
.home__badge i { color: var(--first-color); font-size: 1rem; }

.home__data { text-align: center; }

.home__subtitle {
  display: block;
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
}

.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-0-5);
}

.home__role {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.home__description {
  max-width: 560px;
  margin: 0 auto var(--mb-2);
}

.home__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.home__scroll {
  display: none;
}

@media screen and (min-width: 768px) {
  .home__container {
    grid-template-columns: 300px 1fr;
    align-items: center;
    column-gap: 2rem;
    padding-top: 3rem;
  }

  .home__blob { width: 280px; order: 2; }
  .home__blob-icon { font-size: 4.5rem; }

  .home__data { text-align: left; order: 1; }
  .home__description { margin: 0 0 var(--mb-2); }
  .home__buttons { justify-content: flex-start; }

  .home__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: .25rem;
    color: var(--title-color);
    margin: 4rem auto 0;
    width: fit-content;
  }

  .home__scroll-icon { font-size: 1.5rem; }
  .home__scroll-name { font-size: var(--smaller-font-size); }
}

/*==================== ABOUT ====================*/
.about__container { row-gap: 2.5rem; }

.about__img-wrapper { display: flex; justify-content: center; }

.about__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .35rem;
  box-shadow: var(--shadow);
}

.about__img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--container-color);
}

.about__description { text-align: center; margin-bottom: var(--mb-2); }

.about__data .button { display: flex; width: fit-content; margin: 0 auto; }

@media screen and (min-width: 768px) {
  .about__container {
    grid-template-columns: 260px 1fr;
    align-items: center;
    column-gap: 3rem;
  }

  .about__description { text-align: left; }
  .about__data .button { margin: 0; }
}

/*==================== PROCESS ====================*/
.process__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.process__card {
  position: relative;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  overflow: hidden;
}

.process__number {
  position: absolute;
  top: -.5rem;
  right: .5rem;
  font-size: 3rem;
  font-weight: var(--font-bold);
  color: var(--first-color);
  opacity: .12;
}

.process__icon { font-size: 1.75rem; color: var(--first-color); margin-bottom: var(--mb-0-75); }
.process__title { font-size: var(--h3-font-size); margin-bottom: var(--mb-0-5); }
.process__description { font-size: var(--small-font-size); }

@media screen and (min-width: 768px) {
  .process__container { grid-template-columns: repeat(4, 1fr); }
}

/*==================== SERVICES ====================*/
.services__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__card {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 1rem;
  transition: box-shadow .3s;
}

.services__card:hover { box-shadow: var(--shadow); }

.services__icon { font-size: 2rem; color: var(--first-color); margin-bottom: var(--mb-1); }
.services__title { font-size: var(--h3-font-size); margin-bottom: var(--mb-1); line-height: 1.3; }

.services__button {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-size: var(--small-font-size);
  color: var(--first-color-alt);
  font-weight: var(--font-medium);
  cursor: pointer;
}

.services__button-icon { font-size: 1rem; transition: transform .3s; }
.services__button:hover .services__button-icon { transform: translateX(.25rem); }

/* Modal */
.services__modal {
  position: fixed;
  inset: 0;
  background-color: hsla(var(--hue-color), 28%, 10%, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: var(--z-modal);
}

.services__modal.active-modal { opacity: 1; visibility: visible; }

.services__modal-content {
  position: relative;
  background-color: var(--container-color);
  padding: 2.5rem 1.75rem 2rem;
  border-radius: 1rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow);
}

.services__modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
}

.services__modal-title { font-size: var(--h3-font-size); margin-bottom: var(--mb-1); }
.services__modal-description { font-size: var(--small-font-size); margin-bottom: var(--mb-1-5); }

.services__modal-item {
  display: flex;
  align-items: flex-start;
  column-gap: .5rem;
  margin-bottom: var(--mb-0-75);
  font-size: var(--small-font-size);
}

.services__modal-icon { font-size: 1.1rem; color: var(--first-color); flex: none; }

/*==================== AI-IAAS OFFER ====================*/
.offer__tagline {
  text-align: center;
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  max-width: 640px;
  margin: 0 auto var(--mb-1);
}

.offer__description {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mb-2-5);
}

.offer__container { display: flex; flex-direction: column; row-gap: 2rem; }

.offer__price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 12px 32px hsla(var(--hue-color), 60%, 55%, .35);
}

.offer__price-icon {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: var(--mb-0-75);
}

.offer__price-label {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: #fff;
  margin-bottom: var(--mb-0-75);
}

.offer__price-note {
  color: hsla(0, 0%, 100%, .9);
  font-size: var(--small-font-size);
  max-width: 400px;
  margin-bottom: var(--mb-1-5);
}

.offer__price-card .button {
  background: #fff;
  color: var(--first-color-alt);
  box-shadow: none;
}

.offer__grid {
  grid-template-columns: repeat(1, 1fr);
}

.offer__card {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
}

.offer__card-icon { font-size: 1.9rem; color: var(--first-color); margin-bottom: var(--mb-0-75); }
.offer__card-title { font-size: var(--h3-font-size); margin-bottom: var(--mb-1); }
.offer__card-text { font-size: var(--small-font-size); margin-bottom: var(--mb-1); }

.offer__card-list { display: flex; flex-direction: column; row-gap: .6rem; margin-bottom: var(--mb-0-5); }

.offer__card-list li {
  display: flex;
  align-items: flex-start;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.offer__card-list li i { color: var(--first-color); font-size: 1.1rem; flex: none; margin-top: .1rem; }

.offer__card-note {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  font-style: italic;
  margin-top: var(--mb-0-75);
}

.offer__steps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--mb-0-5);
}

.offer__step {
  background-color: var(--input-color);
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  padding: .4rem .75rem;
  border-radius: .5rem;
}

.offer__step:not(:last-child)::after {
  content: '\2192';
  margin-left: .5rem;
  color: var(--first-color);
}

@media screen and (min-width: 768px) {
  .offer__container { flex-direction: row; align-items: flex-start; column-gap: 2rem; }
  .offer__price-card { flex: 0 0 280px; position: sticky; top: 6rem; }
  .offer__grid { grid-template-columns: repeat(2, 1fr); flex: 1; }
  .offer__card--wide { grid-column: 1 / -1; }
}

/*==================== PORTFOLIO ====================*/
.portfolio__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio__card {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.portfolio__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.portfolio__img {
  height: 200px;
  overflow: hidden;
  background-color: var(--input-color);
}

.portfolio__img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.portfolio__tag {
  display: inline-block;
  margin: 1.25rem 0 0 1.25rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  background-color: var(--input-color);
  padding: .2rem .6rem;
  border-radius: .4rem;
}

.portfolio__title {
  font-size: var(--h3-font-size);
  margin: .75rem 1.25rem .5rem;
}

.portfolio__description {
  font-size: var(--small-font-size);
  margin: 0 1.25rem 1.5rem;
}

/*==================== RESOURCES ====================*/
.resources__intro {
  max-width: 620px;
  margin: -1rem auto 2.5rem;
  text-align: center;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.resources__container {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.resources__card {
  position: relative;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 1rem;
  transition: box-shadow .3s, transform .3s;
}

.resources__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.resources__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: #fff;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  padding: .2rem .6rem;
  border-radius: .4rem;
}

.resources__icon { font-size: 2rem; color: var(--first-color); margin-bottom: var(--mb-1); }
.resources__title { font-size: var(--h3-font-size); margin-bottom: var(--mb-0-75); }
.resources__description { font-size: var(--small-font-size); margin-bottom: var(--mb-1); }

.resources__button {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-size: var(--small-font-size);
  color: var(--first-color-alt);
  font-weight: var(--font-medium);
}

.resources__button-icon { font-size: 1rem; transition: transform .3s; }
.resources__button:hover .resources__button-icon { transform: translateX(.25rem); }

/*==================== PROJECT IN MIND ====================*/
.project__bg {
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  border-radius: 1.5rem;
  padding: 3rem 1.5rem;
}

.project__container { justify-items: center; text-align: center; }

.project__title { color: #fff; margin-bottom: var(--mb-1); }
.project__description { color: hsla(0,0%,100%,.9); max-width: 480px; margin-bottom: var(--mb-2); }

/*==================== CONTACT ====================*/
.contact__container {
  row-gap: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form-div { position: relative; margin-bottom: var(--mb-2); }

.contact__form-input {
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  padding: 1rem;
  border-radius: .75rem;
  font-size: var(--normal-font-size);
}

.contact__form-tag {
  display: block;
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-25);
}

.contact__form-area textarea { resize: none; }

.contact__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, hsla(var(--hue-color), 69%, 61%, .08), hsla(190, 90%, 50%, .08));
  border: 1px dashed var(--first-color);
  border-radius: 1rem;
  padding: 2.5rem 1.75rem;
  height: 100%;
  justify-content: center;
}

.contact__cta-icon {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.contact__cta-description {
  font-size: var(--small-font-size);
  max-width: 320px;
  margin-bottom: var(--mb-2);
}

/*==================== FOOTER ====================*/
.footer {
  background-color: hsl(var(--hue-color), 24%, 12%);
  padding-top: 3rem;
}

.footer__container {
  row-gap: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: 1.25rem;
  color: #fff;
  font-weight: var(--font-bold);
}

.footer__logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  background-color: #fff;
  border-radius: .5rem;
  padding: .15rem;
}

.footer__description { color: hsla(0,0%,100%,.7); font-size: var(--small-font-size); margin-top: var(--mb-0-25); }

.footer__list {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}

.footer__link { color: hsla(0,0%,100%,.8); font-size: var(--small-font-size); }
.footer__link:hover { color: #fff; }

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: hsla(0,0%,100%,.6);
  padding: 1.5rem 0;
  border-top: 1px solid hsla(0,0%,100%,.1);
}

@media screen and (min-width: 768px) {
  .footer__container { grid-template-columns: repeat(2, 1fr); text-align: left; }
  .footer__list { justify-content: flex-end; }
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background: linear-gradient(135deg, var(--first-color), var(--ai-accent));
  opacity: .9;
  padding: .5rem;
  border-radius: .5rem;
  display: flex;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup__icon { font-size: 1.35rem; color: #fff; }

.show-scroll { bottom: 5.5rem; }

@media screen and (min-width: 768px) {
  .show-scroll { bottom: 3rem; }
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  border-radius: .5rem;
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover { background-color: hsl(var(--hue-color), 12%, 60%); }

/*==================== MEDIA QUERIES ====================*/
@media screen and (max-width: 350px) {
  .container { margin-left: var(--mb-1); margin-right: var(--mb-1); }
  .home__buttons { flex-direction: column; row-gap: 1rem; }
  .button--ghost { margin-left: 0; }
}

@media screen and (min-width: 1024px) {
  .container { margin-left: auto; margin-right: auto; }
}
