* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  user-select: none;
}

body {
  font-family: "Montserrat", "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  --orange: #ff6338;
  --lightgrey: #ccc;
  --grey: #252525;
  --darkgrey: #131313;
  --white: #fff;
  --black: #000;
}

html {
  scroll-padding-top: 5.5rem;
}

.section__title {
  text-align: center;
  font-size: 2rem;
  margin: 8rem 0 2.5rem;
  color: var(--black);
}

@media (max-width: 768px) {
  .section__title {
    text-align: center;
    font-size: 2.2rem;
    margin: 4.6rem 0 1.95rem;
    color: var(--black);
  }
}

/*---------HEADER SECTION---------*/

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  text-align: center;
  height: 3.5rem;
  color: var(--black);
  backdrop-filter: blur(3px);
  animation: mobile-header both;
  animation-timeline: scroll();
  position: sticky;
  top: 0;
  animation-range: 0.625rem 0.7rem;
}

.menu-toggle {
  position: absolute;
  right: 0.9rem;
  color: var(--orange);
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
  font-size: 1.8rem;
}

.menu-toggle .icon-menu {
  display: inline;
  font-size: 1.6rem;
}

.header__checkbox:checked + .menu-toggle .icon-menu {
  display: none;
}
.header__checkbox:checked + .menu-toggle .icon-close {
  display: inline;
}

.header__checkbox {
  display: none;
}

.header__nav {
  background-color: var(--white);
  display: flex;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  z-index: -1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.header__checkbox:checked ~ .header__nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header__logo {
  max-width: 100%;
  width: 8.75rem;
  margin: 0 2rem 0 0;
}

.header__nav-item {
  list-style: none;
}

.header__nav-item a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0s ease;
  padding: 0.35rem 0.45rem;
  box-sizing: border-box;
  position: relative;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0;
  height: 0.15rem;
  background: var(--orange);
  border-radius: 0.05rem;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.header__nav-item a:hover::after,
.header__nav-item a:active::after {
  width: 90%;
  left: 50%;
}

.social__nav-mobile {
  display: flex;
}

.social__nav-mobile a {
  color: inherit;
  font-size: 2rem;
  width: 2.6rem;
  margin: 0 0.4rem;
}

.social__nav-desktop {
  display: none;
}

.social__nav-mobile a:hover {
  color: var(--orange);
}

.tooltip-nav {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background: var(--grey);
  color: var(--white);
  text-align: center;
  border-radius: 0.2rem;
  padding: 0.25rem 0.625rem;
  position: absolute;
  z-index: 2;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  font-size: 0.95rem;
  pointer-events: none;
}

.tooltip:hover .tooltip-nav,
.tooltip.active .tooltip-nav {
  visibility: visible;
  opacity: 1;
}

.tooltip-nav::before {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  background-color: var(--grey);
  right: 43%;
  bottom: 80%;
}

.header__content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/*---------HEADER QUERIES---------*/

@media screen and (min-width: 1010px) {
  .header {
    height: 4rem;
    position: sticky;
    top: 0;
    animation: web-header both;
    animation-timeline: scroll();
    animation-range: 0.7rem 0.625rem;
    justify-content: space-between;
  }

  .header__content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0 5rem;
  }

  .header__nav {
    z-index: 10;
    position: static;
    height: auto;
    width: auto;
    background-color: initial;
    display: flex;
    align-items: center;
    transition: none;
    transform: none;
    opacity: 1;
  }

  .header__nav-list {
    display: flex;
    flex-direction: row;
    height: auto;
    width: auto;
    gap: 0.7rem;
    margin: 0;
    align-items: center;
  }

  .header__nav-item a {
    position: relative;
    font-size: 0.85rem;
  }

  .social__nav-desktop {
    display: flex;
    align-items: center;
  }

  .social__nav-desktop a {
    color: inherit;
    font-size: 1.7rem;
    width: 2.6rem;
    margin: 0 0.4rem;
  }

  .social__nav-desktop a:hover {
    color: var(--orange);
  }

  .social__nav-mobile {
    display: none;
  }

  .header__open-nav-button {
    display: none;
  }
  .menu-toggle {
    display: none;
  }

  .header__logo {
    max-width: 100%;
    width: 10.7rem;
    margin: 0;
  }
}

@media screen and (min-width: 1650px) {
  .header__content {
    margin: 0 15rem;
  }

  .header__logo {
    width: 11rem;
  }

  .header__nav-list {
    gap: 1rem;
  }

  .header__nav-item a {
    font-size: 0.95rem;
  }

  .social__nav-desktop a {
    font-size: 1.9rem;
    margin: 0 0.6rem;
  }

  .header__nav-item a::after {
    height: 0.2rem;
  }
}

/*---------HEADER ANIMATIONS---------*/

@keyframes mobile-header {
  from {
    padding: 0;
    background-color: #fff;
  }
  to {
    padding: 0;
    background-color: #0008;
  }
}

@keyframes web-header {
  from {
    padding: 0;
    background-color: #fff;
  }
  to {
    padding: 0;
    background-color: #0009;
    color: #fff;
  }
}

@keyframes color-change {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*---------HEADER END---------*/

/*---------BANNER SECTION---------*/
.banner {
  background-color: var(--black);
  /* background-image: url(../assets/); */
  min-height: calc(95vh - 3.5rem); /* altura de navbar en mobile */
  background-size: cover;
  padding: 0;
}

.banner__hero-legend {
  display: none;
}

.content__banner {
  margin: 0 1.9rem;
  padding: 20% 0;
  color: var(--white);
}

.content__banner p {
  color: var(--orange);
  font-size: 2.3rem;
  letter-spacing: 0.28rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.content__banner h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.22rem;
}

/*---------NEON BUTTON-----------*/

.content__banner a {
  font-weight: 600;
  margin-top: 1.5rem;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 1.5rem;
}

.banner__hero {
}

.banner__hero-legend {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  color: var(--white);
}

.hero {
  background-color: transparent;
  letter-spacing: 0.19rem;
  position: relative;
  cursor: pointer;
  margin-top: 50px;
  border: 1.9px solid rgba(231, 231, 231, 0.2);
  border-radius: 0rem;
  color: rgba(255, 115, 76, 0.8);
  margin-top: 35px;
}

.hero:hover {
  border: 1.5px solid #ff734c;
  color: #ff734c;
  box-shadow: 0 0 15px #c26f58, 0 0 6px #bf6a52;
  text-shadow: 0 0 9px rgba(148, 98, 84, 0.454);
  animation: parpadear 1s infinite alternate backwards;
}

@keyframes parpadear {
  0% {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(242, 149, 91, 0.6);
    box-shadow: 0;
    text-shadow: 0;
  }

  50% {
    border: 1.5px solid #ff734c;
    color: #ff734c;
    box-shadow: 0 0 5px #c26f58, 0 0 5px #625450;
    text-shadow: 0 0 9px rgba(148, 98, 84, 0.454);
  }

  100% {
    border: 1.5px solid #ff734c;
    color: #ff734c;
    box-shadow: 0 0 5px #c26f58, 0 0 5px #bf6a52;
    text-shadow: 0 0 9px rgba(232, 103, 67, 0.454);
  }
}

/*---------BANNER QUERIES---------*/

@media screen and (min-width: 768px) {
  .banner {
    background-color: var(--black);
    background-image: url(./assets/banner_growth_768.svg);
    min-height: calc(100vh - 4rem);
    background-size: cover;
    padding: 0;
  }

  .content__banner {
    margin: 0 0 0 5%;
    padding: 12.15% 0;
    color: var(--white);
    max-width: 75%;
  }

  .content__banner p {
    color: var(--orange);
    font-size: 2.8rem;
    letter-spacing: 0.44rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
  }

  .content__banner h3 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.25rem;
    margin: 1rem 0;
  }

    .banner__hero-legend {
display: flex;
  }
}

@media screen and (min-width: 1650px) {
  .banner {
    background-color: var(--black);
    background-image: url(./assets/banner_growth_1650.svg);
    background-size: cover;
    padding: 0;
  }

  .content__banner {
    max-width: 90rem;
    margin: 0 8.125rem;
    padding: 15rem 0;
    color: var(--white);
    max-width: 60%;
  }

  .content__banner p {
    color: var(--orange);
    font-size: 3.3rem;
    letter-spacing: 0.4375rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
  }

  .content__banner h3 {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.25rem;
    margin: 1.25rem 0;
  }
}

/*---------BANNER END---------*/

/*---------PARTNERS SECTION---------*/

.partners {
  text-align: center;
  align-items: center;
  background-color: white;
}

.partners h3 {
  margin: 0 0 1.5rem;
  padding: 0.15rem;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--orange);
}

.slider-partners {
  width: 99%;
  overflow: hidden;
  margin: 0 auto;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6.5% 93.5%,
    transparent
  );
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll-partners 40s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused !important;
}

.partner-item {
  flex: 0 0 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  transition: transform 0.1s;
}

.partner-item:hover {
  cursor: pointer;
  transform: scale(1.0228);
}

.partner-item img {
  max-width: 8.75rem;
  width: auto;
  height: auto;
  display: block;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .partner-item img {
    max-width: 7.25rem;
  }

  .slider-partners {
    width: 99%;
    overflow: hidden;
    margin: 0 auto;
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 7% 93%,
      transparent
    );
  }

  .partners h3 {
    font-size: 1.6rem;
    margin: 0 0 1.05rem;
  }

  .partner-item {
    margin: 0 1.05rem;
  }
}

/*---------PARTNERS END---------*/

/*---------SERVICES SECTION---------*/

.services {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section__title-services {
  text-align: center;
  font-size: 2rem;
  margin: 5rem 0 2.5rem;
  color: var(--black);
}

.services__nav {
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 3rem;
}

.subtitle__services-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding: 0.6rem 0 1.5rem; /* Espacio para la barra debajo */
}

.subtitle__services-list a {
  text-decoration: none;
  font-weight: 500;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 0.15rem;
  padding: 0.5rem 0.8rem;
}

.subtitle__services-list a:hover,
.subtitle__services-list a.active {
  color: var(--white);
  background-color: var(--black);
}

.carousel__services-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
}

.subtitle__services-item {
  flex: 0 0 auto;
}

.services__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.services__container * {
  user-select: text !important;
}

.service_card {
  user-select: text !important;
  background-color: var(--black);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: start;
  max-width: 25rem;
  margin: 0.5rem 0.35rem 0.35rem 0.35rem;
}

/* .service__picture img {
  width: 25rem;
} */

.service_card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 2rem 2rem 0;
}

.parenthesis {
  color: var(--white);
  font-size: 0.85rem;
  margin: 0.15rem 2rem 0;
}

.service_card p {
  color: var(--white);
  margin: 0.85rem 2rem 1.5rem;
  font-size: 1rem;
}

.service__details {
  max-width: 25rem;
  margin: 0;
  background: var(--black);
  border-radius: 0.5rem;
  padding: 0 2rem 2rem;
  color: var(--white);
  font-size: 1.1rem;
}

.service__details-content {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-16px) scaleY(0.98);
  pointer-events: none;
}

.service__details span {
  font-size: 0.8rem;
}

.service__details ul {
  margin: 1.5rem 0 0 1.5rem;
  list-style: url(./assets/growth_icon_mini.png) outside;
}

.service__details li {
  padding: 0 0 0.65rem;
  font-size: 0.9rem;
  width: 19.5rem;
}

.service__details summary {
  position: relative;
  padding: 0.6rem 0;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: 0.12rem solid var(--white);
  border-radius: 0.2rem;
  max-width: 21rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service__details summary:hover {
  cursor: pointer;
  /* border: 0.12rem solid var(--white);*/
  background-color: var(--darkgrey);
}

/* .service__details[open] summary {
  border: 0.12rem solid var(--white);
  background-color: var(--white);
} */

summary span {
  font-size: 0.9rem;
}

/* .service__details summary:hover span {
  color: var(--black);
} */

/* .service__details[open] summary span {
  color: var(--black);
} */

summary::marker {
  content: "";
}

summary i {
  position: absolute;
  font-size: 1rem;
  top: 0.6rem;
  right: 0.6rem;
  color: var(--white);
}

/* .service__details summary:hover i {
  color: var(--black);
} */

/* .service__details[open] summary i {
  color: var(--black);
} */

details[open] summary i.fa-plus {
  display: none;
}

details[open] summary i.fa-minus {
  display: inline;
}

summary i.fa-minus {
  display: none;
}

.service__btn-container {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 1rem 0 0 -1.5rem;
}

.service__btn {
  text-decoration: none;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: 0.12rem solid var(--white);
  border-radius: 0.1rem;
  padding: 0.4rem;
  width: 90%;
}

.service__btn:hover {
  text-decoration: none;
  color: var(--black);
  background-color: var(--white);
}

/* service__details-management */

.service__details-management {
  max-width: 25rem;
  margin: 0;
  background: var(--black);
  border-radius: 0.5rem;
  padding: 0 2rem 1rem;
  color: var(--white);
  font-size: 1.1rem;
}

.service__details-management summary {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: 0.12rem solid var(--white);
  border-radius: 0.2rem;
  max-width: 21rem;
  text-align: left;
}

.service__details-management summary:hover {
  cursor: pointer;
  /* border: 0.12rem solid var(--white);*/
  background-color: var(--darkgrey);
}

/* .service__details-management[open] summary {
  border: 0.12rem solid var(--white);
  background-color: var(--white);
} */

.service__details-management h4 {
  color: var(--white);
  font-size: 1rem;
  padding-left: 0.5rem;
}

/* .service__details-management summary:hover h4 {
  color: var(--black);
}

.service__details-management summary:hover h5 {
  color: var(--black);
} */

.service__details-management h5 {
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.3rem 0 0 0.6rem;
  font-weight: 500;
}

/* .service__details-management[open] summary h4 {
  color: var(--black);
}

.service__details-management[open] summary h5 {
  color: var(--black);
}

.service__details-management summary:hover i {
  color: var(--black);
}

.service__details-management[open] summary i {
  color: var(--black);
} */

.service__details-management ul {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-16px) scaleY(0.98);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  margin: 0.5rem 0 0;
  list-style: url(./assets/growth_icon_mini.png) outside;
}

.service__details-management[open] ul {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.service__details-management li {
  padding: 0 0.2rem 0;
  font-size: 0.85rem;
  margin: 0.65rem 0 0.55rem 1.2rem;
}

.service__foot {
  height: 0.1rem;
}

.management__btn-container {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 1rem 0 2rem 0;
}

.management__btn {
  text-decoration: none;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: 0.12rem solid var(--white);
  border-radius: 0.1rem;
  padding: 0.5rem;
  width: 80%;
}

.management__btn:hover {
  text-decoration: none;
  color: var(--black);
  background-color: var(--white);
}

/* service__details-management END */

@media (max-width: 790px) {
  .section__title-services {
    margin: 4rem 0 2rem;
  }

  .carousel__services-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
  }

  .subtitle__services-list {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0.61rem;
    padding: 0.5rem 0;
    margin: 0 1.1rem;
    list-style: none;
    scrollbar-width: thin;
    padding-bottom: 1.3rem;
  }

  .subtitle__services-list a {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem;
  }

  .subtitle__services-item {
    flex: 0 0 auto;
  }

  .service_card {
    max-width: 20rem;
    margin: 0.5rem;
  }

  /* .service__picture img {
    max-width: 20rem;
  } */

  .service__details summary {
    width: 16rem;
  }

  .service__details-management summary {
    width: 16rem;
  }

  .service__details li {
    padding: 0 0 0.5rem 0.2rem;
    font-size: 0.9rem;
    width: 14.5rem;
  }

  .service__details-management li {
    margin: 0.5rem 0 0.5rem 1.2rem;
  }

  .service__btn {
    width: 85%;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service_card.show-from-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/*---------SERVICES END---------*/

/*---------METHOD SECTION---------*/

.method {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1.9rem;
  gap: 2.8rem;
}

.step__card {
  background: transparent;
  border-radius: 0.5rem;
  padding: 2.5rem 0 0;
  /* height: 18rem; */
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.step__number {
  outline: 0.5rem solid var(--orange);
  background: var(--white);
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bold;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 1.6rem 0 0.8rem 0;
  text-align: center;
}

.step__description {
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.method a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto; /* centra el enlace dentro del contenedor si es block o flex */
}

.method__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 3.45rem;
}

.method__cta p {
  margin-bottom: 1.45rem;
  font-size: 1.01rem;
}

.btn-cta-method {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border: 0.14rem solid var(--black);
  border-radius: 0.1rem;
  text-decoration: none;
  transition: color 0.15s, border 0.15s;
  cursor: pointer;
  letter-spacing: 0.0625rem;
}

.btn-cta-method:hover {
  color: var(--orange);
  border: 0.14rem solid var(--orange);
}

@media (max-width: 730px) {
  .method__steps {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    scroll-snap-type: x mandatory;
    gap: 1.7rem;
    margin: 0 1.75rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .method__steps::-webkit-scrollbar {
    display: none;
  }

  .step__card {
    /* height: 17.5rem; */
    max-width: 19rem;
    padding: 1rem 0 0;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  .carousel-method {
    position: relative;
    width: 23rem;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
  }

  .carousel-dots .dot {
    margin-top: 1.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.02rem;
    background: #ccc;
    transition: background 0.2s;
    display: inline-block;
  }

  .carousel-dots .dot.active {
    background: var(--orange);
  }

  .method__cta {
    margin-top: 2.3rem;
  }
}

.step__number {
  outline: 0.5rem solid var(--orange);
  background: var(--white);
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bold;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/*---------METHOD END---------*/

/*---------US SECTION---------*/

.card-container {
  display: flex;
  flex-wrap: wrap; /* Las cards se ajusten en varias filas si no entran */
  gap: 1.8rem;
  justify-content: center;
  align-items: flex-start; /* Alinea las cards en la parte superior */
  padding: 0 1.9rem;
}

.card {
  max-width: clamp(320px, 50%, 320px);
  color: var(--white);
  height: 28.4rem;
  position: relative;
  border-radius: 0.5rem;
}

.card__us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card__us img {
  max-width: 15.6rem;
  margin: 1.5rem 0 0.5rem;
  border-radius: 100%;
}

.card__data {
  margin: 0.625rem 1.25rem;
  align-items: center;
}

.card__data span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.card__data h4 {
  margin: 0.5rem 0;
  color: var(--orange);
}

.card__back,
.card__front {
  backface-visibility: hidden;
  transition: transform 0.95s;
  background-color: var(--black);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%; /* Asegura que el back y el front tengan la misma altura que la card */
  width: 100%; /* Asegura que ocupen todo el ancho de la card */
}

.card__front {
  transform: perspective(1200px) rotateY(0deg);
}

.card__back {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.85rem;
  transform: perspective(900px) rotateY(180deg);
}

.flip-indicator {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--orange);
  padding: 0.3em;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card.flipped .card__front {
  transform: perspective(1200px) rotateY(180deg);
}

.card.flipped .card__back {
  transform: perspective(1200px) rotateY(360deg);
}

.card__back span {
  font-size: 1.5rem;
  margin: 0.75rem 0 1.3rem;
  display: block;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.skillbar-gonza {
  border: 0.125rem solid var(--orange);
  border-radius: 1.25rem;
  margin: 0.91rem 0;
  padding: 0.21rem;
}

.skillbar-gonza div {
  background-color: var(--orange);
  border-radius: 0.9rem;
  padding: 0.9rem;
  color: var(--black);
  font-weight: 600;
}

.skillbar-gonza:nth-child(2) div {
  width: 100%;
}

.skillbar-gonza:nth-child(3) div {
  width: 100%;
}

.skillbar-gonza:nth-child(4) div {
  width: 100%;
}

.skillbar-gonza:nth-child(6) div {
  width: 100%;
}

.skillbar-gonza:last-child div {
  width: 90%;
}

.skillbar-guye {
  border: 0.125rem solid var(--orange);
  border-radius: 1.25rem;
  margin: 0.91rem 0;
  padding: 0.21rem;
}

.skillbar-guye div {
  background-color: var(--orange);
  border-radius: 0.9rem;
  padding: 0.9rem;
  color: var(--black);
  font-weight: 600;
}

.skillbar-guye:nth-child(2) div {
  width: 100%;
}

.skillbar-guye:nth-child(3) div {
  width: 100%;
}

.skillbar-guye:nth-child(4) div {
  width: 100%;
}

.skillbar-guye:nth-child(6) div {
  width: 100%;
}

.skillbar-guye:last-child div {
  width: 85%;
}

.skillbar-koch {
  border: 0.125rem solid var(--orange);
  border-radius: 1.25rem;
  margin: 0.91rem 0;
  padding: 0.21rem;
}

.skillbar-koch div {
  background-color: var(--orange);
  border-radius: 0.9rem;
  padding: 0.9rem;
  color: var(--black);
  font-weight: 600;
}

.skillbar-koch:nth-child(2) div {
  width: 100%;
}

.skillbar-koch:nth-child(3) div {
  width: 100%;
}

.skillbar-koch:nth-child(4) div {
  width: 100%;
}

.skillbar-koch:nth-child(6) div {
  width: 95%;
}

.skillbar-koch:last-child div {
  width: 95%;
}

@media (max-width: 730px) {
  .card__us img {
    max-width: 15.2rem;
    margin: 1.5rem 0 0.5rem;
  }

  .card__data {
    margin: 0.625rem 1rem 0;
  }
}
/*---------US END---------*/

/*---------CONTACT SECTION---------*/

.form__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form {
  background-color: rgb(255, 255, 255);
  display: grid;
  padding: 0 1.2rem 0.8rem;
  max-width: 50rem;
  width: 100%;
  gap: 1.2rem;
}

.form input,
textarea {
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: 0.12rem solid #555;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
}

.form textarea {
  color: #f34313;
  resize: none;
  min-height: 7.5rem;
}

.form__label {
  display: grid;
  grid-template-areas: "input";
}

.form__input {
  color: #f34313;
  grid-area: input;
}

.form__text {
  grid-area: input;
  z-index: 2;
  width: max-content;
  height: fit-content;
  margin: 0.65rem 0 0 0.7rem;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  transform-origin: left center;
  transition: transform 0.15s;
}

.form__input:is(:focus, :not(:placeholder-shown)) + .form__text {
  background-color: var(--white);
  transform: translateY(-108%) scale(0.8);
}

.form__submit {
  background-color: var(--black);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.09rem;
  border-radius: 0.2rem !important;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.form__submit:hover {
  cursor: pointer;
  color: var(--orange);
  transform: scale(1.01);
}

/*---------CONTACT END---------*/

/*---------FOOTER SECTION---------*/
.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 2.5rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  text-decoration: none;
}

.footer p {
  font-size: 1rem;
}

.footer a {
  text-decoration: none;
  color: var(--white);
}

.footer a:hover {
  cursor: pointer;
}

.social a {
  color: inherit;
  font-size: 2rem;
  width: 2.6rem;
  display: inline-block;
  margin: 0 0.4rem;
}

.social a:hover {
  color: var(--orange);
}

.footer__sections {
  text-decoration: none;
  list-style: none;
}

.footer__sections a {
  margin-bottom: 1rem;
}

.footer__sections li {
  display: inline-block;
  margin: 0 0.38rem 0.5rem;
}

.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background: var(--grey);
  color: var(--white);
  text-align: center;
  border-radius: 0.2rem;
  padding: 0.25rem 0.625rem;
  position: absolute;
  z-index: 2;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  font-size: 0.95rem;
  pointer-events: none;
}

.tooltip:hover .tooltip-text,
.tooltip.active .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-text::before {
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  background-color: var(--grey);
  right: 43%;
  top: 80%;
}

/*---------FOOTER END---------*/

/* Logo WhatsApp flotante */
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 99, 56, 0.9);
  border-radius: 50%;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 20;
  width: 3.1rem;
  height: 3.1rem;
  font-size: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.04);
  color: var(--white);
  background-color: var(--orange);
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}
/* Logo WhatsApp flotante */
