@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

html {
  scroll-behavior: smooth;
}

@view-transition{
  navigation:auto; 
}

/* Global Values */
:root {
  --primary-color: #1b1f23;
  --secondary-color: #ff4365;
  --terciary-color: #00d9c0;
  --white-color: #fff;
  --black-color: #000;
  --text-color: #72777e;
  --grey-text: #333;
  --light-text-color: #ebebeb;
  --border-color: #e7e7e7;
  --danger-color: #d80000;
  --success-color: #4BB543;

  --h1-font-size: 3rem; /* 48px - text-5xl */
  --h1-line-height: 1.1;

  --h2-font-size: 2.25rem; /* 36px - text-4xl */
  --h2-color: #001F3E; 
  --h2-line-height: 1.2;

  --h3-font-size: 1.875rem; /* 30px - text-3xl */
  --h4-font-size: 1.25rem; /* 20px - text-xl */
  --h5-font-size: 1.125rem; /* 18px - text-lg */
  --xl-font-size: 1.125rem; /* 18px - text-lg */
  --body-font-size: 1rem; /* 16px - text-base */
  --small-font-size: 0.875rem; /* 14px - text-sm */
  --xs-font-size: 0.75rem; /* 12px - text-xs */

  --primary-font-family: "Poppins", sans-serif;

  --lg-gap: 32px;
  --md-gap: 22px;
  --normal-gap: 16px;
  --xs-gap: 8px; 

  --xl-border-radius: 8px;
  --default-border-radius: 4px;

  --deafult-transition: 0.4s all ease-in-out;

  --container-max-width: 1270px;
}

@media (max-width: 1024px) {
  :root {
    --h1-font-size: 2.25rem; /* 36px - text-4xl */
    --h2-font-size: 1.875rem; /* 30px - text-3xl */
    --h3-font-size: 1.5rem; /* 24px - text-2xl */
    --h4-font-size: 1.125rem; /* 18px - text-lg */
  }
}

@media (max-width: 743px) {
  :root {
    --h1-font-size: 1.875rem; /* 30px - text-3xl */
    --h2-font-size: 1.5rem; /* 24px - text-2xl */
    --h3-font-size: 1.25rem; /* 20px - text-xl */
    --h4-font-size: 1.125rem; /* 18px - text-lg */
    --body-font-size: 0.875rem; /* 14px - text-sm */
  }
}

img {
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
  /* max-width: 100%; */
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}

.pointer-events-none {
  pointer-events: none;
  opacity: 0.5;
}

/* Layout */
body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font-family);
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  max-width: var(--container-max-width);
}

@media (max-width: 3840px) {
  .container {
    width: 65%;
  }
}
/* Desktop */
@media (max-width: 1920px) {
  .container {
    width: 75%;
  }
}
/* Laptop big */
@media (max-width: 1600px) {
  .container {
    width: 84%;
  }
}
/* Laptop small */
@media (max-width: 1366px) {
  .container {
    width: 87%;
  }
}
/* Tablet portrait */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}
/* Mobile */
@media (max-width: 743px) {
  .container {
    width: 90%;
  }
}

/* Whatsapp Button */
#whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  z-index: 99;
  animation: pulse 2s infinite;
}

picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
h1 {
  color: var(--white-color);
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: 700;
  word-break: break-word;
  text-wrap: balance;
}

/* Default h3 styling - use Tailwind classes in components instead */
h3:not([class*="text-"]) {
  font-size: var(--h3-font-size);
  font-weight: 600;
  line-height: 1.3;
}

/* Default h4 styling - use Tailwind classes in components instead */
h4:not([class*="text-"]) {
  font-size: var(--h4-font-size);
  font-weight: 600;
  line-height: 1.4;
  color: var(--grey-text);
}

/* Default h5 styling - use Tailwind classes in components instead */
h5:not([class*="text-"]) {
  font-size: var(--h5-font-size);
  font-weight: 500;
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: var(--deafult-transition);
  color: var(--secondary-color);
}

a:hover {
  cursor: pointer;
  color: var(--terciary-color);
}

/* Forms */
.form-card {
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--xl-border-radius);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white-color);
  margin-bottom: 50px;
}

input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  padding: 12px 16px;
  color: var(--text-color);
  font-size: var(--body-font-size);
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: var(--default-border-radius);
  font-family: var(--primary-font-family);
  transition: var(--deafult-transition);
}

select {
  max-height: 50px;
  height: 100%;
  background-image: url("/img/icons/down.svg");
  background-position: 95% center; /*Positioning*/
  background-repeat: no-repeat;
  transition: var(--deafult-transition);
}

label {
  color: var(--primary-color);
  font-size: var(--small-font-size);
  font-weight: 500;
  line-height: 1.25rem;
  margin-bottom: 5px;
  display: block;
}

.form-group {
  display: flex;
  gap: var(--lg-gap);
  margin-bottom: 32px;
}

.form-group div {
  width: 100%;
}

/* Alert */
.alert {
  padding: 10px 16px;
  display: block;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.25rem;
  margin-bottom: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: var(--small-font-size);
}

.alert-danger {
  background-color: rgb(220 38 38);
}

.alert-success {
  background-color: rgb(22 163 74);
}

.index-99 {
  z-index: 99;
}

@media (max-width: 743px) {
  .form-group {
    flex-direction: column;
  }
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border: 1px solid var(--black-color);
  box-shadow: 4px 4px 0px var(--black-color);
  transition: var(--deafult-transition);
  color: var(--white-color);
  font-size: var(--body-font-size);
  font-weight: 500;
  display: inline-block;
  height: fit-content;
  max-height: 48px;
  text-align: center;
  line-height: 1em;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 200px;
}

.primary-btn {
  background-color: var(--secondary-color);
}

.primary-btn:hover {
  background-color: var(--terciary-color);
  color: var(--white-color);
}

.secondary-btn {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--terciary-color);
  color: var(--white-color);
}

@media (max-width: 743px) {
  .btn {
    padding: 16px 20px;
  }
}

.pagination {
  max-width: var(--container-max-width);
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--normal-gap);
}

.pagination .controller {
  display: flex;
  gap: var(--md-gap);
  align-items: center;
}

.pagination .controller .btn {
  color: var(--primary-color);
}

.pagination .controller .btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  box-shadow: 4px 4px 0px var(--secondary-color);
}

@media(max-width: 743px) {
  .pagination {
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }
}

/*=== Utilities ===*/
.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gradient {
  background: linear-gradient(90deg, var(--terciary-color) 67.25%, #aa00ff 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  background-position: center center;
  animation: movinggradient ease-in 2s infinite alternate;
}

.required {
  color: var(--danger-color);
}

.small {
  font-size: var(--small-font-size);
}

.hidden {
  top: -100% !important;
  /* display: none; */
}

@media (max-width: 743px) {
  .hidden {
    top: -250% !important;
  }

  .heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--normal-gap);
  }
}

/*=== Header ===*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header .container {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .header .container > * {
  width: 33.3%;
} */

.header .logo {
  text-align: center;
}

.header .logo a {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header .logo img {
  transition: var(--deafult-transition);
  max-width: 100%;
  max-height: 50px;
}

.header .logo picture {
  height: auto;
  margin: 0;
  display: flex;
}

.header .header-right-menu ul {
  justify-content: flex-end;
}

.header ul {
  list-style: none;
  gap: var(--lg-gap);
}

.header ul li a {
  transition: var(--deafult-transition);
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: 600;
  text-transform: uppercase;
}

.header ul li a:hover {
  color: var(--secondary-color);
}

.menu-item {
  transition: var(--deafult-transition);
  display: flex;
  gap: 5px;
  align-items: center;
}

.toggle {
  position: relative;
  width: 32px;
  height: 32px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.toggle span {
  position: absolute;
  width: 8px;
  height: 2px;
  left: 10px;
  background: var(--black-color);
  border-radius: 4px;
  transition: var(--deafult-transition);
}

.toggle span:nth-child(1) {
  transform: translateY(-5px);
  width: 15px;
  left: 8px;
}

.toggle.active span:nth-child(1) {
  width: 15px;
  transform: translateY(0);
  transform: rotate(45deg);
  transition-delay: 0.125s;
}

.toggle span:nth-child(2) {
  transform: translateY(5px);
  width: 10px;
  left: 8px;
}

.toggle.active span:nth-child(2) {
  width: 15px;
  transform: translateY(0);
  transform: rotate(315deg);
  transition-delay: 0.125s;
}

.toggle.active span:nth-child(3) {
  transform: translateX(60px);
}


@media (max-width: 743px) {
  .header .container > * {
    width: 25%;
  }

  .header ul {
    gap: 20px;
  }

  .header .services {
    display: none;
  }

  .header .logo {
    width: 50%;
  }
}

/* Scroll Header */
.header.scroll {
  background-color: var(--white-color);
}

.header.scroll .container {
  border-bottom: 1px solid var(--border-color);
}

.header.scroll ul li a {
  color: var(--primary-color);
}

.header.scroll .menu-icon path {
  stroke: var(--primary-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: var(--normal-gap);
}

.social-icons img {
  transition: var(--deafult-transition);
}

.social-icons img:hover {
  transform: translateY(-5px);
}

/* MegaMenu */
.megamenu {
  position: fixed;
  top: 68px;
  width: 100%;
  border-radius: 0px 0 50px 50px;
  background-color: var(--white-color);
  z-index: 998;
  transition: 0.4s linear all;
}

@media (max-width: 743px) {
  .megamenu:not(.hidden) {
    display: block;
    overflow-y: scroll !important;
    overscroll-behavior: contain;
    height: 100%;
  }
}

.megamenu .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 50px;
  border-bottom: 1px solid var(--border-color);
}

.megamenu .social-icons {
  margin: 16px 0 0 0;
}

.megamenu ul {
  list-style: none;
}

.megamenu .nav-menu a {
  font-size: var(--h3-font-size);
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--deafult-transition);
}

.megamenu .nav-menu a:hover {
  background: linear-gradient(90deg, var(--terciary-color) 67.25%, #aa00ff 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.megamenu .services-list a {
  color: var(--grey-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: var(--small-font-size);
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--deafult-transition);
}

.megamenu .services-list a:hover {
  color: var(--secondary-color);
}

@media (max-width: 743px) {
  .megamenu .container {
    padding: 22px 0 60px;
    border-bottom: 0;
  }

  .megamenu .container > * {
    width: 100%;
  }

  .megamenu .container div:first-child {
    margin-bottom: 22px;
  }
  .megamenu .container div:last-child ul {
    margin-bottom: 22px;
  }
}

/* Home Hero */
.hero {
  background-color: var(--primary-color);
  position: relative;
}

.hero .container {
  min-height: 750px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  padding-top: 50px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  /* gap: var(--normal-gap); */
  width: calc(60% - 40px);
  align-items: flex-start;
  gap: var(--lg-gap);
}

.hero .hero-img {
  width: calc(40% - 40px);
}

.hero p {
  color: var(--light-text-color);
}

.hero .shadow {
  width: 100%;
  position: absolute;
  background: rgba(0, 217, 192, 0.06);
  filter: blur(87px);
  bottom: -10%;
  height: 200px;
  left: 0;
  pointer-events: none;
  animation: shadow 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero .container {
    gap: var(--lg-gap);
  }

  .hero .hero-text {
    width: calc(60% - 16px);
  }

  .hero .hero-img {
    width: calc(40% - 16px);
  }
}

@media (max-width: 743px) {
  .hero {
    padding-top: 0;
  }

  .hero .container {
    padding: 100px 0 32px;
  }

  .hero .hero-text {
    width: 100%;
    gap: var(--md-gap);
  }

  .hero .hero-img {
    width: 100%;
    order: -1;
  }
}

/* Clients logo scroller */
.clients-logo {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.clients-logo .scroller {
  margin-top: 0;
}

/* Servicios */
.servicios {
  padding: 80px 0;
}

.servicios .container {
  text-align: center;
}

.servicios a {
  color: inherit;
}

.servicios .btn.primary-btn {
  display: inline-block;
  color: var(--white-color);
}

.contenedor-servicios {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lg-gap);
}

.servicio {
  min-height: 480px;
  border-radius: 8px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--deafult-transition);
}

.servicio:hover {
  box-shadow: none;
}

.servicio h4 {
  opacity: 0.5;
  color: inherit;
}

.servicio img.left {
  position: absolute;
  left: -25%;
  max-width: 60%;
  bottom: 50%;
  transition: all 1.5s ease-in-out;
}

.servicio img.right {
  right: -25%;
  bottom: -10%;
  position: absolute;
  max-width: 60%;
  transition: all 1.5s ease-in-out;
}

.servicio:hover img.left {
  bottom: -10%;
}

.servicio:hover img.right {
  bottom: 50%;
}

/* Website */
.servicio.website {
  background-color: var(--text-color);
  color: var(--white-color);
}

/* Landing */
.servicio.landing {
  background-color: rgba(99, 118, 141, 0.5);
}

.servicio.landing img.left {
  bottom: -10%;
  max-width: 70%;
}

.servicio.landing img.right {
  bottom: -10%;
  max-width: 80%;
}

.landing:hover img.left {
  left: 12%;
}

.landing:hover img.right {
  right: 10%;
}

/* Tienda */
.servicio.tienda {
  background-color: var(--terciary-color);
}

.servicio.tienda img.left {
  bottom: -10%;
  max-width: 70%;
}

.servicio.tienda img.right {
  bottom: -10%;
  max-width: 80%;
}

.tienda:hover img.left {
  left: 12%;
}

.tienda:hover img.right {
  right: 10%;
}

/* WebApp */
.servicio.app {
  background-color: var(--primary-color);
  color: var(--white-color);
}

@media (max-width: 1024px) {
  .servicios {
    padding: 80px 0;
  }

  .contenedor-servicios {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .servicio {
    min-height: 350px;
    padding: 32px 0;
  }

  .servicio img.left {
    bottom: 20%;
  }

  .servicio:hover img.right {
    bottom: 20%;
  }

  .servicio.landing:hover img.right,
  .servicio.tienda:hover img.right {
    bottom: -10%;
  }
}

@media (max-width: 743px) {
  .servicios {
    padding: 50px 0;
  }

  .contenedor-servicios {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .servicio {
    min-height: 300px;
    padding: 32px 0;
  }

  .servicio img.left {
    bottom: 20%;
  }

  .servicio:hover img.right {
    bottom: 18%;
  }

  .landing:hover img.right {
    bottom: -10%;
  }

  .servicio.tienda:hover img.right {
    bottom: -10%;
  }
}

/* Nosotros */
.nosotros {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white-color);
}

.nosotros .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lg-gap);
  align-items: center;
}

.nosotros .about-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: var(--normal-gap);
  align-items: flex-start;
}

.nosotros h2 {
  color: var(--white-color);
}

.nosotros p {
  color: var(--light-text-color);
}

.nosotros .numbers-container {
  display: flex;
  gap: var(--lg-gap);
  justify-content: space-between;
}

.nosotros .number {
  text-align: left;
}

.nosotros .number p {
  font-size: var(--small-font-size);
}

@media (max-width: 743px) {
  .nosotros {
    padding: 50px 0;
  }

  .nosotros .container {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--lg-gap);
  }

  .nosotros .about-img {
    text-align: center;
  }

  .nosotros .number {
    flex-basis: 33.3%;
    text-align: left;
  }
}

/* Clientes */
.clientes {
  padding: 80px 0;
}

.clientes .container {
  /* display: grid; */
  /* grid-template-columns: repeat(2, 1fr); */
  gap: var(--lg-gap);
  text-align: center;
}

.clientes .clientes-text {
  display: flex;
  flex-direction: column;
  gap: var(--normal-gap);
  align-items: center;
}

.clientes .clientes-logo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lg-gap);
}

.clientes .logo {
  background-color: #fcfcfc;
  border: 1px solid var(--border-color);
  border-radius: var(--xl-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.clientes .logo img {
  max-height: 50px;
  max-width: 90%;
}

.clientes .diautos, .clientes .volvo {
  max-height: 70px !important;
  max-width: 100% !important;
}

@media (max-width: 1024px) {
  .clientes {
    padding: 80px 0;
  }

  .clientes .container {
    grid-template-columns: 100%;
  }

  .clientes .clientes-logo {
    grid-template-columns: repeat(2, 1fr);
  }

  .clientes .logo {
    padding: 32px 0;
    aspect-ratio: 1/1 !important;
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 743px) {
  .clientes {
    padding: 50px 0;
  }

  .clientes .container {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--lg-gap);
  }

  .clientes .logo {
    padding: 50px 0;
    width: 100%;
  }
  .clientes .logo img {
    max-height: 30px;
  }

  .clientes .diautos, .clientes .volvo {
    max-height: 50px !important;
  }
}

/* Portafolio */
.portafolio {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 80px 0;
}

.portafolio .btn {
  margin: 32px auto 0;
  width: fit-content;
}

.portafolios-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lg-gap);
  margin-top: 50px;
}

.portafolio h2 {
  color: var(--white-color);
}

@media (max-width: 1024px) {
  .portafolios-container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 743px) {
  .portafolio {
    padding: 50px 0;
  }

  .portafolios-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
}

/* Feautures */
.feautures {
  padding: 80px 0;
  text-align: center;
}

.feautures-container {
  display: flex;
  gap: var(--lg-gap);
  margin-top: 50px;
}

.feautures .swiper-wrapper {
  margin-bottom: 32px;
  height: auto !important;
}

.feautures .swiper-pagination-bullet {
  background-color: var(--primary-color) !important;
}

.feauture-card {
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--xl-border-radius);
  display: flex;
  flex-direction: column;
  gap: var(--xs-gap);
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--white-color);
  width: unset;
  height: 100%;
}

.feauture-card img {
  max-height: 32px;
}

.feauture-card p {
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .feautures-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 743px) {
  .feautures {
    padding: 50px 0;
    margin-bottom: 0px;
  }

  .feautures-container {
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .feauture-card {
    width: 100%;
    padding: 32px 22px;
    gap: 10px;
  }

  .feauture-card img {
    max-height: 45px;
  }

  .feauture-card p {
    flex-grow: unset;
  }
}

/* CTA */
.cta {
  position: relative;
  height: auto;
}

.cta h2 {
  color: var(--white-color);
}

.cta .cta-image {
  max-width: 90%;
  right: 0;
  margin: 0 0 0 auto;
  z-index: 0;
}

.cta .cta-body {
  padding: 50px 0;
  max-width: 90%;
  margin: -14% 0 0 0;
  background-color: var(--primary-color);
  z-index: 3;
  position: relative;
}

.cta-body .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--lg-gap);
  justify-content: space-between;
}

.cta .cta-button {
  width: 200px;
  height: 200px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 200%;
  aspect-ratio: 1/1;
  gap: 20px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  transition: var(--deafult-transition);
  font-weight: 700;
  text-transform: uppercase;
}

.cta .cta-button:hover {
  background-color: var(--terciary-color);
}

@media (max-width: 1024px) {
  .cta .cta-body {
    padding: 50px 0;
  }

  .cta-body .container {
    gap: var(--lg-gap);
  }

  .cta .cta-button {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 743px) {
  .cta-image img {
    height: 300px;
    object-fit: cover;
  }

  .cta .cta-body {
    padding: 50px 0;
    flex-direction: column;
  }

  .cta-body .container {
    gap: var(--lg-gap);
  }
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.item-galeria {
  min-height: 450px;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 22px;
  padding-left: 22px;
}

.item-galeria h3 {
  font-size: var(--h4-font-size);
}

.item-galeria h4 {
  font-size: var(--xl-font-size);
  color: var(--white-color);
}

.servicio-1 {
  background-image: url("/img/gallery_footer/la_percha.jpg");
  background-size: cover;
  background-position: center center;
}

.servicio-2 {
  background-image: url("/img/gallery_footer/creamigas.jpg");
  background-size: cover;
  background-position: center center;
}

.servicio-3 {
  background-image: url("/img/gallery_footer/capitol.jpg");
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1024px) {
  .item-galeria {
    min-height: auto;
    aspect-ratio: 1/1;
    width: auto;
  }
}

@media (max-width: 743px) {
  .galeria {
    grid-template-columns: repeat(1, 1fr);
  }

  .item-galeria {
    min-height: 350px;
    aspect-ratio: 1/1;
  }
}

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

.footer .logo {
  max-width: 160px;
}

.footer .copyright {
  color: var(--light-text-color);
}

.footer p,
.footer a {
  color: var(--light-text-color);
  transition: var(--deafult-transition);
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer .col {
  display: flex;
  flex-direction: column;
  gap: var(--normal-gap);
}

.footer .company-info {
  flex-basis: 25%;
  gap: var(--normal-gap);
}

.footer .footer-btn {
  padding: 14px 32px;
  background-color: var(--text-color);
  display: block;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--deafult-transition);
  font-size: var(--small-font-size);
  max-width: 200px;
  border-radius: 200px;
}

.footer .footer-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.footer h4 {
  font-size: var(--h5-font-size);
  color: var(--white-color);
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: var(--body-font-size);
}

@media (max-width: 1024px) {
  .footer .company-info {
    flex-basis: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 743px) {
  .footer {
    padding: 50px 0;
  }

  .footer .footer-btn {
    max-width: 100%;
  }

  .footer .col {
    margin-bottom: 32px;
    width: 100%;
  }

  .footer .col:last-child {
    margin-bottom: 0;
  }
}

/**Slider**/
.swiper-container {
  max-height: 100%;
}

.swiper-pagination-bullet {
  width: 55px !important;
  height: 4px !important;
  border-radius: 0 !important;
  background-color: var(--white-color) !important;
}

@media (max-width: 743px) {
  .swiper-pagination-bullet {
    width: 40px !important;
  }
}

.swiper-slide {
  margin-bottom: 50px;
  flex-grow: 1;
  height: auto !important;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: 100% !important;
}

@media (max-width: 743px) {
  .swiper-slide {
    margin-bottom: 32px;
  }
}

/* Accordeon */
.faq-accordeon {
  max-width: 100%;
  border-bottom: 2px solid #b8b8b8;
  cursor: pointer;
  margin-bottom: -16px;
}

.faq-accordeon h4 {
  font-size: var(--body-font-size);
}

.faq-accordeon:last-of-type {
  margin-bottom: 0;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 10px;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: 1.4s ease all;
}

.faq-accordeon.active .answer {
  max-height: 300px;
  animation: fade 0.6s ease-in-out;
  padding-bottom: 32px;
}

.faq-accordeon svg {
  transition: transform 0.3s ease-in;
  max-width: 22px;
}

.faq-accordeon.active svg {
  transform: rotate(90deg);
}

@media (max-width: 743px) {
  .question {
    padding: 22px 0;
  }
}

/*==== 404 ====*/
.hero.not-found .container {
  min-height: 100vh;
}

img.not-found {
  width: 500px;
  max-width: 90%;
}

@media (max-width: 743px) {
  .hero .container {
    padding: 100px 0 50px;
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes gradientAnimation {
  0% {
    background-size: 200%;
    background-position: top center;
  }
  50% {
    background-size: 100%;
    background-position: left center;
  }
  100% {
    background-size: 200%;
    background-position: top center;
  }
}

@keyframes movinggradient {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 60% 0%;
  }
}

@keyframes shadow {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Pricing Component Utilities */
.gap-1-5 {
  gap: 0.375rem; /* 6px */
}

.shadow-black-6 {
  box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.06);
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-linear-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-indigo-600 {
  --tw-gradient-from: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.to-violet-600 {
  --tw-gradient-to: #7c3aed;
}

.hover-bg-purple-700:hover {
  background-color: #6d28d9;
}

.py-1-5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}