@font-face {
  font-family: "Montserrat-Regular", sans-serif;
  src: url(/src/fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Bold", sans-serif;
  src: url(/src/fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  max-width: 1920px;
  height: 100vh;
  font-size: 1.6rem;
  margin: 0 auto;
  font-family: "Montserrat", Arial, sans-serif;
  overflow: hidden;
}

a {
  text-decoration: none;
}

:root {
  --primary-color: #1c4477;
  --second-color: #4fcadc;
  --bg-color: #ffffff;
  --text-color: #ffffff;
}

.full {
  display: flex;
  width: 100vw;
  max-width: 1920px;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: url(/src/bg.webp);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
}

.logo p {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 500;
}

.logotipo {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logotipo img {
  width: 70%;
  height: auto;
}

/* btn whats */
.whats {
  z-index: 50;
  width: 5rem;
  height: 5rem;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-bottom: 10rem;
  margin-right: 5rem;
  background: none;
  border: none;
}

.whats img {
  cursor: pointer;
  transition: 0.3s;
}

.whats img:hover {
  scale: 1.03;
  transform: translateY(-1rem);
}

/* loading */

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #4fcadc;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* footer two */
.footer-dev {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.5rem;
  width: 100vw;
  max-width: 1920px;
  height: max-content;
  padding: 2rem 0rem;
  background-color: var(--bg-color);
  border-top: solid 0.1rem var(--box-shadow);
  position: absolute;
  bottom: 0;
}

.copy {
  font-size: 1.4rem;
  color: #000;
}

.dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dev p {
  padding-right: 0.5rem;
  font-size: 1.4rem;
  color: #000;
}
