@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Space+Grotesk:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
*::-moz-selection {
  background-color: #ff7000;
  color: #fff;
}
*::selection {
  background-color: #ff7000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
}

.container {
  width: 1300px;
  max-width: 100%;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.main-header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
  border-radius: 0.5rem;
  padding: 1rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.main-header .logo-link {
  display: flex;
}
.main-header .logo-link .logo {
  width: 150px;
}

@media (max-width: 365px) {
  .main-header .logo-link .logo {
    width: 100px;
  }
}
@media (max-width: 850px) {
  .main-header .menu {
    display: none;
  }
}
.main-header .menu-list {
  display: flex;
  list-style-type: none;
  gap: 1rem;
}
.main-header .menu-list .menu-item .menu-link {
  text-decoration: none;
  color: #000;
  position: relative;
}
.main-header .menu-list .menu-item .menu-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  background-color: #000;
  width: 100%;
  transform-origin: left;
  transform: scale(0);
  transition: 0.35s ease-out;
}
.main-header .menu-list .menu-item .menu-link:hover::after {
  transform: scale(1);
}

.button {
  text-decoration: none;
  padding: 0.25em;
  border-radius: 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  gap: 0.5em;
  font-size: 1.2rem;
  transition: 0.2s ease-out;
}
.button .text {
  padding: 0.35em;
}
.button .icon {
  height: 1.75em;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25em;
  transition: 0.2s ease-out;
}
.button .icon i {
  transition: 0.4s ease-out;
}

.button-primary {
  background-color: #ff7000;
  color: #fff;
}
.button-primary .icon {
  background-color: #fd9444;
}
.button-primary:hover {
  background-color: #000;
}
.button-primary:hover .icon {
  background-color: #3e3e3e;
}

.button-whatsapp {
  background-color: #25d366;
  color: #fff;
}
.button-whatsapp .icon {
  background-color: #24b058;
}
.button-whatsapp:hover {
  background-color: #24b058;
}

.button-with-arrow:hover .icon i {
  transform: rotate(135deg);
}

@media (max-width: 420px) {
  .button-header .icon {
    display: none;
  }
}

.transparent-button {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.transparent-button::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform-origin: right;
  transition: 0.35s ease-out;
}
.transparent-button:hover::after {
  transform: scale(0);
}
.transparent-button-black {
  color: #000;
}
.transparent-button-black .icon {
  background-color: #3e3e3e;
  color: #fff;
}
.transparent-button-black:hover .icon {
  background-color: transparent;
  color: #000;
}

.plan-button {
  margin-top: 0.5rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding-block: 6rem;
  }
}
@media (max-width: 500px) {
  .hero {
    padding-block: 8rem;
  }
}
.hero .hero-title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  width: 750px;
  max-width: 100%;
}
@media (max-width: 1000px) {
  .hero .hero-title {
    font-size: 4rem;
    width: 600px;
  }
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 550px) {
  .hero .hero-title {
    font-size: 3rem;
    width: 450px;
  }
}
@media (max-width: 450px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }
}
.hero .hero-title .price div {
  text-decoration: underline;
  font-weight: 500;
}
.hero .hero-spline {
  width: 150%;
  height: 150%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-details {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  margin-top: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  overflow: hidden;
  padding-right: 2rem;
}
@media (max-width: 1050px) {
  .hero-details {
    grid-template-columns: auto auto auto auto;
    padding: 0;
  }
}
@media (max-width: 800px) {
  .hero-details {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 500px) {
  .hero-details {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.hero-details .hero-details-title {
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 1rem 2rem 1rem 1rem;
  color: #000;
}
@media (max-width: 1200px) {
  .hero-details .hero-details-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 1050px) {
  .hero-details .hero-details-title {
    grid-column: span 4;
  }
}
@media (max-width: 800px) {
  .hero-details .hero-details-title {
    grid-column: span 2;
  }
}
.hero-details .hero-details-title::-moz-selection, .hero-details .hero-details-title *::-moz-selection {
  background-color: #000;
  color: #fff;
}
.hero-details .hero-details-title::selection, .hero-details .hero-details-title *::selection {
  background-color: #000;
  color: #fff;
}
.hero-details .hero-details-title span {
  font-weight: 800;
}
.hero-details .hero-details-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding-block: 1rem;
}
@media (max-width: 1200px) {
  .hero-details .hero-details-feature {
    font-size: 1.2rem;
  }
}
@media (max-width: 1050px) {
  .hero-details .hero-details-feature:nth-child(1 of .hero-details-feature) {
    padding-left: 1rem;
  }
  .hero-details .hero-details-feature:nth-child(4 of .hero-details-feature) {
    padding-right: 1rem;
  }
}
@media (max-width: 800px) {
  .hero-details .hero-details-feature {
    padding-inline: 1rem;
  }
}
@media (max-width: 500px) {
  .hero-details .hero-details-feature {
    padding-block: 0.5rem;
  }
  .hero-details .hero-details-feature:nth-child(1 of .hero-details-feature) {
    padding-top: 1rem;
  }
  .hero-details .hero-details-feature:nth-child(4 of .hero-details-feature) {
    padding-bottom: 1rem;
  }
}
.hero-details .hero-details-feature span {
  font-weight: 300;
  font-size: 0.75em;
}

.hero-details-subtitle {
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 0.5em;
}
@media (max-width: 800px) {
  .hero-details-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 700px) {
  .hero-details-subtitle {
    font-size: 1.5rem;
  }
}

.hero-button {
  margin-top: 1rem;
}

.plans {
  padding-block: 3rem;
  scroll-margin: 5rem;
}
.plans .plans-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
.plans .plans-title-section .plans-title {
  font-size: 3rem;
  margin-bottom: 0.2em;
  width: 550px;
  max-width: 100%;
}
@media (max-width: 950px) {
  .plans .plans-title-section .plans-title {
    width: 600px;
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .plans .plans-title-section .plans-title {
    width: 485px;
  }
}
@media (max-width: 500px) {
  .plans .plans-title-section .plans-title {
    font-size: 2rem;
    width: 320px;
  }
}

.plans-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 4rem;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}
.plans-table::webkit-scrollbar {
  display: none;
}
.plans-table .plan {
  background-color: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
  min-width: 307px;
}
@media (max-width: 1050px) {
  .plans-table .plan .plan-title, .plans-table .plan p, .plans-table .plan .plan-details {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.plans-table .plan.featured {
  box-shadow: inset 0 0 0 4px #ff7000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.plans-table .plan.featured::before {
  content: "Más popular";
  position: absolute;
  bottom: 100%;
  background: #ff7000;
  color: #fff;
  width: 100%;
  left: 0;
  right: 0;
  padding-bottom: 0.5rem;
  padding-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.plans-table .plan .plan-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.plans-table .plan .plan-price {
  font-size: 3rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 800;
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
}
.plans-table .plan .plan-price span {
  font-weight: 300;
  font-size: 1.2rem;
}
.plans-table .plan .separator {
  width: 100%;
  height: 1px;
  background-color: #3e3e3e;
  margin-top: 1rem;
}
.plans-table .plan .plan-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plans-table .plan .plan-details .plan-features-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}
.plans-table .plan .plan-details .plan-feature {
  font-family: "Instrumental Sans", system-ui, sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5rem;
}
.plans-table .plan .plan-details .plan-feature i {
  color: #22c022;
  font-size: 1.3rem;
}
.plans-table .plan .plan-details .plan-feature i.yellow {
  color: #c0a822;
}
.plans-table .plan .plan-details .plan-feature i.red {
  color: #c02222;
}

.scroll-arrows {
  display: none;
  pointer-events: none;
}
@media (max-width: 1050px) {
  .scroll-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    z-index: 1000;
    opacity: 0;
  }
  .scroll-arrows .scroll-arrow {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: black;
    border-radius: 50%;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    pointer-events: auto;
  }
  .scroll-arrows .scroll-arrow i {
    font-size: 1.5rem;
  }
}

.portfolio {
  padding-block: 5rem;
  scroll-margin: 5rem;
}
.portfolio .portfolio-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
.portfolio .portfolio-title-section .portfolio-title {
  font-size: 3rem;
  margin-bottom: 0.2em;
  max-width: 100%;
  width: 700px;
}
@media (max-width: 768px) {
  .portfolio .portfolio-title-section .portfolio-title {
    width: 485px;
  }
}
@media (max-width: 500px) {
  .portfolio .portfolio-title-section .portfolio-title {
    font-size: 2rem;
    width: 320px;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-grid .portfolio-project {
  color: #fff;
  text-decoration: none;
}
.portfolio-grid .portfolio-project img {
  width: 100%;
  border-radius: 0.5rem;
  pointer-events: none;
}
.portfolio-grid .portfolio-project-details {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: underline;
}
.portfolio-grid .portfolio-project-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.portfolio-grid .portfolio-project p {
  font-family: "Instrumental Sans", system-ui, sans-serif;
}

.about-us {
  padding-block: 3rem;
  scroll-margin: 5rem;
}
.about-us .about-us-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
.about-us .about-us-title-section .about-us-title {
  font-size: 3rem;
  margin-bottom: 0.2em;
  max-width: 100%;
  width: 800px;
}
@media (max-width: 768px) {
  .about-us .about-us-title-section .about-us-title {
    width: 485px;
  }
}
@media (max-width: 500px) {
  .about-us .about-us-title-section .about-us-title {
    font-size: 2rem;
    width: 320px;
  }
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .about-us-grid {
    grid-template-columns: 1fr;
  }
}
.about-us-grid .about-us-feature img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  pointer-events: none;
}
.about-us-grid .about-us-feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.about-us-grid .about-us-feature p {
  font-family: "Instrumental Sans", system-ui, sans-serif;
}

.contact {
  padding-block: 5rem;
  scroll-margin: 5rem;
}
.contact .contact-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
.contact .contact-title-section .contact-title {
  font-size: 3rem;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .contact .contact-title-section .contact-title {
    width: 485px;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .contact .contact-title-section .contact-title {
    font-size: 2rem;
    width: 320px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 350px 3fr;
  gap: 2rem;
}
@media (max-width: 1150px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.contact-grid .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-grid .contact-info .button {
  margin-bottom: 1rem;
}
.contact-grid .contact-info .contact-info-link {
  color: #fff;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-form {
    display: flex;
    flex-direction: column;
  }
}
.contact-form .contact-form-input {
  border-radius: 0.5rem;
  border: 0;
  padding: 1rem;
  line-height: 1;
  font-size: 1rem;
  font-family: "Instrumental Sans", system-ui, sans-serif;
}
.contact-form .contact-form-input:focus {
  outline: 0;
}
.contact-form .contact-form-message {
  grid-column: span 3;
  resize: none;
}
.contact-form .contact-form-submit {
  border: 0;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  background-color: #ff7000;
  color: #fff;
  font-size: 1rem;
  border-radius: 0.5rem;
}

footer {
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid #fff;
}
footer a {
  color: #fff;
}
footer p {
  margin-top: 1rem;
}
footer p:first-child {
  margin-top: 0;
}

.legal {
  margin-block: 10rem;
}
.legal h1 {
  margin-bottom: 1rem;
}
.legal h2, .legal h3, .legal h4, .legal h5 {
  margin-top: 1rem;
}
.legal a {
  color: inherit;
}
.legal .last-updated {
  margin-top: 2rem;
}
.legal table {
  border-collapse: collapse;
  width: 100%;
  margin-block: 1rem;
}
.legal th, .legal td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.legal th {
  background-color: #f2f2f2;
  color: black;
}

.cta {
  background-color: #ff7000;
  text-align: center;
  padding-block: 6rem;
}
.cta p {
  font-size: 3rem;
  font-weight: 600;
}
.cta a {
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1120px) {
  .cta p {
    font-size: 2rem;
  }
  .cta a {
    font-size: 1.5rem;
  }
}
@media (max-width: 670px) {
  .cta a i {
    display: none;
  }
}
.cta a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
  transform: scaleX(0);
  transition: 0.35s ease-in-out;
}
.cta a:hover::after {
  transform: scale(1);
}

.cky-consent-container .cky-consent-bar {
    background-color: #121212e3 !important;
    backdrop-filter: blur(10px);
}