@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap");
/* - colores - */
/* - animaciones imagenes headers - */
.animation-1 {
  overflow: hidden;
  transform: translatey(0px);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.animation-2 {
  overflow: hidden;
  transform: translatey(0px);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.animation-3 {
  overflow: hidden;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
[data-animation=fade] {
  opacity: 0;
  transform: translate(-100%);
  transition: 0.6s ease-in 0.3s;
  --opacity: 1;
  --transform: translate(0);
}

[data-animation=show] {
  opacity: 0;
  transform: scale(0);
  transition: 0.6s ease-in 0.3s;
  --opacity: 1;
  --transform: scale(1);
}

[data-animation=up] {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease-in 0.3s;
  --opacity: 1;
  --transform: translateY(0);
}

.unset {
  opacity: var(--opacity);
  transform: var(--transform);
}

.headerf {
  display: flex;
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 25px;
}
.headerf .div-upf {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0px;
}
.headerf .header-textf1 {
  margin: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 45px;
  width: 60%;
  height: 100px;
  text-align: right;
  position: relative;
  bottom: -110px;
  left: 12%;
}
.headerf .img-headerf {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  transform: rotate(10deg);
  bottom: 50px;
  left: -22%;
}
.headerf .background-headerf {
  position: relative;
  left: 12%;
  bottom: 30px;
  width: 100%;
  height: 100%;
}
.headerf .header-textf2 {
  margin: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 45px;
  width: 200px;
  height: 110px;
  text-align: left;
  position: relative;
  top: 180px;
  left: -22%;
}
.headerf .div-downf {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  bottom: 73px;
  margin-top: 70px;
  margin-left: 44px;
  margin-right: 44px;
}
.headerf .btn-social {
  position: relative;
  display: inline-block;
  width: 105px;
  height: 27px;
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #0F0F10;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.3s;
  border: 2px solid #0F0F10;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0;
}
.headerf .btn-social:hover {
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #F55A73;
  border: 2px solid #F55A73;
}
.headerf .btn-social:active {
  transform: scale(0.9);
}
.headerf .arrow-headerf {
  width: 40px;
  height: 40px;
}

.background-ctaf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0F0F10;
  color: #f3f3f3;
  border-radius: 25px;
  gap: 25px;
  margin-bottom: 100px;
  height: 345px;
  margin-left: 44px;
  margin-right: 44px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-ctaf:hover::before {
  content: "";
  width: 110%;
  height: 150%;
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  border-radius: 25px;
  background: linear-gradient(180deg, transparent, #F55A73, #966CCA, transparent);
  z-index: -1;
  transition: box-shadow 300ms;
  animation: rotation_481 5000ms infinite linear;
}

.background-ctaf:hover::after {
  content: "";
  position: absolute;
  background: #0F0F10;
  inset: 5px;
  border-radius: 25px;
  z-index: -1;
}

.ctaf-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 35px;
  width: 675px;
  margin: 0px;
  z-index: 1;
}

.ctaf-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  width: 670px;
  margin: 0px;
  z-index: 1;
}

.btn-ctaf {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background-color: #F55A73;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 670px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
  z-index: 1;
}

.btn-ctaf:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
  z-index: 1;
}

.btn-ctaf:hover:not(:disabled) {
  background: #F55A73;
  color: #f3f3f3;
  z-index: 1;
}

.btn-ctaf:disabled {
  cursor: auto;
  color: #f3f3f3;
  z-index: 1;
}

.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: 36% 25% 36%;
  grid-template-rows: repeat(6, 1fr);
  grid-template-areas: "gallery-img1 gallery-img3 gallery-img2", "gallery-img1 gallery-img3 gallery-img2", "gallery-img2 gallery-img3 gallery-img1", "gallery-img1 gallery-img3 gallery-img2", "gallery-img1 gallery-img3 gallery-img2", "gallery-img2 gallery-img4 gallery-img1";
  margin-left: 44px;
  margin-right: 44px;
  margin-bottom: 100px;
  height: 2785px;
}
.gallery .gallery-img1 {
  width: 100%;
  height: 314px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.gallery .gallery-img2 {
  width: 100%;
  height: 708px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.gallery .gallery-img3 {
  width: 100%;
  height: 470px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.gallery .gallery-img4 {
  width: 100%;
  height: 323px;
  border-radius: 25px;
  margin-bottom: 20px;
}

.cta-endf {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 550px;
  background-color: #966CCA;
}

.cta-textf {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #f3f3f3;
  width: 465px;
}

.btn-endf {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  width: 410px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-endf:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-endf:hover:not(:disabled) {
  background: #1b1b1d;
  color: #F55A73;
}

.btn-endf:disabled {
  cursor: auto;
  color: #1b1b1d;
}

.header-mobile {
  display: none;
}

/* - dispositivos ancho máximo 1240px - */
@media only screen and (max-width: 1240px) {
  /* - responsive fotografia - */
  .img-headerf {
    display: none;
  }
  .header-textf1 {
    display: none;
  }
  .background-headerf {
    display: none;
  }
  .header-textf2 {
    display: none;
  }
  .header-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-text {
    max-width: 90%;
    width: 380px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0F0F10;
    text-align: center;
    margin-bottom: 0px;
  }
  .header-img {
    width: 40%;
    position: relative;
    top: -30px;
    margin-bottom: 60px;
  }
  .background-ctaf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0F0F10;
    color: #f3f3f3;
    border-radius: 25px;
    gap: 25px;
    margin-bottom: 50px;
    height: 345px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .background-ctaf:hover::before {
    display: none;
  }
  .background-ctaf:hover::after {
    display: none;
  }
  .ctaf-title {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .ctaf-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .alinks {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-ctaf {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .btn-ctaf:active {
    box-shadow: none;
    transform: none;
  }
  .btn-ctaf:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .btn-ctaf:disabled {
    color: #f3f3f3;
  }
  .gallery {
    display: grid;
    gap: 0px;
    grid-template-columns: 90%;
    grid-template-rows: repeat(12, auto);
    grid-template-areas: "gallery-img1", "gallery-img1", "gallery-img2", "gallery-img1", "gallery-img1", "gallery-img2", "gallery-img2", "gallery-img2", "gallery-img1", "gallery-img2", "gallery-img2", "gallery-img1";
    margin-bottom: 20px;
    width: auto;
    height: auto;
    margin-right: 0px;
    overflow: hidden;
  }
  .gallery-img1 {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 20px;
    grid-area: gallery-img1;
  }
  .gallery-img2 {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 20px;
    grid-area: gallery-img2;
  }
  .gallery-img3 {
    display: none;
  }
  .gallery-img4 {
    display: none;
  }
  .alinksl {
    display: none;
  }
  .arrow-headerf {
    position: relative;
    left: 45%;
    right: 50%;
  }
  .cta-endf {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #966CCA;
  }
  .cta-textf {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    width: 100%;
  }
  .btn-endf {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #0F0F10;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endf:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endf:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endf:disabled {
    cursor: auto;
  }
}
.dark-mode .cards {
  background-color: rgb(24, 30, 75) 4;
}

.headerp {
  display: flex;
  flex-direction: column;
  margin-left: 44px;
  margin-right: 44px;
  margin-top: 100px;
}
.headerp .div-upp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0px;
}
.headerp .header-textp1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 60%;
  height: 122px;
  text-align: left;
  position: relative;
  left: 15%;
}
.headerp .img-ctap {
  width: 26%;
  height: auto;
  object-fit: fill;
  position: absolute;
  top: 85px;
  left: 36%;
}
.headerp .background-headerp {
  display: flex;
  position: relative;
  width: 100%;
  left: 0%;
  bottom: 3px;
}
.headerp .header-textp2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 60%;
  height: 122px;
  text-align: left;
  position: relative;
  right: 8%;
  top: 10px;
}
.headerp .div-downp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 210px;
  margin-bottom: 100px;
}
.headerp .btn-social {
  position: relative;
  display: inline-block;
  width: 105px;
  height: 27px;
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #0F0F10;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.3s;
  border: 2px solid #0F0F10;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0;
}
.headerp .btn-social:hover {
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #F55A73;
  border: 2px solid #F55A73;
}
.headerp .btn-social:active {
  transform: scale(0.9);
}
.headerp .arrow-headerf {
  width: 40px;
  height: 40px;
}

.packs-container {
  background-color: #966CCA;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pack {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.pack-rrss {
  width: 50%;
}

.pack-container {
  background-color: #f3f3f3;
  padding-left: 60px;
  padding-right: 60px;
  border-radius: 25px;
  margin-left: 40px;
  width: 26%;
  height: fit-content;
  color: #0F0F10;
  box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.25);
}

.pack-title {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
}

.pack-text {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.pack-text-down {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  margin-top: 60px;
  margin-bottom: 0px;
}

.pack-price {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.pack-btn {
  display: flex;
  justify-content: center;
  z-index: 1;
  text-decoration: none;
  padding-right: 0px;
}

.packs-container2 {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pack2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.pack-id {
  width: 45%;
  margin-left: 0px;
}

.background-ctap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0F0F10;
  color: #f3f3f3;
  border-radius: 25px;
  gap: 25px;
  margin-bottom: 100px;
  height: 345px;
  margin-left: 44px;
  margin-right: 44px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-ctap:hover::before {
  content: "";
  width: 110%;
  height: 150%;
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  border-radius: 25px;
  background: linear-gradient(180deg, transparent, #F55A73, #966CCA, transparent);
  z-index: -1;
  transition: box-shadow 300ms;
  animation: rotation_481 5000ms infinite linear;
}

.background-ctap:hover::after {
  content: "";
  position: absolute;
  background: #0F0F10;
  inset: 5px;
  border-radius: 25px;
  z-index: -1;
}

.ctap-title {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 35px;
  text-align: left;
  width: 680px;
  margin: 0px;
  z-index: 1;
}

.ctap-text {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  width: 680px;
  margin: 0px;
  z-index: 1;
}

.btn-ctap {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background-color: #F55A73;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 660px;
  margin-right: 20px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
  z-index: 1;
}

.btn-ctap:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
  z-index: 1;
}

.btn-ctap:hover:not(:disabled) {
  background: #F55A73;
  color: #f3f3f3;
  z-index: 1;
}

.btn-ctap:disabled {
  cursor: auto;
  color: #f3f3f3;
  z-index: 1;
}

.proyectos-background {
  position: relative;
  background-image: url(../assets/img/Deg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  color: #f3f3f3;
  padding-bottom: 50px;
  margin-bottom: 0px;
  overflow: hidden;
  z-index: 0;
}
.proyectos-background .proyectos {
  padding-top: 50px;
  padding-bottom: 100px;
  margin-left: 44px;
  margin-right: 44px;
}
.proyectos-background .proyectos-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}
.proyectos-background .proyectos-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
.proyectos-background .proyectos-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.proyectos-background .proyect1, .proyectos-background .proyect2, .proyectos-background .proyect3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  color: #f3f3f3;
  gap: 45px;
  padding: 25px;
  margin-bottom: 30px;
}
.proyectos-background .project-img {
  display: flex;
  object-fit: contain;
  width: 100%;
  height: 313px;
  border-radius: 25px;
  object-fit: cover;
}
.proyectos-background .title-project {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.proyectos-background .text-project {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 40px;
  width: 650px;
}
.proyectos-background .btn-project {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background-color: #f3f3f3;
  color: #0F0F10;
  border: none;
  padding: 10px;
  width: 650px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}
.proyectos-background .btn-project:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}
.proyectos-background .btn-project:hover:not(:disabled) {
  background: #F55A73;
  color: #f3f3f3;
}
.proyectos-background .btn-project:disabled {
  cursor: auto;
  color: #f3f3f3;
}

.cards {
  background-color: #f3f3f3;
  padding-top: 80px;
  padding-bottom: 100px;
}
.cards .card-service {
  margin-left: 44px;
  margin-right: 44px;
}
.cards .title-service {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 100px;
}
.cards .cards-upp {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 25px;
  position: relative;
}
.cards .card1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0F0F10;
  border-radius: 25px;
  width: 325px;
  color: #f3f3f3;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cards .card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 150px;
  width: 223px;
  z-index: 1;
}
.cards .card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  width: 275px;
  margin-bottom: 20px;
  z-index: 1;
}
.cards .card1:hover::before {
  content: "";
  width: 200%;
  height: 50%;
  position: absolute;
  top: 60px;
  left: -160px;
  right: 0px;
  bottom: 0px;
  border-radius: 25px;
  background: linear-gradient(180deg, transparent, #F55A73, #966CCA, transparent);
  z-index: -1;
  transition: box-shadow 300ms;
  animation: rotation_481 5000ms infinite linear;
}
@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.cards .card1:hover::after {
  content: "";
  position: absolute;
  background: #0F0F10;
  inset: 5px;
  border-radius: 25px;
}
.cards .card2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 325px;
  border: 2px solid #0F0F10;
  border-radius: 25px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cards .card2:hover::before {
  content: "";
  width: 200%;
  height: 50%;
  position: absolute;
  top: 60px;
  left: -160px;
  right: 0px;
  bottom: 0px;
  border-radius: 25px;
  background: linear-gradient(180deg, transparent, #F55A73, #966CCA, transparent);
  z-index: -1;
  transition: box-shadow 300ms;
  animation: rotation_481 5000ms infinite linear;
}
.cards .card2:hover::after {
  content: "";
  position: absolute;
  background: #f3f3f3;
  inset: 5px;
  border-radius: 25px;
}
.cards .cards-downp {
  display: flex;
  gap: 25px;
  margin-bottom: 0px;
}

.cta-textp {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #f3f3f3;
  width: 590px;
}

.btn-endp {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 500px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-endp:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-endp:hover:not(:disabled) {
  background: #1b1b1d;
  color: #F55A73;
}

.btn-endp:disabled {
  cursor: auto;
  color: #1b1b1d;
}

.headerm {
  display: flex;
  flex-direction: column;
  margin-left: 44px;
  margin-right: 44px;
  margin-top: 100px;
}
.headerm .div-upm {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0px;
}
.headerm .header-textm1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 300px;
  height: 122px;
  text-align: left;
  position: absolute;
  top: 210px;
  left: 22%;
}
.headerm .img-ctam {
  width: 25%;
  position: absolute;
  top: 22%;
  left: 36%;
}
.headerm .background-ctam {
  position: relative;
  width: 58%;
  top: -10px;
  right: -25px;
  bottom: 3px;
}
.headerm .header-textm2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 480px;
  height: 122px;
  text-align: left;
  position: absolute;
  top: 214px;
  right: 8%;
}
.headerm .div-downm {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 126px;
  margin-bottom: 100px;
}
.headerm .btn-social {
  position: relative;
  display: inline-block;
  width: 105px;
  height: 27px;
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #0F0F10;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.3s;
  border: 2px solid #0F0F10;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0;
}
.headerm .btn-social:hover {
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #F55A73;
  border: 2px solid #F55A73;
}
.headerm .btn-social:active {
  transform: scale(0.9);
}
.headerm .arrow-headerf {
  width: 40px;
  height: 40px;
}

.proyectos-background {
  background-color: #f3f3f3;
}
.proyectos-background .proyectos {
  padding-top: 50px;
  padding-bottom: 100px;
  margin-left: 44px;
  margin-right: 44px;
}
.proyectos-background .proyectos-containerm {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 50px;
}
.proyectos-background .proyectos-divup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.proyectos-background .proyectos-titlem {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  width: 900px;
  margin-top: 25px;
  margin-bottom: 0px;
}
.proyectos-background .proyectos-textm {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
  width: 45%;
}
.proyectos-background .proyect1m, .proyectos-background .proyect2m, .proyectos-background .proyect3m {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  color: #f3f3f3;
  gap: 45px;
  padding: 25px;
  margin-bottom: 30px;
}
.proyectos-background .project-imgm {
  display: flex;
  object-fit: contain;
  width: 100%;
  height: 313px;
  object-fit: cover;
  border-radius: 25px;
}
.proyectos-background .title-project {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.proyectos-background .text-project {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 650px;
}
.proyectos-background .btn-project {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background-color: #f3f3f3;
  color: #0F0F10;
  border: none;
  padding: 10px;
  width: 650px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}
.proyectos-background .btn-project:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}
.proyectos-background .btn-project:hover:not(:disabled) {
  background: #F55A73;
  color: #f3f3f3;
}
.proyectos-background .btn-project:disabled {
  cursor: auto;
  color: #f3f3f3;
}

.cards {
  background-color: #f3f3f3;
  padding-bottom: 100px;
}
.cards .card-service {
  margin-left: 44px;
  margin-right: 44px;
}
.cards .title-service {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 100px;
}
.cards .cards-up {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 25px;
  position: relative;
}
.cards .card1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0F0F10;
  border-radius: 25px;
  width: 325px;
  color: #f3f3f3;
  padding-left: 20px;
}
.cards .card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 150px;
  width: 223px;
}
.cards .card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  width: 275px;
  margin-bottom: 20px;
}
.cards .card2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 325px;
  border: 2px solid #0F0F10;
  border-radius: 25px;
  padding-left: 20px;
}

.cta-textm {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #f3f3f3;
  width: 790px;
}

.btn-endm {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 650px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-endm:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-endm:hover:not(:disabled) {
  background: #1b1b1d;
  color: #F55A73;
}

.btn-endm:disabled {
  cursor: auto;
  color: #1b1b1d;
}

.headerd {
  display: flex;
  flex-direction: column;
  margin-left: 44px;
  margin-right: 44px;
  margin-top: 100px;
  height: 550px;
}
.headerd .div-upd {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0px;
}
.headerd .header-textd1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 320px;
  height: 122px;
  text-align: right;
  position: absolute;
  top: 22%;
  left: 18%;
}
.headerd .img-ctad {
  width: 21%;
  position: absolute;
  top: 28%;
  left: 40%;
  transform: rotate(-5deg);
}
.headerd .background-ctad {
  position: relative;
  width: 40%;
  top: -70px;
  left: 10px;
}
.headerd .header-textd2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 50px;
  width: 400px;
  height: 122px;
  text-align: left;
  position: absolute;
  top: 34%;
  right: 10%;
}
.headerd .div-downd {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  top: -141px;
}
.headerd .btn-social {
  position: relative;
  display: inline-block;
  width: 105px;
  height: 27px;
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #0F0F10;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.3s;
  border: 2px solid #0F0F10;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0;
}
.headerd .btn-social:hover {
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #F55A73;
  border: 2px solid #F55A73;
}
.headerd .btn-social:active {
  transform: scale(0.9);
}
.headerd .arrow-headerf {
  width: 40px;
  height: 40px;
}

.proyectos-recientes {
  background-color: #f3f3f3;
  height: auto;
}

.projects-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 100px;
  gap: 45px;
}

.card-project1, .card-project2, .card-project3, .card-project4 {
  border-radius: 25px;
  border: solid #0F0F10 2px;
  width: 314px;
  height: 347px;
  transition: transform 0.25s ease;
}

.card-project1:hover,
.card-project2:hover,
.card-project3:hover,
.card-project4:hover {
  transform: translateY(-8px);
}

.card-project1 {
  background: url(../assets/img/landing\ behance\ 1.jpg) no-repeat center center;
  background-size: cover;
}

.card-project2 {
  background: url(../assets/img/landing-sarava.jpg) no-repeat center center;
  background-size: cover;
}

.card-project3 {
  background: url(../assets/img/landing-fexmin.jpg) no-repeat center center;
  background-size: cover;
}

.card-project4 {
  background: url(../assets/img/desktop-ui\ 1.jpg) no-repeat center center;
  background-size: cover;
}

.recientes-container {
  padding-top: 50px;
  padding-left: 65px;
}

.recientes-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
}

.recientes-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  width: 550px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.proyectos-background {
  background-color: #f3f3f3;
}
.proyectos-background .proyectos {
  padding-top: 50px;
  padding-bottom: 100px;
  margin-left: 44px;
  margin-right: 44px;
}
.proyectos-background .proyectos-containerd {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 50px;
}
.proyectos-background .proyectos-titled {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-top: 25px;
  margin-bottom: 0px;
}
.proyectos-background .proyectos-textd {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
  width: 550px;
}
.proyectos-background .proyect1d, .proyectos-background .proyect2d, .proyectos-background .proyect3d {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  color: #f3f3f3;
  gap: 45px;
  padding: 25px;
  margin-bottom: 30px;
}
.proyectos-background .project-imgd {
  display: flex;
  width: 100%;
  height: 313px;
  object-fit: contain;
  object-fit: cover;
  border-radius: 25px;
}
.proyectos-background .title-project {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.proyectos-background .text-project {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 650px;
}
.proyectos-background .btn-project {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background-color: #f3f3f3;
  color: #0F0F10;
  border: none;
  padding: 10px;
  width: 650px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}
.proyectos-background .btn-project:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}
.proyectos-background .btn-project:hover:not(:disabled) {
  background: #F55A73;
  color: #f3f3f3;
}
.proyectos-background .btn-project:disabled {
  cursor: auto;
  color: #f3f3f3;
}

.cards {
  background-color: #f3f3f3;
  padding-bottom: 100px;
}
.cards .card-service {
  margin-left: 44px;
  margin-right: 44px;
}
.cards .title-service {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 100px;
}
.cards .cards-up {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
.cards .card1d {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0F0F10;
  border-radius: 25px;
  width: 325px;
  color: #f3f3f3;
  padding-left: 20px;
}
.cards .card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 150px;
}
.cards .card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  width: 260px;
  margin-bottom: 20px;
}
.cards .card2d {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 325px;
  border: 2px solid #0F0F10;
  border-radius: 25px;
  padding-left: 20px;
}

.cta-textd {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #f3f3f3;
  width: 500px;
}

.btn-endd {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 450px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-endd:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-endd:hover:not(:disabled) {
  background: #1b1b1d;
  color: #F55A73;
}

.btn-endd:disabled {
  cursor: auto;
  color: #1b1b1d;
}

.contacto {
  display: flex;
  margin: 50px 44px;
}
.contacto .container-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F55A73;
  color: #f3f3f3;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-top: 15%;
  padding-bottom: 15%;
  width: 50%;
}
.contacto .contact-title {
  font-family: "Inter";
  font-size: 40px;
  text-align: center;
  width: 415px;
  margin-bottom: 16px;
}
.contacto .contact-text {
  font-family: "Inter";
  font-size: 20px;
  text-align: center;
  width: 350px;
  margin: 0px;
}
.contacto .contact-img {
  margin-top: 10%;
  width: 28%;
}

.cta-contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #0F0F10;
  color: #f3f3f3;
  height: auto;
  font-family: "Inter";
  font-size: 16px;
  padding: 3px;
  border-radius: 0 15px 15px 0px;
  position: relative;
  bottom: 22%;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #f3f3f3;
  color: #0F0F10;
  padding-top: 15%;
  padding-bottom: 15%;
  width: 50%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.form .form-title {
  font-family: "Inter";
  font-size: 40px;
  margin-left: 25%;
  margin-top: 15px;
  margin-bottom: 25px;
}

.form .form-text {
  font-family: "Inter";
  font-size: 20px;
  margin-left: 25%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.form .form-text {
  font-family: "Inter";
  font-size: 16px;
  margin-left: 25%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.form .form-input {
  font-family: "Inter";
  font-size: 16px;
  width: 450px;
  height: 32px;
  margin-left: 25%;
  border-radius: 20px;
  outline: none;
}

.form .form-input:hover {
  box-shadow: 0 0 0 0.1rem "Inter";
}

.form .form-input:focus {
  box-shadow: 0 0 0 0.2rem "Inter";
}

.form .form-inputm {
  font-family: "Inter";
  font-size: 16px;
  width: 450px;
  height: 100px;
  margin-left: 25%;
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 20px;
  outline: none;
}

.form .form-inputm:hover {
  box-shadow: 0 0 0 0.15rem "Inter";
}

.form .form-inputm:focus {
  box-shadow: 0 0 0 0.3rem "Inter";
}

.form .btn {
  display: flex;
  flex-direction: row;
  margin-left: 25%;
  gap: 25px;
}

.form .send, .form .erase {
  width: 160px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0F0F10;
  opacity: 0.5;
  z-index: 999;
  display: none;
}

.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  font-family: "Inter";
  font-size: 24px;
  color: #0F0F10;
  transform: translate(-50%, -50%);
  background-color: #f3f3f3;
  padding: 20px;
  border: 10px solid #0F0F10;
  border-radius: 25px;
  box-shadow: 0 4px 8px #F55A73;
  z-index: 9999;
}

.popup-img {
  display: flex;
  width: 15%;
  justify-content: center;
  align-items: center;
}

.popup-alerta {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  font-family: "Inter";
  font-size: 24px;
  color: #0F0F10;
  transform: translate(-50%, -50%);
  background-color: #f3f3f3;
  padding: 20px;
  border: 10px solid #0F0F10;
  border-radius: 25px;
  box-shadow: 0 4px 8px #F55A73;
  z-index: 9999;
}

/* - estilos header - */
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
  margin-left: 44px;
  margin-right: 44px;
}

.header-mb {
  display: none;
}

.social-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.cta-home {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
}

.title-home {
  width: 480px;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 38px;
}

.dot {
  color: #966CCA;
}

.titletext-home {
  width: 400px;
  margin: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 19px;
}

.header-btn {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  width: 400px;
  padding-top: 20px;
  padding-left: 0px;
  margin-left: 0px;
}

.btn-socialmedia {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #000000;
  background-color: #000000;
  box-shadow: 0px 4px 0px 0px #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-socialmedia:active {
  box-shadow: 0px 0px #000000;
  transform: translate(0px, 1px);
}

.btn-github {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #000000;
  background-color: #F55A73;
  box-shadow: 0px 5px 0px 0px #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-github:active {
  box-shadow: 0px 0px #000000;
  transform: translate(0px, 1px);
}

.icons-header {
  position: relative;
  margin-top: 50px;
}

.cellphone {
  position: absolute;
  width: 40%;
  top: 90px;
  left: 100px;
  transform: translate(-50%, -50%);
}

.camera {
  position: absolute;
  width: 45%;
  top: -40px;
  left: 260px;
  transform: rotate(10deg);
}

.web {
  position: absolute;
  width: 32%;
  top: 220px;
  left: 380px;
  transform: translate(-50%, -50%);
}

.background {
  display: flex;
  width: 100%;
  margin-top: 0%;
}

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

/* - estilos planes - */
.plans {
  background-image: url(../assets/img/Deg3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0px;
  color: #f3f3f3;
  padding-left: 10%;
  padding-right: 10%;
}

.plans-sup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plans-up {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48%;
  margin-top: 100px;
  margin-bottom: 50px;
}

.plans-second-line {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 10px;
  letter-spacing: 0.5px;
}

.plans-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 0px;
  letter-spacing: 0.5px;
  width: 520px;
}

.plans-icon {
  width: 130px;
  height: 130px;
  transform: rotate(30deg);
}

.plans-cards {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 70px;
}

.plans-card1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 360px;
  border: 2px solid #f3f3f3;
  border-radius: 25px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plans-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0px;
  padding-top: 20px;
  z-index: 1;
}

.plans-card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
  padding-left: 0px;
  padding-right: 10px;
  z-index: 1;
}

.plans-card-list {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 1;
  z-index: 1;
  gap: 0px;
}

.plans-price {
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 60px;
  padding-left: 0px;
  padding-right: 10px;
  z-index: 1;
}

.plans-btn {
  display: flex;
  justify-content: center;
  z-index: 1;
  text-decoration: none;
  padding-right: 20px;
}

.plans-contact {
  background-color: #F55A73;
  border: none;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  width: 98%;
  height: 36px;
  border-radius: 10px;
  color: #f3f3f3;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
  margin-bottom: 50px;
}

.plans-contact:active {
  color: white;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.plans-contact:hover:not(:disabled) {
  background: #F68E94;
  color: white;
}

.plans-contact:disabled {
  cursor: auto;
  color: #F68E94;
}

.plans-end {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 50px;
  padding-right: 15%;
}

.plans-icon2 {
  width: 160px;
}

.plans-contact2 {
  background-color: #F55A73;
  border: none;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  width: 98%;
  height: 36px;
  border-radius: 10px;
  color: #f3f3f3;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
  margin-bottom: 50px;
}

.plans-contact2:active {
  color: white;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.plans-contact2:hover:not(:disabled) {
  background: #F68E94;
  color: white;
}

.plans-contact2:disabled {
  cursor: auto;
  color: #F68E94;
}

/* - estilos sobre nosotros - */
.about {
  background-color: #0F0F10;
  color: #f3f3f3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 40px;
  width: 100%;
}

.about-right {
  padding-left: 100px;
  padding-right: 100px;
}

.titles-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-top: 0px;
  padding-bottom: 20px;
}

.about-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 25px;
}

.about-down {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #0F0F10;
  color: #f3f3f3;
}

.exp-titleup {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
}

.container-exp {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 100px;
  padding-bottom: 80px;
}

.exp-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 0px;
}

.exp-data {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 10px;
}

.cv {
  text-decoration: none;
  outline: none;
  margin-right: 30px;
}

.portafolio {
  width: auto;
}

.btn-portfolio {
  background-color: #d6575d;
  border: none;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  width: 60%;
  margin-bottom: 30px;
  height: 50px;
  border-radius: 10px;
  color: #f3f3f3;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-portfolio:active {
  color: white;
  box-shadow: 0 0.4rem #000000;
  transform: translateY(0.2rem);
}

.btn-portfolio:hover:not(:disabled) {
  background: #F68E94;
  color: white;
}

.btn-portfolio:disabled {
  cursor: pointer;
  color: #F68E94;
}

.span {
  color: #F55A73;
}

/* - estilos servicios - */
.services {
  position: relative;
  background-image: url(../assets/img/Deg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  color: #f3f3f3;
  padding-bottom: 100px;
  margin-bottom: 0px;
  overflow: hidden;
  z-index: 0;
}

.ballons-front {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.ballons-front, .ballons, .ball-1, .ball-2, .ball-3 {
  pointer-events: none;
}

.ballons-back {
  position: absolute;
  z-index: -1;
}

.ballons-back,
.ball-4, .ball-5, .ball-6, .ball-7, .ball-8, .ball-9 {
  pointer-events: none;
}

.ball-1 {
  position: relative;
  left: 1390%;
}

.ball-2 {
  position: absolute;
  left: 130%;
  top: 740%;
}

.ball-3 {
  position: absolute;
  left: 1600%;
  top: 300%;
}

.ball-4 {
  position: relative;
  bottom: 0%;
  left: 180%;
}

.ball-5 {
  position: absolute;
  left: 460%;
  bottom: 40%;
}

.ball-6 {
  position: absolute;
  left: 120%;
  bottom: 180%;
}

.ball-7 {
  position: absolute;
  left: -10%;
  bottom: 330%;
}

.ball-8 {
  position: absolute;
  left: 280%;
  bottom: 170%;
}

.ball-9 {
  position: absolute;
  left: 400%;
  bottom: 270%;
}

.services-title {
  display: flex;
  justify-content: center;
  margin: 0px;
  padding-top: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 100px;
}

.card {
  display: flex;
  flex-direction: row;
  color: #f3f3f3;
  position: relative;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
  border-radius: 25px;
  width: 608px;
  height: 344px;
  perspective: 1000px;
  z-index: 1;
}

.card-front:hover, .card-back:hover {
  box-shadow: 0px 0px 20px 1px #ffffff;
}

.card-inner {
  width: 608px;
  height: 344px;
  border-radius: 25px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  width: 608px;
  height: 344px;
  border-radius: 25px;
  position: absolute;
  backface-visibility: hidden;
}

.card-front {
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
}

.card-back {
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

.checkmark {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.checkmark-icon {
  padding-left: 0px;
  padding-top: 2px;
  width: 18px;
  height: 18px;
}

.card-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 36px;
  margin: 0px;
  padding-top: 10px;
  padding-left: 0px;
  padding-bottom: 50px;
}

.ul {
  padding: 0px;
}

.card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  padding-left: 15px;
}

.card-up {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.card-down {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.card-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
}

.card-right {
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.icon-card {
  width: 150px;
  height: 150px;
}

.icon-card2 {
  width: 150px;
  height: 150px;
  padding-left: 40px;
}

/* - slider clientes - */
.clients {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.div-client {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.clients1 {
  width: 75vw;
  height: auto;
  overflow: hidden;
  margin: auto;
  padding-bottom: 100px;
}

.client-title {
  display: flex;
  justify-content: center;
  margin: 0px;
  padding-top: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
}

.bar {
  width: 200px;
  height: 5px;
  background-color: #F55A73;
  margin-top: 6px;
  border-radius: 3px;
  margin-bottom: 100px;
}

.clients1 .container-client {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scroll 20s linear infinite;
  -webkit-animation: scroll 20s linear infinite;
  width: 2400px;
}

.clients1 .slide-client {
  width: 200px;
  padding-left: 20px;
  padding-right: 20px;
}

.clients1 .img-client {
  width: 100%;
}

@keyframes scroll {
  0% {
    -web-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -web-transform: translateX(-1200px);
    transform: translateX(-1200px);
  }
}
.img-client {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
}

/* - estilos CTA HOME  - */
.cta-end {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 550px;
  background-color: #966CCA;
}

.cta-text {
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #f3f3f3;
  letter-spacing: 2px;
}

.btn-end {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  padding: 10px;
  width: 560px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-end:active {
  color: white;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-end:hover:not(:disabled) {
  background: #1b1b1d;
  color: white;
}

.btn-end:disabled {
  cursor: auto;
  color: #1b1b1d;
}

.second-body {
  background-image: url(../assets/img/background-sandbox.webp);
  background-position: center;
  background-size: cover;
  margin-top: 15px;
  position: relative;
}

.layout-sandbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 25px 25px 25px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* - m a i n  c a r d - */
.main-cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px 0px 30px 25px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Inter";
  color: #f3f3f3;
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 25px;
  height: 193px;
  width: 445px;
  position: relative;
  z-index: 2;
}

.main-cta:hover {
  box-shadow: 0px 0px 20px 1px #966CCA;
}

.content {
  flex-direction: column;
}

.dot-sandbox {
  color: #966CCA;
}

.h1-sandbox {
  width: 60%;
  margin-bottom: 5px;
  padding-bottom: 6px;
}

.sandbox-btn {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  width: 180px;
  padding-top: 0px;
  padding-left: 0px;
  margin-left: 0px;
}

.btn-sandbox {
  background-color: #F55A73;
  border: none;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  width: 98%;
  height: 36px;
  border-radius: 10px;
  color: #f3f3f3;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-sandbox:hover {
  background-color: #f38d9e;
}

.btn-sandbox:active {
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.main-image {
  position: absolute;
  width: auto;
  height: 200px;
  top: 5%;
  left: 16%;
  z-index: 1;
}

/* - cards - */
.card-sandbox {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.list-services {
  list-style-type: none;
  text-decoration: none;
}

.services-sandbox {
  padding: 0px;
  font-size: 16px;
  font-family: "Inter";
  padding-top: 12%;
}

.h2-sandbox-title {
  width: 90%;
  margin-bottom: 30%;
  font-family: "Inter";
  font-size: 16px;
}

.about-studio {
  width: 80%;
  font-size: 14px;
  font-family: "Inter";
}

.card-sandbox-1, .card-sandbox-2 {
  width: 200px;
  padding: 10px 0px 15px 25px;
  transition: transform 0.25s ease;
}

.card-sandbox-1:hover, .card-sandbox-2:hover {
  transform: translateY(-8px);
}

.card-sandbox-1 {
  background-color: #0F0F10;
  color: #f3f3f3;
  border-radius: 25px;
}

.card-sandbox-2 {
  border: solid #f3f3f3 2px;
  border-radius: 25px;
  color: #f3f3f3;
}

/* - partners - */
.partners {
  background-color: #f3f3f3;
  width: 473px;
  border-radius: 25px;
  height: 25%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.h2-partners-title {
  width: 100%;
  font-family: "Inter";
  font-size: 16px;
  padding-top: 15px;
  margin-bottom: 0px;
}

/* - carrusel - */
.clients1-sandbox {
  height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 15px;
}

.clients1-sandbox .container-client-sandbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 2400px;
  flex-shrink: 0;
  animation: scroll 20s linear infinite;
  -webkit-animation: scroll 20s linear infinite;
}

.clients1-sandbox .slide-client-sandbox {
  width: 200px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients1-sandbox .img-client-sandbox {
  width: 80%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

/* - keyframes - */
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1200px);
    transform: translateX(-1200px);
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1200px);
    transform: translateX(-1200px);
  }
}
/* - portfolio - */
.h2-portfolio-title {
  position: relative;
  display: inline-block;
  font-family: "Inter";
}

.h2-portfolio-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #966CCA;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-sandbox:hover .h2-portfolio-title::after {
  transform: scaleX(1);
}

.portfolio-sandbox {
  display: block;
  text-decoration: none;
  color: #0F0F10;
  overflow: hidden;
  border-radius: 25px;
  height: 125px;
  margin: 0px 20px 20px 20px;
}

.content-portfolio {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #f3f3f3;
  border-radius: 25px;
  height: 125px;
}

.icon-portfolio {
  width: 20px;
  height: 20px;
}

.last-project {
  display: block;
  text-decoration: none;
  border-radius: 25px;
  overflow: hidden;
  height: 280px;
  margin: 0px 20px 20px 20px;
  position: relative;
}

.last-porto {
  background-image: url(../assets/img/last-project.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 25px;
  height: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.last-project:hover .last-porto {
  transform: scale(1.2);
}

.last-banner {
  position: absolute;
  top: 4%;
  left: 3%;
  z-index: 2;
}

.content-last {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f3f3f3;
  background-color: #966CCA;
  padding: 10px 10px 10px 10px;
  border-radius: 50px;
  width: fit-content;
  text-decoration: none;
  gap: 6px;
}

.text-last {
  font-family: "Inter";
  font-size: 18px;
}

.circle-porto {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #f3f3f3;
}

/* - CALL TO ACTION - */
.cta-end-sandbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 34%;
  background-color: #966CCA;
  border-radius: 25px;
  margin: 0px 20px 20px 20px;
}

.cta-textd-sandbox {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  width: 40%;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #f3f3f3;
}

.btn-endd-sandbox {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background-color: #1b1b1d;
  color: #f3f3f3;
  border: none;
  padding: 10px 36px;
  border-radius: 10px;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-endd-sandbox:active {
  color: #F55A73;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-endd-sandbox:hover:not(:disabled) {
  background: #1b1b1d;
  color: #F55A73;
}

.btn-endd-sandbox:disabled {
  cursor: auto;
  color: #1b1b1d;
}

/* - services -*/
.service-page {
  display: block;
  text-decoration: none;
  width: 445px;
  height: 153px;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-sandbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 5, 34, 0.5);
  border: 2px solid rgba(53, 31, 80, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  width: 445px;
  height: 153px;
}

.service-page:hover {
  box-shadow: 0px 0px 20px 1px #966CCA;
}

.content-sandbox {
  flex-direction: column;
}

.h2-sandbox-service {
  font-size: 21px;
  font-family: "Inter";
  color: #f3f3f3;
}

.image-service {
  position: absolute;
  top: 0;
  left: 25%;
  z-index: -1;
  height: 153px;
}

/* - footer - */
.footer-sm {
  justify-content: flex-start;
}

.ul-rrss {
  display: flex;
  flex-direction: row;
  gap: 25px;
  padding-left: 0px;
}

/* - media queries - */
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .layout-sandbox {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
  .main-image {
    width: auto;
    height: 200px;
    top: 2%;
    left: 46%;
  }
  .cta-end-sandbox {
    height: 30%;
    margin-bottom: 50px;
  }
  .about-sandobox, .services-sandbox-box, .portfolio-sandbox-box, .service-page, .service-sandbox {
    width: 473px;
  }
  .portfolio-sandbox, .last-project, .cta-end-sandbox {
    margin: 20px 0px;
  }
  .services-sandbox-box {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 496px) and (max-width: 767px) {
  .layout-sandbox {
    grid-template-columns: auto;
    justify-content: center;
    padding: 20px 15px;
    gap: 30px;
  }
  .services-sandbox-box {
    margin-top: 80px;
  }
  .portfolio-sandbox, .last-project, .cta-end-sandbox {
    margin: 20px 0px;
  }
  .service-page, .service-sandbox {
    width: 100%;
  }
  .main-image {
    width: auto;
    height: 200px;
    top: 2%;
    left: 46%;
  }
}
@media only screen and (max-width: 495px) {
  .layout-sandbox {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 25px 2px;
    gap: 25px;
  }
  .main-cta,
  .service-sandbox,
  .portfolio-sandbox,
  .cta-end-sandbox {
    width: 330px;
    margin-inline: auto;
  }
  .services-sandbox-box {
    margin-top: 60px;
  }
  .main-cta {
    padding: 18px;
  }
  .h1-sandbox {
    width: 50%;
    font-size: 24px;
  }
  .main-image {
    height: 160px;
    width: auto;
    top: 1.7%;
    left: 60%;
    transform: translateX(-50%);
  }
  .image-service {
    height: 140px;
    left: 50%;
    transform: translateX(-50%);
  }
  .card-sandbox {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .card-sandbox-1,
  .card-sandbox-2 {
    width: 330px;
    padding: 18px;
  }
  .cta-textd-sandbox {
    width: 100%;
    font-size: 18px;
  }
  .content-last {
    width: fit-content;
    flex-direction: row;
    gap: 6px;
  }
  .last-project {
    position: relative;
    isolation: isolate;
    margin-bottom: 0px;
    width: 370px;
    margin-inline: auto;
    margin-bottom: 25px;
  }
  .partners {
    margin-bottom: 0px;
    height: auto;
    width: 370px;
    margin-inline: auto;
  }
  .portfolio-sandbox {
    margin-bottom: 0px;
    height: auto;
    width: 370px;
    margin-inline: auto;
    margin-bottom: 25px;
  }
  .cta-end-sandbox {
    margin-bottom: 0px;
    width: 370px;
    margin-inline: auto;
    margin-bottom: 65px;
  }
  .service-page, .service-sandbox {
    margin-bottom: 0px;
    width: 370px;
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
:root {
  --rose: #F55A73;
  --ink: #ffffff;
  --ink-70: rgba(255,255,255,.78);
  --ink-55: rgba(255,255,255,.62);
  --ink-35: rgba(255,255,255,.40);
  --line-2: rgba(255,255,255,.16);
  --card-bg: rgba(31, 5, 34, 0.5);
  --shadow-1: 0 30px 80px -25px rgba(31,5,34,.30), 0 0 0 1px rgba(255,255,255,.06) inset;
  --shadow-2: 0 50px 120px -30px rgba(31,5,34,.55), 0 0 0 1px rgba(255,255,255,.10) inset;
}

/* ─────────── Section frame ─────────── */
.section-carousel {
  position: relative;
  min-height: 100vh;
  padding: 5% 100px;
  margin-top: 20px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 80% at 50% 0%, #ffffff 0%, #f4f3f1 55%, #ebe9e5 100%), #f4f3f1;
}

.section-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Soft studio ambients */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb.o1 {
  width: 560px;
  height: 560px;
  left: -180px;
  top: 20%;
  background: radial-gradient(circle at 40% 40%, rgba(245, 90, 115, 0.16) 0%, transparent 70%);
}

.orb.o2 {
  width: 480px;
  height: 480px;
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(150, 140, 200, 0.14) 0%, transparent 72%);
}

/* ─────────── Header ─────────── */
.container-carousel {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.head-carousel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 5vh, 56px);
}

.head-carousel h1 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  max-width: 400px;
  text-wrap: balance;
  color: #1a1620;
}

.head-carousel h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #F55A73 0%, #ff7e8d 50%, #b46bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.head-carousel .right {
  text-align: right;
  max-width: 280px;
  padding-top: 8px;
}

.head-carousel .right p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 22, 32, 0.62);
}

.head-carousel .right .count {
  font: 500 13px/1 "JetBrains Mono", monospace;
  color: rgba(26, 22, 32, 0.7);
  letter-spacing: 0.05em;
}

.head-carousel .right .count b {
  color: #1a1620;
  font-weight: 600;
}

.head-carousel .right .count .bar {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: rgba(26, 22, 32, 0.18);
  margin: 0 10px 4px;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.head-carousel .right .count .bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--rose);
  transition: width 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─────────── Stage ─────────── */
.stage-wrap {
  position: relative;
  height: clamp(560px, 72vh, 720px);
  margin: 0 auto;
  perspective: 1800px;
  perspective-origin: 50% 55%;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.stage-wrap.dragging {
  cursor: grabbing;
}

.floor {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 70%;
  height: 22%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(31, 5, 34, 0.25) 0%, rgba(31, 5, 34, 0) 70%);
  filter: blur(28px);
  z-index: 1;
  pointer-events: none;
}

.ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-carousel {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(360px, 36vw, 560px);
  height: clamp(420px, 56vh, 540px);
  margin-left: calc(clamp(360px, 36vw, 560px) / -2);
  margin-top: calc(clamp(420px, 56vh, 540px) / -2); /* ← mismo valor que height */
  border-radius: 28px;
  overflow: hidden;
  background: rgba(31, 5, 34, 0.8);
  border: 2px solid rgba(53, 31, 80, 0.4);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  will-change: transform, filter, opacity;
  transition: filter 800ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-carousel.active {
  box-shadow: var(--shadow-2);
}

.card-carousel .hero-carousel {
  flex: 0 0 63%;
  position: relative;
  margin: 0px;
  border-radius: 14px 14px 0px 0px;
  overflow: hidden;
  background: #150b22;
}

.card-carousel .hero-carousel .mock {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.card-carousel .hero-carousel .mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-carousel .glow {
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 124, 141, 0.5) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}

.meta {
  flex: 1 1 0;
  min-height: 0;
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.meta h3 {
  margin: 0px;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #ffffff;
}

.meta p {
  margin: 0px;
  width: 90%;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-70);
}

.meta .foot {
  margin-top: 10px; /* ← empuja botón al fondo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-carousel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #F55A73;
  color: white;
  font: 500 13px/1 "Inter", sans-serif;
  text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(245, 90, 115, 0.45);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), background 260ms;
}

.card-carousel.active .cta-carousel:hover {
  transform: translateY(-2px);
  background: #ff6b82;
}

.cta-carousel svg {
  width: 14px;
  height: 14px;
}

.tags {
  display: flex;
  gap: 6px;
}

.tag {
  font: 500 10px/1 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink-70);
  background: rgba(255, 255, 255, 0.04);
}

/* Inactive overlay tint — reinforces focus */
.card-carousel .veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 5, 34, 0) 30%, rgba(31, 5, 34, 0.45) 100%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-carousel:not(.active) .veil {
  opacity: 1;
}

/* ─────────── Controls ─────────── */
.controls {
  position: relative;
  z-index: 5;
  margin-top: clamp(20px, 4vh, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.dots {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dot-btn {
  background: transparent;
  border: 0;
  padding: 6px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot-btn .label {
  font: 500 11px/1 "JetBrains Mono", monospace;
  color: rgba(26, 22, 32, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 320ms;
}

.dot-btn .pill {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26, 22, 32, 0.2);
  transition: width 380ms cubic-bezier(0.2, 0.8, 0.2, 1), background 380ms;
}

.dot-btn.is-active .pill {
  width: 36px;
  background: var(--rose);
  box-shadow: 0 0 12px rgba(245, 90, 115, 0.5);
}

.dot-btn.is-active .label {
  color: #1a1620;
}

/* ─────────── Mockup placeholders ─────────── */
/* Faux app shots: gradient bg + striped placeholder + a label */
.mock {
  display: grid;
  place-items: center;
  position: relative;
}

.mock .label {
  position: absolute;
  left: 14px;
  top: 14px;
  font: 500 10px/1 "JetBrains Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  background: rgba(10, 6, 18, 0.5);
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.mock svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─────────── Mobile ─────────── */
@media only screen and (min-width: 500px) and (max-width: 768px) {
  .section-carousel {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .card-carousel {
    width: 72vw;
    height: 72vh;
    margin-left: -36vw;
    margin-top: -36vh;
    border-radius: 22px;
  }
  .head-carousel {
    flex-direction: column;
    align-items: flex-start;
  }
  .head-carousel .right {
    text-align: left;
  }
  .right {
    margin-bottom: 100px;
  }
  .stage-wrap {
    height: 72vh;
    perspective: 1100px;
  }
  #dots {
    display: none;
  }
  #head-count {
    display: none;
  }
}
/* Reduced motion */
@media (max-width: 499px) {
  .card-carousel {
    width: 72vw;
    height: 72vh;
    margin-left: -36vw;
    margin-top: -36vh;
    border-radius: 22px;
  }
  .section-carousel {
    padding-bottom: 80px;
  }
  .head-carousel {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .right p {
    text-align: center;
  }
  .ring, .card-carousel {
    transition: none !important;
  }
  #head-count {
    display: none;
  }
  #dots {
    display: none;
  }
  .tags {
    display: none;
  }
}
.body {
  margin: 0px;
  background-color: #fbfbfb;
}

.alinks {
  list-style-type: none;
  text-decoration: none;
}

/* - estilos barra de navegacion - */
.nav-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-left: 44px;
  margin-right: 44px;
  text-decoration: none;
}

.logo-home {
  width: 45px;
  perspective: 500px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 2s;
}

.logo-home:hover {
  transform: translateZ(0px) rotateX(0deg) rotateY(360deg);
}

.nav-links {
  display: flex;
  gap: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1d;
  list-style-type: none;
  text-decoration: none;
}

.nav-link {
  width: 88px;
  color: #0F0F10;
  text-decoration: none;
}

.nav-link:hover {
  color: #F55A73;
}

.btn-contact {
  background-color: #F55A73;
  border: none;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  width: 150px;
  height: 36px;
  border-radius: 10px;
  color: #f3f3f3;
  box-shadow: 0 0.4rem #000000;
  cursor: pointer;
}

.btn-contact:active {
  color: white;
  box-shadow: 0 0.2rem #000000;
  transform: translateY(0.2rem);
}

.btn-contact:hover:not(:disabled) {
  background: #F55A73;
  color: white;
}

.btn-contact:disabled {
  cursor: auto;
  color: #F55A73;
}

/* - estilos footer - */
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #0F0F10;
  color: #f3f3f3;
  padding: 25px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 172px;
  height: 60px;
}

.footer-img {
  display: flex;
  margin-left: 120px;
  width: 260px;
}

.logo-text {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 18px;
  padding-top: 21px;
  padding-left: 2px;
  width: 83px;
  height: 60px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  color: #f3f3f3;
}

.footer-services {
  display: flex;
  flex-direction: column;
  color: #f3f3f3;
}

.footer-sm {
  display: flex;
  flex-direction: column;
  color: #f3f3f3;
}

.ul2 {
  display: flex;
  flex-direction: column;
  margin-left: 0px;
  padding: 0px;
  gap: 20px;
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 80px;
  margin-right: 44px;
}

.footer-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
  color: #f3f3f3;
}

.footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  color: #f3f3f3;
  list-style-type: none;
  text-decoration: none;
}

.footer-text:hover {
  color: #F55A73;
}

.navlinks-mobile {
  display: none;
}

.menu-icon {
  display: none;
}

.menu-input {
  display: none;
}

.logo-homemobile {
  display: none;
}

.logomobile {
  display: none;
}

/* - dispositivos ancho máximo 1240px y ancho mínimo 768px - */
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  /* - responsive home - */
  .header-mb-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .header-mb {
    display: flex;
    width: 40%;
  }
  .btn-portfolio-mb {
    display: flex;
    align-self: center;
    width: 90%;
    text-decoration: none;
  }
  .btn-portfolio {
    background-color: #F55A73;
    border: none;
    padding: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    color: #f3f3f3;
    box-shadow: 0 0.4rem #000000;
    cursor: pointer;
  }
  /* - ballons services - */
  .ball-1 {
    position: relative;
    left: 260%;
  }
  .ball-2 {
    position: absolute;
    left: 190%;
    top: 740%;
  }
  .ball-3 {
    position: absolute;
    left: 260%;
    top: 300%;
  }
  .ball-4 {
    position: relative;
    bottom: 0%;
    left: -120%;
  }
  .ball-5 {
    position: absolute;
    left: 35%;
    bottom: 40%;
  }
  .ball-6 {
    position: absolute;
    left: 120%;
    bottom: 180%;
  }
  .ball-7 {
    position: absolute;
    left: -100%;
    bottom: 250%;
  }
  .ball-8 {
    position: absolute;
    left: 0%;
    bottom: 0%;
    top: 210%;
  }
  .ball-9 {
    position: absolute;
    left: -60%;
    bottom: 0%;
    top: 350%;
  }
  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background: #F55A73;
    color: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 85%;
    bottom: 30%;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .cta-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #0F0F10;
    color: #f3f3f3;
    height: auto;
    font-family: "Inter";
    font-size: 12px;
    padding: 6px;
    border-radius: 10px 10px 10px 10px;
    position: relative;
  }
  .menu-icon {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 28px;
    border-radius: 10px;
    background: #0F0F10;
    padding: 10px;
    gap: 6px;
    cursor: auto;
    z-index: 4;
  }
  .menu-input {
    display: none;
  }
  .menu-icon span {
    display: flex;
    height: 6px;
    width: 100%;
    background: #f3f3f3;
    border-radius: 10px;
    opacity: 1;
    transition: 0.3s ease-in-out;
    transform-origin: left center;
  }
  .menu-icon input:checked ~ span {
    background: #F55A73;
  }
  .menu-icon input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  .menu-icon input:checked ~ span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-icon input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  .menu-input:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    background: #F55A73;
  }
  .menu-input:checked + .menu-icon span:nth-child(2) {
    transform: scaleX(0);
  }
  .menu-input:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    background: #F55A73;
  }
  .navlinks-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    position: fixed;
    margin-top: 0px;
    padding-top: 160px;
    padding-right: 44px;
    list-style-type: none;
    top: 0px;
    right: -284px;
    background-color: #0F0F10;
    width: 200px;
    height: 100vh;
    z-index: 3;
    transition: right 0.3s ease;
  }
  #menu-icon:checked ~ .navlinks-mobile {
    right: 0;
  }
  .nav-linkmb {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    list-style-type: none;
    text-decoration: none;
    color: #f3f3f3;
  }
  .logo {
    display: none;
  }
  .logo-home {
    display: none;
  }
  .logo-home:hover {
    display: none;
  }
  .logomobile {
    display: block;
    width: 66px;
  }
  .logo-homemobile {
    display: block;
    width: 66px;
    position: relative;
  }
  .nav-links {
    display: none;
  }
  .nav-link {
    display: none;
  }
  .btn-contact {
    background-color: #F55A73;
    border: none;
    padding: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    margin-bottom: 30px;
    height: 50px;
    border-radius: 10px;
    color: #f3f3f3;
    box-shadow: none;
    cursor: auto;
  }
  .btn-contact:active {
    color: white;
    box-shadow: none;
    transform: none;
  }
  .btn-contact:hover:not(:disabled) {
    background: #F55A73;
    color: white;
  }
  .btn-contact:disabled {
    cursor: auto;
    color: #F55A73;
  }
  .footer-contact {
    display: none;
  }
  .footer {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 172px;
    height: 60px;
    margin-top: 20px;
    margin-left: 26px;
    margin-bottom: 20px;
  }
  .footer-services {
    display: flex;
    flex-direction: column;
    color: #f3f3f3;
    margin-left: 44px;
  }
  .footer-sm {
    display: flex;
    flex-direction: column;
    color: #f3f3f3;
    margin-left: 44px;
  }
  .ul2 {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    padding: 0px;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #f3f3f3;
  }
  .footer-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #f3f3f3;
    list-style-type: none;
    text-decoration: none;
  }
  .footer-text:hover {
    color: #f3f3f3;
  }
  .social-media {
    display: none;
  }
  .cta-home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    flex-direction: column;
    padding-bottom: 90px;
    padding-top: 0px;
  }
  .header-btn {
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: 400px;
    padding-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
  }
  .plans-contact {
    margin-bottom: 10px;
  }
  .title-home {
    width: 480px;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
  }
  .titletext-home {
    border-radius: 10px;
    padding: 10px;
    color: #0F0F10;
    margin: 0px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 480px;
    margin-bottom: 10px;
  }
  .icons-header {
    display: none;
  }
  .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .arrow-home {
    display: flex;
    width: 24px;
    height: 24px;
    margin-left: 0px;
  }
  .plans-up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .plans-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .plans-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    gap: 0px;
    padding-right: 0px;
  }
  .about {
    background-color: #1b1b1d;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    width: 100%;
  }
  .about-left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-img {
    display: flex;
    width: 100%;
    padding-bottom: 50px;
  }
  .titles-h2 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 0px;
    padding-bottom: 20px;
    text-align: center;
  }
  .about-text {
    width: 480px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-align: center;
  }
  .about-right {
    padding-left: 50px;
    padding-right: 50px;
  }
  .container-exp {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
  }
  .services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #966CCA;
    color: #f3f3f3;
    padding-bottom: 100px;
    margin-bottom: 0px;
  }
  .services-title {
    display: flex;
    justify-content: center;
    margin: 0px;
    padding-top: 65px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin-bottom: 60px;
    width: auto;
    perspective: none;
  }
  .card-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    border-radius: none;
    position: relative;
    transform-style: none;
    transition: none;
  }
  .card:hover .card-inner {
    transform: none;
  }
  .card-front,
  .card-back {
    display: none;
  }
  .card-front {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px 20px 20px 20px;
    margin-top: 100px;
    max-width: 100%;
    min-width: 280px;
    height: 340px;
    transform: none;
  }
  .card-back {
    display: none;
  }
  .checkmark {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
  .checkmark-icon {
    padding-left: 0px;
    padding-top: 2px;
    width: 14px;
    height: 14px;
  }
  .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0px;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 25px;
  }
  .ul {
    padding: 0px;
  }
  .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px 0px 10px 0px;
    padding-left: 10px;
  }
  .card-up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    margin-bottom: 0px;
  }
  .card-down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
  }
  .card-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 20px;
  }
  .card-right {
    display: flex;
    align-items: center;
    padding-left: 0px;
  }
  .icon-card {
    width: 120px;
    height: 120px;
  }
  .icon-card2 {
    width: 150px;
    height: 150px;
    padding-left: 0px;
  }
  .title-cert {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 50px;
  }
  .cert-text {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding: 0% 8% 0% 10%;
    margin-bottom: 50px;
  }
  .certs1, .certs2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 100px;
  }
  .icon-cert {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 31px;
  }
  .icon-text {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 25px;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 500px;
    background-color: #966CCA;
  }
  .cta-text {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #f3f3f3;
    letter-spacing: 2px;
  }
  .btn-end {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 350px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .btn-end:active {
    color: white;
    box-shadow: none;
    transform: none;
  }
  .btn-end:hover:not(:disabled) {
    background: #1b1b1d;
    color: white;
  }
  .btn-end:disabled {
    display: none;
  }
  /* - responsive publicidad - */
  .headerp {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .headerp .img-ctap {
    display: none;
  }
  .headerp .header-textp1 {
    display: none;
  }
  .headerp .background-headerp {
    display: none;
  }
  .headerp .header-textp2 {
    display: none;
  }
  .headerp .header-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .headerp .header-textp {
    max-width: 90%;
    width: 380px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0F0F10;
    text-align: center;
  }
  .headerp .header-imgp {
    width: 40%;
    position: relative;
    top: -30px;
    margin-bottom: 0px;
  }
  .headerp .background-ctap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0F0F10;
    color: #f3f3f3;
    border-radius: 25px;
    gap: 25px;
    margin-bottom: 50px;
    height: 345px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .headerp .background-ctap:hover::before {
    display: none;
  }
  .headerp .background-ctap:hover::after {
    display: none;
  }
  .headerp .ctap-title {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .headerp .ctap-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .headerp .btn-ctap {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 350px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .headerp .btn-ctap:active {
    box-shadow: none;
    transform: none;
  }
  .headerp .btn-ctap:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .headerp .btn-ctap:disabled {
    color: #f3f3f3;
  }
  .headerp .div-downp {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .background-ctap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0F0F10;
    color: #f3f3f3;
    border-radius: 25px;
    gap: 25px;
    margin-bottom: 50px;
    height: 345px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .background-ctap:hover::before {
    display: none;
  }
  .background-ctap:hover::after {
    display: none;
  }
  .ctap-title {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .ctap-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .alinks {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-ctap {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    margin-right: 0px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .btn-ctap:active {
    box-shadow: none;
    transform: none;
  }
  .btn-ctap:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .btn-ctap:disabled {
    color: #f3f3f3;
  }
  .pack, .pack2 {
    display: flex;
    flex-direction: column;
  }
  .pack-rrss, .pack-id {
    width: 90%;
  }
  .pack-container {
    width: 60%;
    margin-left: 0px;
    margin-top: 40px;
  }
  .pack-title {
    font-size: 30px;
  }
  .pack-text, .pack-text-down {
    font-size: 16px;
  }
  .pack-price {
    font-size: 24px;
  }
  .br-text {
    display: none;
  }
  .proyectos-background {
    position: relative;
    background: linear-gradient(to bottom right, #F68E94, #A88ECA);
    color: #f3f3f3;
    padding-bottom: 50px;
    margin-bottom: 0px;
    overflow: hidden;
    z-index: 0;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .proyectos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-title {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
  }
  .proyectos-background .proyectos-text {
    display: none;
  }
  .proyectos-background .proyect1, .proyectos-background .proyect2, .proyectos-background .proyect3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 20px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-img {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .proyectos-background .title-project {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
  }
  .proyectos-background .text-project {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 40px;
    width: 100%;
  }
  .proyectos-background .btn-project {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .proyectos-background .btn-project:active {
    box-shadow: none;
    transform: none;
  }
  .proyectos-background .btn-project:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .proyectos-background .btn-project:disabled {
    color: #f3f3f3;
  }
  .cards {
    background-color: #f3f3f3;
    padding-bottom: 50px;
  }
  .cards .card-service {
    margin-left: 44px;
    margin-right: 44px;
  }
  .cards .title-service {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .cards .cards-upp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cards .card1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0F0F10;
    border-radius: 25px;
    width: 100%;
    color: #f3f3f3;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cards .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 150px;
    width: 223px;
  }
  .cards .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .cards .card1:hover::before {
    display: none;
  }
  .cards .card1:hover::after {
    display: none;
  }
  .cards .card2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 2px solid #0F0F10;
    border-radius: 25px;
    padding-left: 20px;
  }
  .cards .card2:hover::before {
    display: none;
  }
  .cards .card2:hover::after {
    display: none;
  }
  .cards .cards-downp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #966CCA;
  }
  .cta-textp {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 2px;
    width: 100%;
  }
  .btn-endp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endd:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endd:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endd:disabled {
    cursor: auto;
  }
  /* - responsive marketing digital - */
  .headerm {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .headerm .img-ctam {
    display: none;
  }
  .headerm .header-textm1 {
    display: none;
  }
  .headerm .background-ctam {
    display: none;
  }
  .headerm .header-textm2 {
    display: none;
  }
  .headerm .header-textm {
    max-width: 90%;
    width: 380px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    font-size: 32px;
    color: #0F0F10;
  }
  .headerm .header-imgm {
    width: 40%;
    position: relative;
    top: -30px;
  }
  .headerm .div-downm {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .proyectos-background {
    position: relative;
    background: linear-gradient(to bottom right, #F68E94, #A88ECA);
    color: #f3f3f3;
    padding-bottom: 50px;
    margin-bottom: 0px;
    overflow: hidden;
    z-index: 0;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .proyectos-divup {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .proyectos-background .plans-icon {
    width: 100px;
    height: 100px;
    transform: rotate(30deg);
    padding-bottom: 40px;
  }
  .proyectos-background .proyectos-containerm {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-titlem {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    width: 100%;
  }
  .proyectos-background .proyectos-textm {
    display: none;
  }
  .proyectos-background .proyect1m, .proyectos-background .proyect2m, .proyectos-background .proyect3m {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 25px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-imgm {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .cards {
    background-color: #f3f3f3;
    padding-bottom: 50px;
  }
  .cards .card-service {
    margin-left: 44px;
    margin-right: 44px;
  }
  .cards .title-service {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .cards .cards-upp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cards .card1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0F0F10;
    border-radius: 25px;
    width: 100%;
    color: #f3f3f3;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cards .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 150px;
    width: 223px;
  }
  .cards .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .cards .card1:hover::before {
    display: none;
  }
  .cards .card1:hover::after {
    display: none;
  }
  .cards .card2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 2px solid #0F0F10;
    border-radius: 25px;
    padding-left: 20px;
  }
  .cards .card2:hover::before {
    display: none;
  }
  .cards .card2:hover::after {
    display: none;
  }
  .cards .cards-downp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #A88ECA;
  }
  .cta-textp {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 2px;
    width: 100%;
  }
  .btn-endp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endp:active {
    display: none;
  }
  .btn-endp:hover:not(:disabled) {
    display: none;
  }
  .btn-endp:disabled {
    background: #0F0F10;
  }
  .cards-up {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #966CCA;
  }
  .cta-textm {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 2px;
    width: 100%;
  }
  .btn-endm {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endm:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endm:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endm:disabled {
    cursor: auto;
  }
  /* - responsive desarrollo web  - */
  .headerd {
    margin-top: 30px;
    margin-bottom: 0px;
    height: auto;
  }
  .headerd .img-ctad {
    display: none;
  }
  .headerd .header-textd1 {
    display: none;
  }
  .headerd .background-ctad {
    display: none;
  }
  .headerd .header-textd2 {
    display: none;
  }
  .headerd .header-textd {
    max-width: 90%;
    width: 380px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0F0F10;
    text-align: center;
  }
  .headerd .header-imgd {
    width: 30%;
    position: relative;
    top: -20px;
  }
  .headerd .div-downd {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0%;
    margin-top: 10px;
    margin-bottom: 50px;
  }
  .headerd .arrow-headerd {
    width: 40px;
    height: 40px;
  }
  .projects-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    gap: 45px;
  }
  .recientes-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0px;
  }
  .proyectos-background {
    position: relative;
    background: linear-gradient(to bottom right, #F68E94, #A88ECA);
    color: #f3f3f3;
    padding-bottom: 50px;
    margin-bottom: 0px;
    overflow: hidden;
    z-index: 0;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .proyectos-containerd {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-titled {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    width: 100%;
  }
  .proyectos-background .proyectos-textd {
    display: none;
  }
  .proyectos-background .proyect1d, .proyectos-background .proyect2d, .proyectos-background .proyect3d {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 25px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-imgd {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .cta-textd {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 2px;
    width: 100%;
  }
  .btn-endd {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endd:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endd:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endd:disabled {
    cursor: auto;
  }
  /* - responsive contacto - */
  .contacto {
    display: flex;
    flex-direction: column;
    margin: 50px 20px;
  }
  .contacto .container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F55A73;
    color: #f3f3f3;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-top: 15%;
    padding-bottom: 15%;
    width: 100%;
  }
  .contacto .contact-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
  }
  .contacto .contact-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: 0px;
  }
  .contacto .contact-img {
    width: 28%;
  }
  .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f3f3f3;
    color: #0F0F10;
    padding-top: 15%;
    padding-bottom: 15%;
    width: 100%;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .form .form-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .form .form-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .form .form-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .form .form-input {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: auto;
    height: 32px;
    margin-left: 6%;
    border-radius: 20px;
    outline: none;
  }
  .form .form-inputm {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: auto;
    height: 100px;
    margin-left: 6%;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 20px;
    outline: none;
  }
  .form .btn {
    display: flex;
    flex-direction: row;
    margin-left: 6%;
    gap: 25px;
  }
  .form .send, .form .erase {
    width: 100%;
  }
}
/* - responsive pantallas maximo 768px - 
*/
@media only screen and (max-width: 768px) {
  /* - responsive home - */
  html, body {
    overflow-x: hidden;
  }
  .header-mb-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .header-mb {
    display: flex;
    width: 60%;
  }
  .header-btn {
    width: 90%;
  }
  .btn-portfolio-mb {
    display: flex;
    align-self: center;
    width: 90%;
    text-decoration: none;
  }
  .btn-portfolio {
    background-color: #F55A73;
    border: none;
    padding: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    color: #f3f3f3;
    box-shadow: 0 0.4rem #000000;
    cursor: pointer;
  }
  /* - ballons services - */
  .ball-1 {
    position: relative;
    left: 450%;
  }
  .ball-2 {
    position: absolute;
    left: 380%;
    top: 740%;
  }
  .ball-3 {
    position: absolute;
    left: 260%;
    top: 300%;
  }
  .ball-4 {
    position: relative;
    bottom: 0%;
    left: -120%;
  }
  .ball-5 {
    position: absolute;
    left: 35%;
    bottom: 40%;
  }
  .ball-6 {
    position: absolute;
    left: 120%;
    bottom: 180%;
  }
  .ball-7 {
    position: absolute;
    left: -100%;
    bottom: 250%;
  }
  .ball-8 {
    position: absolute;
    left: 0%;
    bottom: 0%;
    top: 210%;
  }
  .ball-9 {
    position: absolute;
    left: -60%;
    bottom: 0%;
    top: 350%;
  }
  /* DARK MODE BUTTON */
  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background: #F55A73;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 16%;
    left: 44%;
    bottom: 37%;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .cta-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #0F0F10;
    color: #f3f3f3;
    height: auto;
    font-family: "Inter";
    font-size: 12px;
    padding: 6px;
    border-radius: 10px 10px 10px 10px;
    position: relative;
  }
  .button-text {
    position: absolute;
    inset: 0;
    animation: text-rotation 8s linear infinite;
    font-size: 9px;
  }
  .button-text > span {
    position: absolute;
    transform: rotate(calc(19deg * var(--index)));
    inset: -8px;
  }
  .button-circle {
    position: relative;
    width: 28px;
    height: 28px;
    overflow: hidden;
    background: #ffffff;
    color: #F55A73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .button-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease-in-out;
  }
  .button:hover {
    background: #0F0F10;
    transform: scale(1.05);
  }
  .button:hover .moon-icon {
    transform: translate(150%, -150%);
  }
  .button:hover .sun-icon {
    transform: translate(0);
  }
  @keyframes text-rotation {
    to {
      rotate: 360deg;
    }
  }
  .menu-icon {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 28px;
    border-radius: 10px;
    background: #0F0F10;
    padding: 10px;
    gap: 6px;
    cursor: auto;
    z-index: 4;
  }
  .menu-input {
    display: none;
  }
  .menu-icon span {
    display: flex;
    height: 6px;
    width: 100%;
    background: #f3f3f3;
    border-radius: 10px;
    opacity: 1;
    transition: 0.3s ease-in-out;
    transform-origin: left center;
  }
  .menu-icon input:checked ~ span {
    background: #F55A73;
  }
  .menu-icon input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  .menu-icon input:checked ~ span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-icon input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  .menu-input:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    background: #F55A73;
  }
  .menu-input:checked + .menu-icon span:nth-child(2) {
    transform: scaleX(0);
  }
  .menu-input:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    background: #F55A73;
  }
  .navlinks-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    position: fixed;
    margin-top: 0px;
    padding-top: 160px;
    padding-right: 44px;
    list-style-type: none;
    top: 0px;
    right: -290px;
    background-color: #0F0F10;
    width: 200px;
    height: 100vh;
    z-index: 3;
    transition: right 0.3s ease;
  }
  #menu-icon:checked ~ .navlinks-mobile {
    right: 0;
  }
  .nav-linkmb {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    list-style-type: none;
    text-decoration: none;
    color: #f3f3f3;
  }
  .logo {
    display: none;
  }
  .logo-home {
    display: none;
  }
  .logo-home:hover {
    display: none;
  }
  .logomobile {
    display: block;
    width: 66px;
  }
  .logo-homemobile {
    display: block;
    width: 36px;
    position: relative;
  }
  .nav-links {
    display: none;
  }
  .nav-link {
    display: none;
  }
  .btn-contact {
    background-color: #d6575d;
    border: none;
    padding: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    margin-bottom: 30px;
    height: 50px;
    border-radius: 10px;
    color: #f3f3f3;
    box-shadow: none;
    cursor: auto;
  }
  .btn-contact:active {
    color: white;
    box-shadow: none;
    transform: none;
  }
  .btn-contact:hover:not(:disabled) {
    background: #F68E94;
    color: white;
  }
  .btn-contact:disabled {
    cursor: auto;
    color: #F68E94;
  }
  .footer-contact {
    display: none;
  }
  .footer {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 172px;
    height: 60px;
    margin-top: 20px;
    margin-left: 26px;
    margin-bottom: 20px;
  }
  .footer-services {
    display: flex;
    flex-direction: column;
    color: #f3f3f3;
    margin-left: 44px;
  }
  .footer-sm {
    display: flex;
    flex-direction: column;
    color: #f3f3f3;
    margin-left: 44px;
  }
  .ul2 {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    padding: 0px;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #f3f3f3;
  }
  .footer-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #f3f3f3;
    list-style-type: none;
    text-decoration: none;
  }
  .footer-text:hover {
    color: #f3f3f3;
  }
  .social-media {
    display: none;
  }
  .cta-home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    flex-direction: column;
    padding-bottom: 90px;
    padding-top: 0px;
  }
  .title-home {
    width: 90%;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
  }
  .titletext-home {
    border-radius: 10px;
    padding: 10px;
    color: #0F0F10;
    margin: 0px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 90%;
  }
  .icons-header {
    display: none;
  }
  .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .arrow-home {
    display: flex;
    width: 24px;
    height: 24px;
    margin-left: 0px;
  }
  .projects-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    gap: 45px;
  }
  .recientes-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0px;
  }
  .recientes-title {
    font-size: 20px;
  }
  .recientes-text {
    width: 80%;
    font-size: 16px;
  }
  .plans-up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .plans-second-line {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 10px;
    letter-spacing: 0.5px;
  }
  .plans-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 0px;
    letter-spacing: 0.5px;
    width: 520px;
  }
  .plans-icon {
    width: 90px;
    height: 90px;
    transform: rotate(30deg);
  }
  .plans-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .plans-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    gap: 0px;
    padding-right: 0px;
  }
  .plans-card1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    border: 2px solid #f3f3f3;
    border-radius: 25px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .plans-card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0px;
    padding-top: 20px;
    z-index: 1;
  }
  .plans-card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 10px;
    z-index: 1;
  }
  .plans-card-list {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 10px;
    z-index: 1;
    gap: 0px;
  }
  .plans-price {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-top: 60px;
    padding-left: 0px;
    padding-right: 10px;
    z-index: 1;
  }
  .plans-btn {
    display: flex;
    justify-content: center;
    z-index: 1;
    text-decoration: none;
    padding-right: 20px;
  }
  .plans-contact {
    background-color: #d6575d;
    border: none;
    padding: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    width: 98%;
    height: 36px;
    border-radius: 10px;
    color: #f3f3f3;
    box-shadow: 0 0.4rem #000000;
    cursor: pointer;
    margin-bottom: 50px;
  }
  .plans-contact:active {
    color: white;
    box-shadow: 0 0.2rem #000000;
    transform: translateY(0.2rem);
  }
  .plans-contact:hover:not(:disabled) {
    background: #F68E94;
    color: white;
  }
  .plans-contact:disabled {
    cursor: auto;
    color: #F68E94;
  }
  .about {
    background-color: #1b1b1d;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 50px;
    width: auto;
    overflow: auto;
  }
  .about-left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-img {
    display: flex;
    width: 100%;
    padding-bottom: 50px;
  }
  .titles-h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-top: 0px;
    padding-bottom: 20px;
    text-align: center;
  }
  .about-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-align: center;
  }
  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  .container-exp {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
  }
  .services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #955fdd;
    color: #f3f3f3;
    padding-bottom: 100px;
    margin-bottom: 0px;
  }
  .services-title {
    display: flex;
    justify-content: center;
    margin: 0px;
    padding-top: 65px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 50px;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin-bottom: 60px;
    width: auto;
    perspective: none;
  }
  .card-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    border-radius: none;
    position: relative;
    transform-style: none;
    transition: none;
  }
  .card:hover .card-inner {
    transform: none;
  }
  .card-front,
  .card-back {
    display: none;
  }
  .card-front {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px 20px 20px 20px;
    margin-top: 100px;
    width: 80%;
    min-width: 240px;
    height: 340px;
    transform: none;
  }
  .card-back {
    display: none;
  }
  .checkmark {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
  .checkmark-icon {
    padding-left: 0px;
    padding-top: 2px;
    width: 14px;
    height: 14px;
  }
  .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0px;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 25px;
  }
  .ul {
    padding: 0px;
  }
  .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px 0px 10px 0px;
    padding-left: 10px;
  }
  .card-up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    margin-bottom: 0px;
  }
  .card-down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
  }
  .card-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 20px;
  }
  .card-right {
    display: flex;
    align-items: center;
    padding-left: 0px;
  }
  .icon-card {
    width: 120px;
    height: 120px;
  }
  .icon-card2 {
    width: 120px;
    height: 120px;
    padding-left: 0px;
  }
  .title-cert {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 50px;
  }
  .cert-text {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding: 0% 8% 0% 10%;
    margin-bottom: 50px;
  }
  .certs1, .certs2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 100px;
  }
  .icon-cert {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 31px;
  }
  .icon-text {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 25px;
  }
  .container-client {
    display: flex;
    flex-direction: row;
  }
  .client-title {
    display: flex;
    text-align: center;
    font-size: 30px;
  }
  .icon-client1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
  }
  .icon-client2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  .icon-client3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 500px;
    background-color: #955fdd;
    overflow: hidden;
  }
  .cta-text {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #f3f3f3;
    letter-spacing: 0px;
  }
  .btn-end {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 290px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
  }
  .btn-end:active {
    color: white;
    box-shadow: none;
    transform: none;
  }
  .btn-end:hover:not(:disabled) {
    background: #1b1b1d;
    color: white;
  }
  .btn-end:disabled {
    display: none;
  }
  /* - responsive publicidad - */
  .pack, .pack2 {
    display: flex;
    flex-direction: column;
  }
  .pack-rrss, .pack-id {
    width: 90%;
  }
  .pack-container {
    width: 60%;
    margin-left: 0px;
    margin-top: 40px;
  }
  .pack-title {
    font-size: 30px;
  }
  .pack-text, .pack-text-down {
    font-size: 16px;
  }
  .br-dw {
    display: none;
  }
  .pack-price {
    font-size: 24px;
  }
  .br-text {
    display: none;
  }
  .headerp {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .headerp .img-ctap {
    display: none;
  }
  .headerp .header-textp1 {
    display: none;
  }
  .headerp .background-headerp {
    display: none;
  }
  .headerp .header-textp2 {
    display: none;
  }
  .headerp .header-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .headerp .header-textp {
    max-width: 90%;
    width: 380px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0F0F10;
    text-align: center;
  }
  .headerp .header-imgp {
    width: 90%;
    position: relative;
    top: -30px;
  }
  .headerp .background-ctap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0F0F10;
    color: #f3f3f3;
    border-radius: 25px;
    gap: 25px;
    margin-bottom: 50px;
    height: 345px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .headerp .background-ctap:hover::before {
    display: none;
  }
  .headerp .background-ctap:hover::after {
    display: none;
  }
  .headerp .ctap-title {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .headerp .ctap-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .headerp .btn-ctap {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 350px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .headerp .btn-ctap:active {
    box-shadow: none;
    transform: none;
  }
  .headerp .btn-ctap:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .headerp .btn-ctap:disabled {
    color: #f3f3f3;
  }
  .headerp .div-downp {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .background-ctap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0F0F10;
    color: #f3f3f3;
    border-radius: 25px;
    gap: 25px;
    margin-bottom: 50px;
    height: 345px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .background-ctap:hover::before {
    display: none;
  }
  .background-ctap:hover::after {
    display: none;
  }
  .ctap-title {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .ctap-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    width: 85%;
    margin: 0px;
    z-index: 1;
  }
  .alinks {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-ctap {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    margin-right: 0px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .btn-ctap:active {
    box-shadow: none;
    transform: none;
  }
  .btn-ctap:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .btn-ctap:disabled {
    color: #f3f3f3;
  }
  .proyectos-background {
    position: relative;
    color: #f3f3f3;
    padding-bottom: 50px;
    margin-bottom: 0px;
    overflow: hidden;
    z-index: 0;
  }
  .proyectos-background .proyectos-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .proyectos-background .plans-icon {
    width: 100px;
    height: 100px;
    transform: rotate(30deg);
    padding-bottom: 40px;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .ball-3 {
    position: absolute;
    left: 550%;
    top: 300%;
  }
  .proyectos-background .proyectos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-title {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
  }
  .proyectos-background .proyectos-text {
    display: none;
  }
  .proyectos-background .proyect1, .proyectos-background .proyect2, .proyectos-background .proyect3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 20px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-img {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .proyectos-background .title-project {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
  }
  .proyectos-background .text-project {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 40px;
    width: 100%;
  }
  .proyectos-background .btn-project {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #F55A73;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
  }
  .proyectos-background .btn-project:active {
    box-shadow: none;
    transform: none;
  }
  .proyectos-background .btn-project:hover:not(:disabled) {
    color: #f3f3f3;
  }
  .proyectos-background .btn-project:disabled {
    color: #f3f3f3;
  }
  .cards {
    background-color: #f3f3f3;
    padding-bottom: 50px;
  }
  .cards .card-service {
    margin-left: 44px;
    margin-right: 44px;
  }
  .cards .title-service {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .cards .cards-upp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cards .card1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0F0F10;
    border-radius: 25px;
    width: 100%;
    color: #f3f3f3;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cards .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 150px;
    width: 223px;
  }
  .cards .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .cards .card1:hover::before {
    display: none;
  }
  .cards .card1:hover::after {
    display: none;
  }
  .cards .card2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 2px solid #0F0F10;
    border-radius: 25px;
    padding-left: 20px;
  }
  .cards .card2:hover::before {
    display: none;
  }
  .cards .card2:hover::after {
    display: none;
  }
  .cards .cards-downp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #966CCA;
  }
  .cta-textp {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 2px;
    width: 100%;
  }
  .btn-endp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endd:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endd:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endd:disabled {
    cursor: auto;
  }
  /* - responsive marketing digital - */
  .headerm {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .headerm .img-ctam {
    display: none;
  }
  .headerm .header-textm1 {
    display: none;
  }
  .headerm .background-ctam {
    display: none;
  }
  .headerm .header-textm2 {
    display: none;
  }
  .headerm .header-textm {
    width: 90%;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    font-size: 32px;
    color: #0F0F10;
  }
  .headerm .header-imgm {
    width: 60%;
    position: relative;
    top: -30px;
  }
  .headerm .div-downm {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .proyectos-background {
    background-color: #f3f3f3;
  }
  .proyectos-background .proyectos-divup {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .proyectos-background .plans-icon {
    width: 100px;
    height: 100px;
    transform: rotate(30deg);
    padding-bottom: 40px;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .proyectos-containerm {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-titlem {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
  }
  .proyectos-background .proyectos-textm {
    display: none;
  }
  .proyectos-background .proyect1m, .proyectos-background .proyect2m, .proyectos-background .proyect3m {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 25px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-imgm {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .cards {
    background-color: #f3f3f3;
    padding-bottom: 50px;
  }
  .cards .card-service {
    margin-left: 44px;
    margin-right: 44px;
  }
  .cards .title-service {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .cards .cards-upp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cards .card1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0F0F10;
    border-radius: 25px;
    width: 100%;
    color: #f3f3f3;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cards .card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 150px;
    width: 223px;
  }
  .cards .card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .cards .card1:hover::before {
    display: none;
  }
  .cards .card1:hover::after {
    display: none;
  }
  .cards .card2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 2px solid #0F0F10;
    border-radius: 25px;
    padding-left: 20px;
  }
  .cards .card2:hover::before {
    display: none;
  }
  .cards .card2:hover::after {
    display: none;
  }
  .cards .cards-downp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #A88ECA;
    overflow: hidden;
  }
  .cta-textp {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 0px;
    width: 100%;
  }
  .btn-endp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endp:active {
    display: none;
  }
  .btn-endp:hover:not(:disabled) {
    display: none;
  }
  .btn-endp:disabled {
    background: #0F0F10;
  }
  .cards-up {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  .cta-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 550px;
    background-color: #966CCA;
  }
  .cta-textm {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 0px;
    width: 100%;
  }
  .btn-endm {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endm:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endm:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endm:disabled {
    cursor: auto;
  }
  /* - responsive desarrollo web  - */
  .headerd {
    margin-top: 30px;
    margin-bottom: 0px;
    height: auto;
  }
  .headerd .img-ctad {
    display: none;
  }
  .headerd .header-textd1 {
    display: none;
  }
  .headerd .background-ctad {
    display: none;
  }
  .headerd .header-textd2 {
    display: none;
  }
  .headerd .header-textd {
    width: 90%;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0F0F10;
    text-align: center;
  }
  .headerd .header-imgd {
    width: 60%;
    position: relative;
    top: -20px;
  }
  .headerd .div-downd {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .headerd .arrow-headerd {
    width: 40px;
    height: 40px;
  }
  .proyectos-background {
    background-color: #f3f3f3;
  }
  .proyectos-background .proyectos {
    padding-top: 50px;
    padding-bottom: 100px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .proyectos-background .proyectos-containerd {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .proyectos-background .proyectos-titled {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
  }
  .proyectos-background .proyectos-textd {
    display: none;
  }
  .proyectos-background .proyect1d, .proyectos-background .proyect2d, .proyectos-background .proyect3d {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(31, 5, 34, 0.5);
    border: 2px solid rgba(53, 31, 80, 0.8);
    box-shadow: 0px 3px 8px rgba(194, 155, 242, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    color: #f3f3f3;
    gap: 30px;
    padding: 25px;
    margin-bottom: 30px;
  }
  .proyectos-background .project-imgd {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  .cta-textd {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3f3f3;
    letter-spacing: 0px;
    width: 100%;
  }
  .btn-endd {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #1b1b1d;
    color: #f3f3f3;
    border: none;
    padding: 10px;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    cursor: auto;
  }
  .btn-endd:active {
    color: #f3f3f3;
    box-shadow: none;
    transform: none;
  }
  .btn-endd:hover:not(:disabled) {
    background: #0F0F10;
    color: #f3f3f3;
  }
  .btn-endd:disabled {
    cursor: auto;
  }
  /* - responsive contacto - */
  .contacto {
    display: flex;
    flex-direction: column;
    margin: 50px 20px;
  }
  .contacto .container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F55A73;
    color: #f3f3f3;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-top: 15%;
    padding-bottom: 15%;
    width: 100%;
  }
  .contacto .contact-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
  }
  .contacto .contact-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: 0px;
  }
  .contacto .contact-img {
    width: 28%;
  }
  .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f3f3f3;
    color: #0F0F10;
    padding-top: 15%;
    padding-bottom: 15%;
    width: 100%;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .form .form-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .form .form-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .form .form-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-left: 6%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .form .form-input {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: auto;
    height: 32px;
    margin-left: 6%;
    border-radius: 20px;
    outline: none;
  }
  .form .form-inputm {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: auto;
    height: 100px;
    margin-left: 6%;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 20px;
    outline: none;
  }
  .form .btn {
    display: flex;
    flex-direction: row;
    margin-left: 6%;
    gap: 25px;
  }
  .form .send, .form .erase {
    width: 100%;
  }
}

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