*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span,
a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat-bd", sans-serif;
  font-weight: 900;
  line-height: 110%;
}

p {
  line-height: 120%;
}

.page {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 10px;

  @media (max-width: 1580px) {
    max-width: 1280px;
  }
}

header {
  margin-top: 40px;
}

footer {
  margin-top: auto !important;
}

/* Header */
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__wrapper > a > img {
  width: 70%;
  @media (max-width: 920px) {
    width: 70%;
    height: auto;
  }
}

.header__wrapper nav > ul {
  display: flex;
  align-items: center;
  gap: 25px;

  @media (max-width: 1280px) {
    display: none;
  }
}

.header__wrapper nav > ul > li a {
  font-size: 16px;

  &:hover {
    text-decoration: underline;
  }
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__buttons a {
  padding: 13px 90px;
  font-size: 18px;
  background: linear-gradient(90deg, #9e00ff, #ff005c);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);

  &:hover {
    opacity: 0.8;
  }

  @media (max-width: 1580px) {
    font-size: 16px;
  }

  @media (max-width: 920px) {
    display: none;
  }
}

.header__buttons button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
}

.header__buttons button p {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 50px;
  background: var(--color-dark);
  color: var(--color-white);
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;

  @media (max-width: 1190px) {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 25px;

  @media (max-width: 1190px) {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__left img {
  width: 50%;
  @media (max-width: 410px) {
    width: 80%;
    height: auto;
  }
}

.footer__left > p {
  font-size: 20px;
  font-family: "Montserrat-sb", sans-serif;
  width: 450px;

  @media (max-width: 560px) {
    width: auto;
    font-size: 20px;
  }
}

.footer__left-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__left-links a {
  &:hover {
    text-decoration: underline;
  }

  &:last-child {
    font-size: 12px;
  }
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: end;

  gap: 25px;

  @media (max-width: 1190px) {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__right a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  @media (max-width: 425px) {
    gap: 10px;
  }
}

.footer__right ul > li > img {
  width: 32px;
  height: 32;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__whatsapp {
  color: var(--color-green);

  @media (max-width: 410px) {
    font-size: 14px;
  }
}

.footer__navs ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer__navs ul > li a {
  &:hover {
    text-decoration: underline;
  }
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__copyright {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;

  @media (max-width: 1190px) {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
  }
}

/* Overlay */
.overlay {
  position: fixed;

  display: none;

  width: 100vw;
  height: 100vh;

  background: rgba(0, 0, 0, 0.6);

  z-index: 99;
}

.overlay.show {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay__wrapper {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);

  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 20px;
}

.overlay__wrapper h2 {
  font-size: 64px;
  font-family: "Montserrat-bd", sans-serif;
  margin-bottom: 20px;
}

.overlay__wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.overlay__wrapper form > input,
.overlay__wrapper form > textarea {
  width: 100%;
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-black);

  &::-webkit-input-placeholder {
    color: var(--color-dark);
  }

  &::-moz-placeholder {
    color: var(--color-dark);
  }

  &:-ms-input-placeholder {
    color: var(--color-dark);
  }

  &::-ms-input-placeholder {
    color: var(--color-dark);
  }

  &::placeholder {
    color: var(--color-dark);
  }
}

.overlay__wrapper form > textarea {
  height: 200px;
  resize: none;
  font-family: "Montserrat-md", sans-serif;
}

.overlay__wrapper form > button {
  padding: 20px;
  background: var(--color-purple);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);

  &:hover {
    opacity: 0.8;
  }
}

.cityes {
  position: absolute;
  display: none;
  left: 10%;
  right: 10%;
  top: 15%;
  z-index: 99;
  width: 100vw;
}

.cityes.show {
  display: block;
}

.cityes__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  background: var(--color-white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);

  width: 80%;
  padding: 20px;
}

.cityes__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100px;

  @media (max-width: 425px) {
    width: 100%;
  }
}

.cityes__wrapper ul > li {
  &:first-child {
    font-family: "Montserrat-bd", sans-serif;
  }
}

.cityes__wrapper ul > li a {
  font-size: 13px;

  &:hover {
    text-decoration: underline;
  }
}

.contacts {
  margin-top: 80px;
  margin-bottom: 120px;
}

.actions {
  margin-top: 80px;
  margin-bottom: 120px;
}

.actions__wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.actions__wrapper h1 {
  font-size: 48px;
}

.actions__wrapper ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 60px;

  @media (max-width: 1226px) {
    flex-direction: column;
    gap: 40px;
  }
}

.actions__wrapper ul > li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.actions__wrapper ul > li > h2 {
  font-size: 32px;
}

.actions__wrapper ul > li > h3 {
  font-size: 48px;
  color: var(--color-purple);
}

.services {
  margin-top: 80px;
  margin-bottom: 120px;
}

.services__wrapper h1 {
  font-size: 48px;
}

.services__wrapper ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.services__wrapper ul > li > h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.services__wrapper ul > li > p {
  margin-bottom: 40px;
}

.services__wrapper ul > li > a {
  padding: 17px 140px;
  font-size: 20px;
  font-family: "Montserrat-md", sans-serif;
  background: var(--color-red);
  border-radius: var(--border-radius-md);
  color: var(--color-white);

  border: 2px solid var(--color-red);

  transition: var(--transition);

  &:hover {
    background: none;
    color: var(--color-dark);
  }
}
