@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  color: #111;
  font-family: "Ubuntu", sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.post, .page {
  margin: 0 0 0em;
}

.navbar {
  padding: 20px 0;
  background-color: #f2b705 !important;
}
.navbar ul {
  margin: 0 0 0em 0em;
}
.navbar .navbar-brand {
  font-weight: bold;
  font-size: 20px;
}
.navbar .navbar-nav {
  gap: 20px;
}
.navbar .navbar-nav .menu-item a {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.363);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.navbar .navbar-nav .menu-item a:hover {
  color: #c46a2d;
}
.navbar .logo {
  width: 12%;
}
@media (max-width: 650px) {
  .navbar .logo {
    width: 30%;
  }
}

/* ---------------------------------------------
     PRELOADER
  --------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(160, 120, 0), rgb(140, 60, 89));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sandwich {
  position: relative;
  width: 220px;
  height: 220px;
}

.sandwich .layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.sandwich .layer svg,
.sandwich .layer img {
  display: block;
  width: 100%;
  height: auto;
}

/* Stacked straight up the middle, like the reference image:
   bread-bottom (lowest) -> ham -> cheese -> bread-top (highest, biggest). */
.layer--bread-bottom {
  width: 200px;
  z-index: 1;
  transform: translate(-50%, -24%) translateY(26px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.layer--ham {
  z-index: 2;
  transform: translate(-50%, -42%) translateY(20px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.layer--cheese {
  z-index: 3;
  transform: translate(-50%, -58%) translateY(20px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.layer--bread-top {
  width: 210px;
  z-index: 4;
  transform: translate(-50%, -78%) translateY(-40px);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.5, 0.64, 1);
}

/* resting positions once "in" */
.layer--bread-bottom.is-in {
  opacity: 1;
  transform: translate(-50%, -24%) translateY(0);
}

.layer--ham.is-in {
  opacity: 1;
  transform: translate(-50%, -42%) translateY(0);
}

.layer--cheese.is-in {
  opacity: 1;
  transform: translate(-50%, -58%) translateY(0);
}

.layer--bread-top.is-in {
  opacity: 1;
  transform: translate(-50%, -78%) translateY(0);
}

/* gentle idle bounce once assembled, while we wait for window load */
.sandwich.is-idle .layer {
  animation: idleBounce 1.4s ease-in-out infinite;
}

.sandwich.is-idle .layer--ham {
  animation-delay: 0.05s;
}

.sandwich.is-idle .layer--cheese {
  animation-delay: 0.1s;
}

.sandwich.is-idle .layer--bread-top {
  animation-delay: 0.15s;
}

@keyframes idleBounce {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}
.preloader-label {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;
}

.hero {
  text-align: center;
  height: 120vh;
  background: linear-gradient(135deg, rgba(160, 120, 0, 0.85), rgba(140, 60, 90, 0.9)), url("https://picsum.photos/id/7/1600/900");
  background-size: cover;
  background-position: center;
}
.hero span {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #f2b705, #f9f9f9, #e89ab0, #f2b705);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero .logo-hero {
  width: 30%;
  margin-bottom: 30px;
  margin-top: 0px;
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #fff7f0;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.hero h2 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #fff7f0;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.hero p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 600;
  color: #fff7f0;
}
.hero .hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.hero .hero__cta a {
  background-color: #e986a2;
  text-decoration: none;
  padding: 15px;
  color: #fff7f0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero .hero__cta a:hover {
  background-color: rgb(225.1538461538, 90.8461538462, 128.8321678322);
  transition: all 0.25s ease;
  transform: scale(1.05);
}
.hero .ancho-icono {
  width: 100px;
}

.sandwich-hero {
  position: relative;
  width: clamp(160px, 22vw, 240px);
  height: clamp(160px, 22vw, 240px);
  margin-bottom: 30px;
  margin-top: -100px;
  cursor: pointer;
  outline: none;
  animation: sandwichFloat 3.6s ease-in-out infinite;
}
.sandwich-hero .sandwich-hero:hover,
.sandwich-hero .sandwich-hero.is-open {
  animation-play-state: paused;
}
@keyframes sandwichFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}
.sandwich-hero__layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.sandwich-hero__layer img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2));
}
.sandwich-hero {
  /* --- reposo: ahora arranca ya "abierto" tipo foto 1 --- */
}
.sandwich-hero__layer--bread-bottom {
  z-index: 1;
  transform: translate(-50%, -24%);
}
.sandwich-hero__layer--ham {
  z-index: 2;
  transform: translate(-50%, -42%);
}
.sandwich-hero__layer--cheese {
  z-index: 3;
  transform: translate(-50%, -58%);
}
.sandwich-hero__layer--bread-top {
  z-index: 4;
  width: 92%;
  transform: translate(-50%, -78%);
}
@media (hover: hover) and (pointer: fine) {
  .sandwich-hero:hover .sandwich-hero__layer--bread-bottom {
    transform: translate(-50%, 4%);
  }
  .sandwich-hero:hover .sandwich-hero__layer--ham {
    transform: translate(-50%, -28%);
  }
  .sandwich-hero:hover .sandwich-hero__layer--cheese {
    transform: translate(-50%, -66%);
  }
  .sandwich-hero:hover .sandwich-hero__layer--bread-top {
    transform: translate(-50%, -96%);
  }
  .sandwich-hero .sandwich-hero__hint {
    display: none;
  }
}
.sandwich-hero.is-open .sandwich-hero__layer--bread-bottom {
  transform: translate(-50%, 4%);
}
.sandwich-hero.is-open .sandwich-hero__layer--ham {
  transform: translate(-50%, -28%);
}
.sandwich-hero.is-open .sandwich-hero__layer--cheese {
  transform: translate(-50%, -66%);
}
.sandwich-hero.is-open .sandwich-hero__layer--bread-top {
  transform: translate(-50%, -96%);
}
.sandwich-hero {
  /* --- movimiento idle sutil en touch, mientras está en reposo --- */
}
@media (hover: none) {
  .sandwich-hero:not(.is-open) .sandwich-hero__layer--bread-bottom {
    animation: idleBottom 2.6s ease-in-out infinite;
  }
  .sandwich-hero:not(.is-open) .sandwich-hero__layer--ham {
    animation: idleHam 2.6s ease-in-out infinite;
  }
  .sandwich-hero:not(.is-open) .sandwich-hero__layer--cheese {
    animation: idleCheese 2.6s ease-in-out infinite;
  }
  .sandwich-hero:not(.is-open) .sandwich-hero__layer--bread-top {
    animation: idleTop 2.6s ease-in-out infinite;
  }
}
.sandwich-hero__hint {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.sandwich-hero.has-interacted .sandwich-hero__hint {
  opacity: 0;
}

@keyframes idleBottom {
  0%, 100% {
    transform: translate(-50%, -24%);
  }
  50% {
    transform: translate(-50%, -20%);
  }
}
@keyframes idleHam {
  0%, 100% {
    transform: translate(-50%, -42%);
  }
  50% {
    transform: translate(-50%, -39%);
  }
}
@keyframes idleCheese {
  0%, 100% {
    transform: translate(-50%, -58%);
  }
  50% {
    transform: translate(-50%, -61%);
  }
}
@keyframes idleTop {
  0%, 100% {
    transform: translate(-50%, -78%);
  }
  50% {
    transform: translate(-50%, -83%);
  }
}
.problem-top-shape {
  margin-top: -200px;
}

.problem {
  padding: 80px 0;
  background-color: #CC7D34;
  max-width: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(160, 120, 0, 0.85),
    rgba(138, 47, 81, 0.9)   
  ); */
}
.problem h2 {
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  max-width: 100%;
}
.problem h2 span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.problem h3 {
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  max-width: 100%;
}
.problem h3 span {
  background-color: #f2b705;
  margin-top: 20px;
  margin-bottom: 20px;
}
.problem p {
  font-weight: 700;
  color: #fff;
}
.problem ul {
  margin: 0 0 0em 0em !important;
  padding-inline-start: 0px;
  width: 100%;
  max-width: 100%;
}
.problem ul li {
  padding: 20px;
  list-style: none;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
.problem ul li:nth-child(1) {
  background-color: #e986a2;
}
.problem ul li:nth-child(2) {
  background-color: #f2b705;
}
.problem ul li:nth-child(3) {
  background-color: #e986a2;
}
.problem ul li:nth-child(4) {
  background-color: #f2b705;
}

.problem-2 {
  margin-top: -140px;
  padding-top: 100px;
  background-color: #f2b705;
  height: 70vh;
  margin-bottom: 0 !important;
}
.problem-2 .logo-responsive {
  width: 50%;
}
.problem-2 .highlight {
  margin-top: 40px;
  font-weight: bold;
  color: #fff;
  font-size: 40px;
}
.problem-2 h3 {
  text-align: center;
}
.problem-2 h4 {
  width: 100%;
  font-size: 600px;
  text-align: center;
  font-weight: 800;
}

.equipo-antes {
  height: 100vh;
  background: linear-gradient(180deg, rgb(242, 183, 5), rgb(233, 134, 162));
}
.equipo-antes h3 {
  font-size: 50px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

.team {
  background: linear-gradient(180deg, rgb(242, 183, 5) 0%, rgb(242, 183, 5) 70%, rgb(233, 134, 162) 100%);
  padding: 6rem 1.5rem;
}
@media (max-width: 620px) {
  .team {
    padding: 3.5rem 1.25rem;
  }
}
.team__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.team__header {
  text-align: center;
  margin: 0 auto 3.5rem;
  width: 100%;
}
@media (max-width: 620px) {
  .team__header {
    margin-bottom: 2.5rem;
  }
}
.team__title {
  font-weight: 700;
  color: #fff;
  font-size: 50px;
  max-width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.team__title span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.team__subtitle {
  font-size: 25px;
  margin: 0 0 0.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}
.team__subtitle span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.team__lead {
  margin: 0;
  font-size: 1.05rem;
  color: rgb(111.7772511848, 110.7227488152, 110.7227488152);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  grid-template-areas: "m1 m2 m3 gv" "gh gh m4 gv";
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, minmax(260px, auto));
    grid-template-areas: "m1 m2" "m3 m4" "gh gh" "gv gv";
  }
}
@media (max-width: 620px) {
  .team__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: "m1" "m2" "m3" "m4" "gh" "gv";
    gap: 1rem;
  }
}
.team__member {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 40px;
  cursor: pointer;
  outline: none;
}
@media (max-width: 620px) {
  .team__member {
    aspect-ratio: 1/1;
  }
}
.team__member-media {
  position: absolute;
  inset: 0;
}
.team__member-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.team__member-img--alt {
  opacity: 0;
}
.team__member-scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.team__member-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.9rem 1.25rem 1rem;
  border-radius: 20px 20px 0 0;
  color: #fff;
}
.team__member-name {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.team__member-role {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.team__member:hover .team__member-img, .team__member:focus-within .team__member-img, .team__member.is-open .team__member-img {
  opacity: 0;
}
.team__member:hover .team__member-img--alt, .team__member:focus-within .team__member-img--alt, .team__member.is-open .team__member-img--alt {
  opacity: 1;
}
.team--pink .team__member-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 12%), linear-gradient(180deg, rgba(233, 134, 162, 0) 0%, #e986a2 42%);
}
.team--orange .team__member-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 12%), linear-gradient(180deg, rgba(204, 125, 52, 0) 0%, #CC7D34 42%);
}
.team--yellow .team__member-panel {
  color: #111;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 12%), linear-gradient(180deg, rgba(255, 234, 128, 0) 0%, #f2b705 55%);
}
.team--black .team__member-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 12%), linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111 42%);
}
.team__group {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 40px;
}
.team__group img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.team__group figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.55) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.team__group:hover img {
  transform: scale(1.04);
}

.value {
  margin-top: -90px;
  text-align: center;
  height: 110vh;
  background-color: #e986a2;
  color: #fff;
  margin: 0 !important;
}
.value .texto-colores {
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(90deg, #f2b705, #f9f9f9, #e89ab0, #f2b705);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 6s ease infinite;
}
.value h2 {
  font-weight: 700;
  font-size: 40px;
}
.value .cajas-value {
  background-color: #f2b705;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 30vh;
  margin: 20px;
  color: #111;
}
.value .cajas-value h3 {
  font-size: 20px;
  color: #fff7f0;
}
.value i {
  font-size: 500%;
}

.tarjeta-equipo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.tarjeta-equipo .tarjeta-ilustracion {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.tarjeta-equipo .tarjeta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.tarjeta-equipo:hover .tarjeta-overlay, .tarjeta-equipo.activa .tarjeta-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.tarjeta-equipo .tarjeta-info {
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.tarjeta-equipo .tarjeta-nombre {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px;
}
.tarjeta-equipo .tarjeta-cargo {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.tarjeta-equipo:hover .tarjeta-ilustracion {
  transform: scale(1.06);
}
.tarjeta-equipo:hover .tarjeta-overlay {
  background: rgba(0, 0, 0, 0.55);
}
.tarjeta-equipo:hover .tarjeta-info {
  transform: translateY(0);
  opacity: 1;
}
.tarjeta-equipo.activa .tarjeta-ilustracion {
  transform: scale(1.06);
}
.tarjeta-equipo.activa .tarjeta-overlay {
  background: rgba(0, 0, 0, 0.55);
}
.tarjeta-equipo.activa .tarjeta-info {
  transform: translateY(0);
  opacity: 1;
}

.services {
  height: 120vh;
  background-color: #fff;
  /*   background: linear-gradient(
    180deg,
    rgb(233 134 162) 0%,
    rgb(255 255 255) 70%,
    rgb(255 255 255) 100%
  );  */
}

.services__header {
  margin: 0 auto 48px;
  text-align: center;
}
.services__header h2 {
  font-weight: 700;
  color: #e986a2;
  font-size: 50px;
  max-width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.services__header h2 span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.services__header p {
  font-size: 25px;
  margin: 0 0 0.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}
.services__header p span {
  color: #fff;
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.services__subtitle {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
}

.services-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-cta h2 {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  margin-top: 48px;
  color: #fff;
}
.services-cta a {
  background-color: #e986a2;
  text-decoration: none;
  padding: 15px;
  color: #fff7f0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 15%;
  text-align: center;
  margin-top: 20px;
}
.services-cta a:hover {
  background-color: rgb(225.1538461538, 90.8461538462, 128.8321678322);
  transition: all 0.25s ease;
  transform: scale(1.05);
}
@media (max-width: 620px) {
  .services-cta {
    font-size: 1.7rem;
  }
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 40px 26px 32px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 620px) {
  .service {
    flex-wrap: wrap;
    padding: 26px 24px;
  }
}
.service:hover {
  transform: translateX(6px);
}
.service:hover .service__icon {
  transform: rotate(8deg) scale(1.08);
}
.service:hover .service__mark {
  animation-duration: 4s;
  opacity: 0.28;
}

.service__mark {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 160px;
  height: 160px;
  transform: translateY(-50%);
  opacity: 0.16;
  pointer-events: none;
  animation: service-mark-spin 22s linear infinite;
  transition: opacity 0.4s ease;
}
@media (max-width: 620px) {
  .service__mark {
    width: 110px;
    height: 110px;
    right: -30px;
  }
}

@keyframes service-mark-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.service__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.4s ease;
}
.service__icon svg {
  width: 30px;
  height: 30px;
}

.service__body {
  position: relative;
  z-index: 1;
  flex: 1 1 240px;
  min-width: 200px;
}
.service__body h3 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  /*  background: linear-gradient(
      90deg,
      #f2b705,
      #f9f9f9,
      #e89ab0,
      #f2b705
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;

    animation: gradientMove 6s ease infinite;
      }
      @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
  } */
}
.service__body h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.85;
  color: #111;
  text-align: left;
}

.service__items-wrap {
  position: relative;
  z-index: 1;
  flex: 1 1 280px;
}
@media (max-width: 620px) {
  .service__items-wrap {
    flex-basis: 100%;
    text-align: left;
  }
}

.service__items {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.service__items li {
  display: inline;
  list-style: none;
}
.service__items li:not(:last-child)::after {
  content: ", ";
}

.service--pink {
  background: #e986a2;
}
.service--pink .service__icon {
  color: #e986a2;
}
.service--pink .service__body h4 {
  color: #fff;
  opacity: 0.7;
  font-weight: 600;
}

.service--yellow {
  background: #f2b705;
  color: #fff;
}
.service--yellow .service__body h4 {
  color: #fff;
  opacity: 0.7;
  font-weight: 600;
}
.service--yellow .service__icon {
  color: rgb(167.048582996, 126.3218623482, 3.451417004);
}

.service--orange {
  background: #CC7D34;
}
.service--orange .service__icon {
  color: #CC7D34;
}
.service--orange .service__body h4 {
  color: #fff;
  opacity: 0.7;
  font-weight: 600;
}

.service--black {
  background: #111;
}
.service--black .service__icon {
  color: #111;
}
.service--black .service__body h4 {
  color: #fff;
  opacity: 0.7;
  font-weight: 600;
}

#metodologia {
  min-height: 100vh;
  background-color: #f2b705;
  padding: 100px 0;
}
#metodologia .metodologia-heading {
  text-align: center;
  margin-bottom: 60px;
}
#metodologia .metodologia-heading h2 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 50px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
#metodologia .metodologia-heading > p {
  font-size: 25px;
  margin: 10px 0 0;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}
#metodologia .metodologia-heading > p span {
  background-color: #e986a2;
  padding: 2px 8px;
  font-weight: 600;
}
#metodologia .metodologia-steps {
  position: relative;
}
#metodologia .step {
  position: relative;
  padding: 12px;
}
#metodologia .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -10px;
  width: 20px;
  height: 3px;
  background-color: #e986a2;
  opacity: 0.7;
}
#metodologia .step-content {
  height: 100%;
  background: #e986a2;
  padding: 32px 28px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#metodologia .step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
#metodologia .step-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2b705;
  color: #fff;
  border-radius: 50%;
  font-size: 27px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}
#metodologia .step-number {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
#metodologia h3 {
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}
#metodologia h4 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}
#metodologia .step-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  #metodologia {
    padding: 70px 0;
  }
  #metodologia .metodologia-heading {
    margin-bottom: 40px;
  }
  #metodologia .metodologia-heading h2 {
    font-size: 40px;
  }
  #metodologia .metodologia-heading > p {
    font-size: 21px;
  }
  #metodologia .step {
    margin-bottom: 20px;
  }
  #metodologia .step:not(:last-child)::after {
    display: none;
  }
  #metodologia .step-content {
    padding: 28px 24px;
  }
}

.planes {
  padding-top: 90px;
  padding-bottom: 90px;
  /* background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgb(255 255 255) 70%,
    rgb(233 134 162) 100%
  ); */
  /*   background: linear-gradient(
      180deg,
      rgb(255 134 162),
      rgb(242 183 5)
    ); */
}
.planes .planes-caja {
  display: flex;
  align-items: center;
}
.planes .planes-caja h2 {
  text-align: center;
  font-weight: 700;
  color: #e986a2;
  font-size: 50px;
  max-width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.planes .planes-caja h2 span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.planes .planes-caja p {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  margin-bottom: 40px;
}
.planes .planes-caja p span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #fff;
}
.planes .planes-cta {
  display: flex;
  justify-content: center;
}
.planes .planes-cta a {
  background-color: #e986a2;
  text-decoration: none;
  padding: 15px;
  color: #fff7f0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 85%;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.planes .planes-cta a:hover {
  background-color: rgb(225.1538461538, 90.8461538462, 128.8321678322);
  transition: all 0.25s ease;
  transform: scale(1.05);
}

.plan-card {
  position: relative;
  background-color: #CC7D34;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px 40px 20px 20px;
  padding: 70px 0px 70px 0px;
  transition: transform 0.25s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
}
.plan-card p {
  font-size: 15px !important;
  margin-bottom: 0px !important;
}

.plan-card__jamon {
  position: relative;
  z-index: 1;
  background-color: #e986a2;
  padding: 24px 22px 30px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.plan-card__jamon p {
  color: #fff !important;
}

h3 {
  font-size: 30px;
  text-align: center;
  font-weight: 800;
}

h4 {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: #fff;
}

h5 {
  font-size: 30px;
  text-align: center;
  font-weight: 800;
}

.plan-card__desc {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.4;
}

.plan-card__queso {
  position: relative;
  z-index: 2;
  background-color: #f2b705;
  color: #111;
  margin-top: -14px;
  padding: 26px 22px 30px;
  border-radius: 0px 0px 60px 20px !important;
}

.plan-card__label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.plan-card__precio {
  margin: 0 0 18px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.plan-card__incluye-label {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.plan-card__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  padding: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.plan-card__lista li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}
.plan-card__lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}
.plan-card__lista li:last-child {
  margin-bottom: 0;
}

.plan-card--nivel-1 .plan-card__queso {
  border-radius: 12px 12px 60px 20px;
}
.plan-card--nivel-1 .plan-card__drip {
  height: 12px;
}

.plan-card--nivel-2 .plan-card__queso {
  border-radius: 12px 12px 90px 24px;
  padding-bottom: 34px;
}
.plan-card--nivel-2 .plan-card__drip {
  height: 20px;
  bottom: -12px;
}

.plan-card--nivel-3 .plan-card__queso {
  border-radius: 12px 12px 130px 16px;
  padding-bottom: 40px;
}
.plan-card--nivel-3 .plan-card__drip {
  height: 30px;
  bottom: -20px;
}

.cta {
  background: linear-gradient(135deg, rgba(160, 120, 0, 0.85), rgba(140, 60, 90, 0.9)), url("https://picsum.photos/id/7/1600/900");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta h2 {
  font-weight: 700;
  color: #fff;
  font-size: 50px;
  max-width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.cta h2 span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cta p {
  font-size: 25px;
  margin: 0 0 0.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}
.cta p span {
  background-color: #e986a2;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.cta a {
  background-color: #e986a2;
  text-decoration: none;
  padding: 15px;
  color: #fff7f0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 100px;
}
.cta a:hover {
  background-color: rgb(225.1538461538, 90.8461538462, 128.8321678322);
  transition: all 0.25s ease;
  transform: scale(1.05);
}

.contact {
  height: auto;
  width: 100%;
  background-color: #CC7D34;
  /*   background: linear-gradient(
      180deg,
      rgb(255 134 162),
      rgb(242 183 5)
    ); */
}
.contact label {
  width: 100%;
}
.contact h2 {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 50px;
  max-width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.contact h2 span {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.contact p {
  font-size: 25px;
  margin: 0 0 0.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.contact p span {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact h3 {
  display: none;
}
.contact .caja-contact {
  padding-top: 50px;
}
.contact .caja-contact span {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  background-color: #e986a2;
}
.contact .wpcf7-form {
  width: 70%;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline-start: auto;
  padding-inline-end: auto;
}
.contact .wpcf7-form span {
  background-color: transparent;
}
.contact .wpcf7-form p {
  text-align: left !important;
  font-size: 15px;
}
.contact .wpcf7-form-control {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #f2b705;
}
.contact .wpcf7-submit {
  background-color: #e986a2;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 0 !important;
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact .wpcf7-submit:hover {
  transform: scale(1.05);
  background-color: rgb(225.1538461538, 90.8461538462, 128.8321678322);
}

footer {
  background-color: #f2b705;
  margin: 0px !important;
  color: #fff;
}
footer .ancho-logo {
  width: 20%;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
footer .site-info {
  background: #f2b705;
  padding: 80px 0;
  overflow: hidden;
}
footer a {
  color: #fff !important;
}
footer a i {
  padding: 20px;
  font-size: 20px;
  transition: 0.3s ease;
}
footer a:hover i {
  background: linear-gradient(135deg, rgb(255, 134, 162), rgb(242, 183, 5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-secciones {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flecha {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}
.flecha:hover {
  transform: scale(1.08);
  background: black;
}

#btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #e986a2;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* Oculto por defecto */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#btn-top.visible {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 650px) {
  .navbar .navbar-nav .menu-item a {
    padding-top: 20px;
    padding-inline-start: 20px;
  }
  .hero {
    margin-top: -140px;
    height: 160vh;
  }
  .hero .logo-hero {
    width: 60%;
  }
  .hero .sandwich-hero {
    width: clamp(200px, 22vw, 240px);
    height: clamp(200px, 22vw, 240px);
  }
  .problem-caja h2 {
    width: 80%;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
  .problem-caja p {
    width: 80%;
    margin-inline-start: auto;
    margin-inline-end: auto;
    padding: 20px 0px 20px 0px;
  }
  .problem-2 {
    margin-top: -620px;
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
  }
  .problem-2 .logo-responsive {
    width: 80%;
  }
  .logo-responsive {
    width: 100%;
  }
  .value {
    height: auto;
  }
  .value .cajas-value {
    max-width: 90%;
  }
  .team {
    height: auto;
    padding-bottom: 100px;
  }
  .services {
    height: auto;
  }
  .services .services-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
  .services .services-cta a {
    width: 40%;
    font-size: 16px;
  }
  .planes {
    padding: 0px;
  }
  #metodologia {
    height: auto;
  }
  .content {
    max-width: 100%;
    max-height: 30vh;
  }
  .services {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .planes {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .planes .plan-card {
    margin-top: 40px;
  }
  .cta p {
    width: 70%;
    margin-inline: auto;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .wpcf7-form {
    width: 100% !important;
    margin-top: 20px;
  }
  .caja-contact {
    height: 80vh;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 0px !important;
  }
  .shape-bottom {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: -200px;
    height: 80vh;
  }
  .ancho-logo {
    width: 60%;
    margin-bottom: 10px;
  }
  footer .ancho-logo {
    width: 50%;
  }
}
@media (max-width: 650px) and (max-width: 374px) {
  .problem-2 {
    margin-top: -600px;
  }
}
@media (max-width: 650px) and (min-width: 375px) and (max-width: 389px) {
  .problem-2 {
    margin-top: -620px;
  }
}
@media (max-width: 650px) and (min-width: 390px) and (max-width: 413px) {
  .problem-2 {
    margin-top: -670px;
  }
}
@media (max-width: 650px) and (min-width: 414px) and (max-width: 430px) {
  .problem-2 {
    margin-top: -730px;
  }
}/*# sourceMappingURL=estilos.css.map */