@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Questrial&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn-uicons.flaticon.com/2.6.0/uicons-bold-rounded/css/uicons-bold-rounded.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

h1, h2, h3 {
  letter-spacing: -2px;
}

::selection {
  background-color: #EC4B3C;
  color: #242424;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #111;
}

::-webkit-scrollbar-thumb {
  background-color: #242424;
  border-radius: 0.6rem;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  min-width: 330px;
}
body .container {
  width: 100%;
  max-width: 1280px;
}
body .button {
  padding: 10px 15px;
  border-radius: 0.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3137254902);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #202020;
  transition: all 0.2s ease-in-out;
}
body .button:hover {
  background: #343434;
}

nav {
  display: flex;
  user-select: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 1.4rem 2rem;
  width: 100%;
  top: 0;
  position: sticky;
  z-index: 10;
}
nav .inner {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
nav .nav-logo img {
  width: 46px;
  transition: all 0.2s ease-in-out;
}
nav .nav-logo img:hover {
  transform: scale(1.2);
}
nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
nav .nav-links .link {
  color: #242424;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
nav .nav-links .link:hover {
  color: #EC4B3C;
}
nav .nav-links .button {
  color: #fff;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  position: relative;
}
.hero .web-face {
  width: 100%;
  display: flex;
  transition: all 0.6s ease-in-out;
}
.hero .web-face .slide {
  min-width: 100%;
}
.hero .web-face img {
  width: 100%;
  display: block;
  border-radius: 2.5rem;
  pointer-events: none;
  user-select: none;
}

.clients {
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}
.clients h2 {
  font-size: 1.8rem;
  color: #242424;
}
.clients .clients-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 6rem;
  animation: sliding 40s forwards infinite linear;
}
@keyframes sliding {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-139%);
  }
}
.clients .clients-wrapper img {
  height: 1.9rem;
  transition: all 0.3s ease;
}
.clients .clients-wrapper img:hover {
  transform: scale(1.05);
}

.showcase {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 7rem;
}
.showcase.reverse {
  flex-direction: row-reverse;
}
.showcase .showcase-img {
  width: 100%;
}
.showcase .showcase-img img {
  width: 100%;
}
.showcase.servicios {
  backdrop-filter: blur(200px);
}
.showcase .showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.showcase .showcase-grid .box {
  width: 280px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5647058824);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  gap: 1rem;
  user-select: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
  transition: all 0.2s ease-in-out;
}
.showcase .showcase-grid .box h3 {
  font-size: 1.5rem;
  color: #242424;
  font-weight: 500;
}
.showcase .showcase-grid .box p {
  font-size: 0.9rem;
  color: #555;
}
.showcase .showcase-grid .box:hover {
  backdrop-filter: blur(50px);
  background-color: #f5f5f5;
}
.showcase .showcase-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  gap: 1rem;
}
.showcase .showcase-content h2 {
  font-size: 3rem;
  color: #242424;
}
.showcase .showcase-content p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #888;
}

.blog {
  width: 100%;
  padding: 7rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog .blog-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.blog .blog-wrapper h2 {
  font-size: 2.8rem;
  color: #242424;
}
.blog .blog-wrapper .blog-cards {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog .blog-wrapper .blog-cards .blog-card {
  width: 100%;
  height: 100%;
  max-width: 260px;
  max-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1882352941);
  border-radius: 1.5rem;
}
.blog .blog-wrapper .blog-cards .blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem 1.5rem 0 0;
}
.blog .blog-wrapper .blog-cards .blog-card .blog-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 1.5rem 2rem;
  gap: 1.2rem;
}
.blog .blog-wrapper .blog-cards .blog-card .blog-text h3 {
  font-size: 1.3rem;
}
.blog .blog-wrapper .blog-cards .blog-card .blog-text h3 a {
  text-decoration: none;
  color: #242424;
}
.blog .blog-wrapper .blog-cards .blog-card .blog-text p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

.contact {
  width: 100%;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  border-radius: 3rem 3rem 0 0;
}
.contact .contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.contact .contact-wrapper h2 {
  font-size: 2.8rem;
  color: #242424;
}
.contact .contact-wrapper form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  gap: 1.5rem;
}
.contact .contact-wrapper form label {
  color: #999;
}
.contact .contact-wrapper form .name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact .contact-wrapper form .name input {
  color: #999;
  font-family: "DM Sans", sans-serif;
  border: none;
  outline: none;
  padding: 0.7rem;
  border-radius: 0.6rem;
}
.contact .contact-wrapper form input {
  width: 100%;
}
.contact .contact-wrapper form .message {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
}
.contact .contact-wrapper form .message textarea {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 0.6rem;
  box-sizing: border-box;
  height: 100px;
  padding: 1rem;
  font-family: "DM Sans", sans-serif;
  resize: vertical;
}
.contact .contact-wrapper form .message textarea:focus {
  color: #242424;
  outline: none;
  border: none;
}
.contact .contact-wrapper form button {
  padding: 10px 15px;
  border-radius: 0.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3137254902);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #202020;
  transition: all 0.2s ease-in-out;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border: none;
}
.contact .contact-wrapper form button:hover {
  background: #343434;
}

footer {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  background-color: #111;
  color: #f5f5f5;
  box-shadow: -20px 0 20px rgba(0, 0, 0, 0.3137254902);
}
footer img {
  user-select: none;
  width: 60px;
}
footer .lists {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
}
footer .lists .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  gap: 0.2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  user-select: none;
}
footer .lists .list h3 {
  color: #999;
  letter-spacing: 0;
}
footer .lists .list a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 300;
  transition: all 0.2s ease;
}
footer .lists .list a:hover {
  color: #0484BB;
}
footer .copyright {
  font-size: 0.8rem;
  color: #777;
}

.point {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0.5;
  position: absolute;
  z-index: -10;
}
.point.b {
  top: 40%;
  right: 0;
  background-color: #0484BB;
  box-shadow: 0 0 90px 90px #0484BB;
}
.point.r {
  top: 60%;
  background-color: #EC4B3C;
  box-shadow: 0 0 90px 90px #EC4B3C;
}

.content {
  min-height: 100vh;
  padding-inline: 1rem;
  padding-top: 7rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.content img {
  width: 50%;
  border-radius: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .content img {
    width: 80%;
  }
}
.content h1 {
  margin-bottom: 2rem;
  font-size: 4rem;
}
.content .injected {
  font-size: 1.2rem;
  font-weight: 300;
}
.content a {
  padding: 10px 15px;
  border-radius: 0.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3137254902);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #202020;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  top: 4rem;
}
.content a:hover {
  background: #343434;
}

.blog-body {
  min-height: 100vh;
}
.blog-body .blog-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 6rem;
  padding-top: 2rem;
  gap: 4rem;
}
.blog-body .blog-container h1 {
  font-size: 5rem;
  color: #242424;
}
.blog-body .posts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog-body .posts .post {
  width: 320px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2509803922);
}
.blog-body .posts .post-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.blog-body .posts .post-data {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.blog-body .posts .post-data a {
  color: #242424;
  text-decoration: none;
}
.blog-body .pagination a {
  color: #0484BB;
  text-decoration: none;
}

@media screen and (max-width: 1280px) {
  body .container {
    max-width: 100vw;
  }
  nav {
    border-radius: 0;
  }
  .hero .web-face img {
    border-radius: 0;
  }
  .clients h2 {
    font-size: 1.3rem;
  }
  .clients .clients-wrapper {
    gap: 4rem;
  }
  .showcase {
    flex-direction: column;
    padding: 6rem 0.6rem;
    gap: 2.5rem;
  }
  .showcase.reverse {
    flex-direction: column;
  }
  .showcase .showcase-img {
    width: 50%;
  }
  .showcase .showcase-img img {
    width: 100%;
  }
  .showcase .showcase-grid {
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .showcase .showcase-content {
    width: 40%;
    text-align: center;
    align-items: center;
  }
  .point.b {
    top: 30%;
    left: 20%;
    right: auto;
  }
  .point.r {
    top: 40%;
    right: 20%;
  }
}
@media screen and (max-width: 700px) {
  nav {
    padding: 0.8rem 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2509803922);
  }
  nav .nav-links {
    display: none;
  }
  nav .nav-logo img {
    width: 32px;
  }
  .clients .clients-wrapper {
    animation-duration: 25s;
  }
  .showcase .showcase-grid {
    grid-template-columns: 1fr;
  }
  .point.b {
    top: 10%;
    left: 20%;
    right: auto;
  }
  .point.r {
    top: 70%;
    right: 20%;
  }
}

/*# sourceMappingURL=style.css.map */
