/* ===== Paleta (aprox. Pantone > HEX) =====
   Café 156 C  ≈ #E6A66E
   Rojo 171 C  ≈ #FF4F45
   Azul 2935 C ≈ #0051CF
   Turquesa 306 C ≈ #00A9CE
*/
:root {
  --coffee: #E6A66E;
  --red: #FF4F45;
  --blue: #0051CF;
  --teal: #00A9CE;


  --ink: #0E2833;
  --muted: #6F8790;
  --surface: #F5F8F9;
  --white: #ffffff;

  --glass-bg: rgba(255, 255, 255, .65);
  --glass-brd: rgba(255, 255, 255, .35);
  --glass-shadow: 0 10px 40px rgba(0, 40, 60, .15);
  --glass-ui: rgba(70, 80, 90, .55);

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --header-h: 64px;

  --tipo-letra: font-family: Calibri, Arial, sans-serif;
    font-weight: bold;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;fo
  /* background: radial-gradient(60% 60% at 100% 0%, rgba(0, 169, 206, .08), transparent 60%), #fff; */
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto
}

/* ===== Glass util ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  min-height: var(--header-h);
  border-radius: 0;
  border: none;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 4%;
  /* Glass nav background to match hero */
  /* background: background: rgba(70,80,90,.55); */
  /* backdrop-filter: blur(1px) saturate(140%); */
  -webkit-backdrop-filter: blur(1px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

.brand__logo {
  height: 28px;
  width: auto;
}

.brand--footer .brand__logo {
  filter: grayscale(1) brightness(.2)
}

.nav {
  margin-left: auto
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0
}

.nav__list a {
  font-weight: 600
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--red);
  background: linear-gradient(180deg, var(--red), var(--red));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.btn:hover {
  opacity: .95
}

.btn--small {
  padding: .55rem .9rem;
  
}

.btn--full {
  width: 100%
}

.btn--light {
  background: linear-gradient(180deg, var(--teal), #0087A6);
  border-color: transparent;
}

/* Hamburger */
.hamburger {
  margin-left: auto;
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--glass-brd);
  border-radius: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
}

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: .25s
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 auto 0;

  /* Fondo glass (igual que header/hero) */
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  border-top: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);

  transform: translateY(-120%);
  transition: transform .25s ease;
  will-change: transform;
}

.mobile-drawer.open {
  transform: translateY(0)
}

.mobile-drawer ul {
  list-style: none;
  padding: 14px 4%;
  margin: 0;
  display: grid;
  gap: 12px
}



/* Links normales del menú móvil (glass) */
.mobile-drawer a:not(.btn) {
  padding: .9rem 1rem;
  border-radius: 12px;

  /* Más translúcido para que se vea la foto detrás */
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .45);

  display: block;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

/* CTA dentro del menú móvil: mantiene estilo botón */
.mobile-drawer a.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .9rem 1rem;
  border-radius: 14px;

  background: linear-gradient(180deg, var(--red), var(--red));
  border: 1px solid var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
}

.mobile-drawer a.btn:hover {
  opacity: .96;
}


/* Sections */
.section {
  padding: 70px 0
}

.section--alt {
  background: linear-gradient(180deg, #F8FCFF, #F2FAFD)
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  
}

.section__head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 0;
  font-weight: 900;
}



.link {
  font-weight: 700;
  color: var(--blue)
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.cards .card {
  background: linear-gradient(180deg, #ffffff, #F7FBFF);
  border: 1px solid #E7EEF1;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cards .card:hover {
  transform: translateY(-4px)
}

.case {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow)
}

.case img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover
}

.case__content {
  padding: 14px 16px
}

.clients img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #E7EEF1;
  box-shadow: var(--shadow);
}

/* Skills band */
.skills-band {
  margin-top: 24px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.skills-band strong {
  color: #0B1F27
}

.skills-band ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none
}

.skills-band li {
  background: #ffffff;
  border: 1px solid #E7EEF1;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600
}

/* Testimonial */
.quote {
  padding: 28px;
  border-radius: 18px;
  color: #0B1F27
}

.quote p {
  font-size: 1.25rem;
  margin: 0 0 16px
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 12px
}

.quote footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover
}

/* CTA (WhatsApp) */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  padding: 58px 0;
  overflow: hidden;
}

/* subtle glow */
.cta::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .28), transparent 60%);
  filter: blur(10px);
  opacity: .55;
  pointer-events: none;
}

.cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 24px;
}

.cta__copy h2 {
  margin: 0 0 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.cta__copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .92);
  font-weight: 560;
  max-width: 62ch;
}

.cta__meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.cta__metaItem {
  display: grid;
  gap: 4px;
}

.cta__metaLabel {
  font-size: .78rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, .82);
}

.cta__metaLink {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.cta__metaLink:hover {
  text-decoration: underline;
}

.cta__metaText {
  color: rgba(255, 255, 255, .88);
  font-weight: 560;
}

/* Card */
.cta__card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.cta__cardEyebrow {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .75rem;
  color: rgba(255, 255, 255, .86);
}

.cta__cardTitle {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 950;
}

.cta__cardText {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .92);
  font-weight: 560;
}

/* WhatsApp button (premium) */
.cta__whats {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  color: #0B1F27;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cta__whats:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.cta__whatsIcon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), #0087A6);
  color: #fff;
  font-size: 1.2rem;
}

.cta__whatsMain strong {
  display: block;
  font-weight: 950;
}

.cta__whatsMain span {
  display: block;
  color: rgba(11, 31, 39, .72);
  font-weight: 650;
}

.cta__whatsArrow {
  font-weight: 950;
  color: rgba(11, 31, 39, .72);
}

.cta__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta__chip {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: .82rem;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .10);
}

/* decorative accent inside card (sin imagen) */
.cta__photo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 150px;
  height: 120px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), rgba(255, 255, 255, .05) 60%, transparent 70%);
  opacity: .6;
  pointer-events: none;
}

/* Floating WhatsApp FAB */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;

  /* Glass style igual que header/hero */
  background: rgba(70, 80, 90, .55);
  backdrop-filter: blur(0px) saturate(140%);
  -webkit-backdrop-filter: blur(0px) saturate(140%);

  color: #0B1F27;
  text-decoration: none;
  /* border: 1px solid rgba(255,255,255,.45); */
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);

  transition: transform .18s ease, box-shadow .18s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .20);
  animation-play-state: paused;
  /* detiene el latido al interactuar */
}

@keyframes waPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.wa-fab span[aria-hidden="true"] {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #0087A6);
  color: #fff;
  font-size: 1.05rem;
}

.wa-fab__text {
  font-weight: 950;
  letter-spacing: .01em;
}

@media (max-width: 1024px) {
  .cta__grid {
    grid-template-columns: 1fr;
  }

  .cta__photo {
    display: none;
  }
}

@media (max-width: 560px) {
  .wa-fab__text {
    display: none;
  }

  .wa-fab {
    padding: 10px;
  }
}

/* Footer */
.site-footer {
  background: #06161B;
  color: #CFE5EA
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .7fr;
  gap: 24px;
  padding: 34px 0
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.social {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0
}

.social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #0E2A32
}

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

/* Slide-in Animations */
.slide-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

.slide-in.show {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .24s
}

.delay-3 {
  transition-delay: .36s
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr
  }

  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr
  }

  .hero__content {
    grid-template-columns: 1fr
  }

  .cta__grid {
    grid-template-columns: 1fr
  }

  .cta__form {
    grid-template-columns: 1fr
  }
}

@media (max-width: 860px) {
  .nav {
    display: none
  }

  .hamburger {
    display: inline-block
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .site-header {
    padding: 0 14px;
  }
}

@media (max-width: 560px) {
  .kpis {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-6 {
    grid-template-columns: 1fr 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 28px
  }

  .hero__form {
    flex-direction: column
  }
}



/*hero 2 */

/* ===== HERO FULLSCREEN (Imagen de fondo + KPIs dentro) ===== */
.hero--fullscreen {
  position: relative;
  min-height: 100vh;
  /* 100% de la pantalla */
  width: 100%;
  display: grid;
  align-items: center;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(40px + var(--header-h)) 0 48px;
  /* ajustado para centrar mejor el mensaje verticalmente */
  background: url("/assets/images/hero_img.jpeg") center/cover no-repeat;
}

/* Overlay para legibilidad del texto */
/*.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -10deg,
    rgba(255,255,255,.82) 0%,
    rgba(255,255,255,.62) 25%,
    rgba(255,255,255,.18) 80%
  );
  pointer-events: none;
}*/

/* Layout interno: texto a la izquierda, KPIs a la derecha */
/*.hero__layout{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}*/

/* Título */






/* KPIs dentro del hero (lado derecho) */
.hero__kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero__kpis .kpi {
  padding: 18px;
  border-radius: 16px;
  color: #0B1F27;
  /* texto oscuro para glass */
}

.hero__kpis .kpi strong {
  font-size: 1.65rem;
  display: block;
  margin-bottom: 4px;
}

.hero__kpis .kpi span {
  color: rgba(11, 31, 39, .82);
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    /* apila */
  }

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

@media (max-width: 560px) {
  .hero--fullscreen {
    padding: 84px 0 34px;
  }

  .hero__overlay {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .84) 0%,
        rgba(255, 255, 255, .62) 58%,
        rgba(255, 255, 255, .18) 100%);
  }

  .hero__kpis {
    grid-template-columns: 1fr;
    /* KPIs en columna */
  }

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



.texto-calibri-bold {}



.hero__copy h1 {
  font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  font-weight: bold;
  /* font-family: "Manrope", system-ui, sans-serif; */
  /*font-size: clamp(34px, 4.5vw, 54px);*/
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  font-weight: lighter;
  font-weight: 400;
}

.accent {
  background: linear-gradient(90deg, var(--teal), var(--blue) 70%, var(--red));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;

}

.hero__copy p {
  font-size: 1.1rem;
  color: #34535E;
  margin: 0 0 18px
}

/* ===== HERO KPIs ABAJO Y CENTRADOS ===== */

.hero__layout--center {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: calc(100vh - var(--header-h));
  /* compensa header real */
}

.hero__copy {
  max-width: 1020px;
  margin-inline: auto;
}

/* Banner glass para el texto del hero (como el ejemplo) */
.hero--fullscreen .hero__layout--center .hero__copy {
  display: inline-block;
  padding: 24px 36px;
  border-radius: 24px;

  /* Glass limpio como el ejemplo */
  background: rgba(70, 80, 90, .55);
  border: none;

  backdrop-filter: blur(0px) saturate(150%);
  -webkit-backdrop-filter: blur(0px) saturate(150%);

  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

/* Ajuste de color del texto dentro del banner */
.hero--fullscreen .hero__layout--center .hero__copy h1 {
  color: #ffffff;
}

.hero--fullscreen .hero__layout--center .hero__copy p {
  color: rgba(255, 255, 255, .85);
}

/* Fallback si backdrop-filter no está soportado */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero--fullscreen .hero__layout--center .hero__copy {
    background: rgba(210, 218, 224, .78);
  }
}

/* KPIs centrados */
.hero__kpis--center {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-content: center;
}

/* KPI Cards */
.hero__kpis--center .kpi {
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 180px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.hero__kpis--center .kpi strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.hero__kpis--center .kpi span {
  font-weight: 600;
  color: rgba(11, 31, 39, .85);
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero__kpis--center {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero__kpis--center {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}


/*termina hero */


/* ===== Sección Biografía (Myriam Luna) ===== */
.bio {
  padding: 40px 0 70px;
}

.bio__wrap {
  padding: 28px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

/* Media */
.bio__media {
  position: relative;
}

.bio__photo {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* Badges */
.bio__badges {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}



/* ===== Pills premium (badges) ===== */
.bio__chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  color: #ffffff;

  background: linear-gradient(135deg,
      var(--blue),
      var(--teal));

  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  box-shadow:
    0 6px 18px rgba(0, 81, 207, .18),
    inset 0 1px 0 rgba(255, 255, 255, .35);

  transition: transform .25s ease, box-shadow .25s ease;
}

/* Micro-interacción elegante */
.bio__chip:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(0, 81, 207, .25),
    inset 0 1px 0 rgba(255, 255, 255, .4);
}


/* Content */
.bio__eyebrow {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--blue);
}

.bio__title {
  margin: 0 0 6px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0E2833;
}

.bio__subtitle {
  
  margin: 0 0 14px;
  font-weight: 750;
  color: rgba(11, 31, 39, .72);
}

.bio__lead {
  margin: 0 0 14px;
  color: rgba(11, 31, 39, .86);
  font-size: 1.05rem;
  font-weight: 560;
    text-align: justify;

}

.bio__text {
  margin: 0 0 12px;
  color: rgba(11, 31, 39, .82);
    font-weight: 520;
      text-align: justify;

}

/* Quote */
.bio__quote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--teal);
  color: #0B1F27;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

/* CTA */
.bio__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.bio__link {
  font-weight: 850;
  color: var(--teal);
  text-decoration: none;
}

.bio__link:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .bio__wrap {
    grid-template-columns: 1fr;
  }

  .bio__photo {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .bio {
    padding: 28px 0 60px;
  }

  .bio__wrap {
    padding: 20px;
  }

  .bio__photo {
    height: 290px;
  }


}


@media (max-width: 560px) {
  .bio__cta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .bio__cta .btn,
  .bio__cta .bio__link {
    white-space: nowrap;
  }
}

/* ===== Metodologías ===== */
.methods {
  padding: 70px 0;
}

.methods .section__head p {
  max-width: 860px;
  color: rgba(11, 31, 39, .80);
  font-weight: 520;
}

/* Grid */
.methods__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ===== Flip Cards ===== */
.flip-card {
  perspective: 1100px;
}

.flip-card__btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.flip-card__btn:focus-visible {
  outline: 3px solid rgba(0, 169, 206, .35);
  outline-offset: 6px;
  border-radius: 20px;
}


.flip-card__inner {
  position: relative;
  width: 100%;
  min-height: 300px;
  transform-style: preserve-3d;
  transition:
    transform .65s cubic-bezier(.2, .8, .2, 1),
    box-shadow .35s ease;
  border-radius: 18px;
}


/*

.flip-card__inner{
  position: relative;
  width: 100%;
  min-height: 300px;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  border-radius: 18px;
}
*/
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  padding: 18px;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
}

/* Front: imagen de fondo + overlay */
.method-bg {
  /* Mantén la imagen completa dentro de la card (sin recorte) */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  /* Fondo blanco para que el “contain” se vea limpio */
  background-color: #ffffff;
}

/* Cambia estas rutas por tus imágenes */
.method-bg--rc {
  background-image: url("../images/fotos_card/01RADICALCOLLABORATION.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.method-bg--dt {
  background-image: url("../images/fotos_card/02DESIGNTHINKING.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.method-bg--ai {
  background-image: url("../images/fotos_card/03APPRECIATIVEINQUIRY.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.method-bg--ce {
  background-image: url("../images/fotos_card/04TEAMCOACHING.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.method-bg--ho {
  background-image: url("../images/fotos_card/05HAPPINESS.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Sombra/overlay para legibilidad sobre la foto */
.flip-card__shade {
  position: absolute;
  inset: 0;
  /* background:
  linear-gradient(180deg, rgba(6,22,27,0) 0%, rgba(6,22,27,.78) 86%),
  radial-gradient(120% 120% at 0% 0%, rgba(0,169,206,.10) 0%, transparent 60%); */
  pointer-events: none;
}

.flip-card__frontContent {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: 10px;


  /* match card padding */
  padding: 18px;
}





/* Keep pill at top; send the text group to the bottom */
.flip-card__frontContent .flip-card__tag {
  margin-bottom: 6px;
}

.flip-card__frontContent h3 {
  margin-top: auto;
  color: black;
}

/* Tag pill */
.flip-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 10px 18px rgba(0, 81, 207, .18);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}




.flip-card__front h3 {
  margin: 0;
  margin-top: auto;
  /* 👈 ESTA es la clave: baja H3 y empuja P junto */
  padding-bottom: 0;
  font-size: 1.18rem;
  color: black;
  font-weight: 900;
  text-align: center;
  background-color: var(--surface);
  border-radius: 12px;



}

.flip-card__front p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-weight: 560;
  max-width: 32ch;
}

/* Push the title+paragraph to the very bottom of the card */
.flip-card__frontContent h3,
.flip-card__frontContent p {
  position: relative;
}

.flip-card__frontContent p {
  margin-bottom: 0;
}

.flip-card__hint {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  opacity: .9;
}

/* Back */
.flip-card__back {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .35);
}

.flip-card__back h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 950;
  color: #0E2833;
}

.flip-card__back p {
  margin: 0;
  color: rgba(11, 31, 39, .82);
  font-weight: 560;
}

.flip-card__bullets {
  margin: 6px 0 0;
  padding-left: 18px;
  color: rgba(11, 31, 39, .78);
  font-weight: 650;
}

/* Hover flip (desktop) */
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card__inner {
    transform: rotateY(180deg) scale(1.015);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  }
}

/* Click flip (touch) */
.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* ===== Card 6: Quote (sin flip, sin foto) ===== */
.quote-card {
  padding: 22px;
  border-radius: 18px;
  display: grid;
  gap: 10px;
  min-height: 300px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .35);
}

.quote-card__eyebrow {
  margin: 0;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--blue);
}

.quote-card__title {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
  color: #0E2833;
}

.quote-card__text {
  margin: 0;
  color: rgba(11, 31, 39, .82);
  font-weight: bold;
  max-width: 54ch;
  font-size: 1.5em;
text-align: center;
  align-content: center;
}

.quote-card__bar {
  margin-top: auto;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--coffee));
  opacity: .95;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .methods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flip-card__inner,
  .quote-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .methods__grid {
    grid-template-columns: 1fr;
  }

  .flip-card__inner,
  .quote-card {
    min-height: 290px;
  }
}





/* ===== Servicios (Tabs + Cards) ===== */
.services .section__head p {
  color: rgba(11, 31, 39, .80);
  font-weight: 520;
  max-width: 70ch;
}

.services__tabs {
  margin-top: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.services__tab {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .55);
  color: rgba(11, 31, 39, .86);
  border-radius: 16px;
  padding: 16px 18px;

  font-size: 1.15rem; /* 🔥 AQUÍ SUBES EL TAMAÑO */
  font-weight: 950;
  letter-spacing: .03em;

  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.services__tab:hover {
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .services__tab {
    font-size: 1.25rem;
  }
}


.services__tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.services__panels {
  margin-top: 14px;
}

.services__panel {
  display: none;
  padding: 32px 40px 28px;
}

.services__panel.is-active {
  display: block;
}

.services__panelHead {
  display: grid;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
  justify-items: center;
}

.services__panelHead h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0E2833;
}

.services__panelHead p {
  margin: 0;
  color: rgba(11, 31, 39, .72);
  font-weight: 520;
  font-size: 1.02rem;
  line-height: 1.35;
  max-width: 680px;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
}

.service-card h4 {
  margin: 0 0 14px;
  font-weight: 950;
  color: #0E2833;
  text-align: center;
  line-height: 1.2;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: auto;
  display: block;
}

@media (max-width: 1024px) {
  .service-card h4 {
    min-height: 64px;
  }
}

@media (max-width: 560px) {
  .service-card h4 {
    min-height: auto;
  }
}




/* ===== Eventos destacados ===== */
.services__featured {
  margin-top: 34px;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
}


.featured-card,
.featured-card2,
.featured-card3 {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 270px;
}

.featured-card {
  background-color: #87C159;
}

.featured-card2 {
  background: #FF4F45;
}

.featured-card3 {
  background-color: #F3C301;
}

.featured-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 14px;
  text-align: center;
}

.featured-card__pill {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: 1px solid rgba(255, 255, 255, .22);
}

.featured-card h3,
.featured-card2 h3,
.featured-card3 h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 950;
  color: #0E2833;
  line-height: 1.25;
}

.featured-card p,
.featured-card2 p,
.featured-card3 p {
  margin: 0;
  color: rgba(11, 31, 39, .78);
  font-weight: 560;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .services__tabs {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .featured__grid {
    grid-template-columns: 1fr;
  }

  .services__panel {
    padding: 24px 20px;
  }

  .services__panelHead {
    margin: 0 auto 22px;
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }

  .services__panelHead p {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* ====Testimoniales destacados ==== */

/* ===== Testimonios (Carrusel limpio) ===== */
#testimonios .section__head {
  align-items: center;
}

/* Contenedor con máscara sutil (se ve más “carrusel”) */
.testi {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* Controles minimal (sin sensación de barra) */
.testi__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testi__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .60);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  cursor: pointer;
  font-weight: 900;
  font-size: 1rem;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.testi__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.testi__btn:active {
  transform: translateY(0px);
}

/* Track: SIN scrollbar visible */
.testi__track {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 10px;

  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  -webkit-overflow-scrolling: touch;
}

.testi__track::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */

/* Cards más finas y tipografía menos grande */
.testi__card {
  scroll-snap-align: start;
  padding: 22px;
  border-radius: 18px;
  min-height: 160px;
}

.testi__quote {
  font-family: "League Spartan", Inter, system-ui, sans-serif;
  font-size: clamp(18px, 1.85vw, 22px);
  line-height: 1.28;
  margin: 0 0 16px;
  color: #0B1F27;
}

.testi__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi__footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi__footer strong {
  display: block;
  font-weight: 900;
  color: #0B1F27;
}

.testi__footer span {
  display: block;
  color: rgba(11, 31, 39, .68);
  font-weight: 650;
}

/* 3 visibles en desktop */
@media (min-width: 1025px) {
  .testi__track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }
}

@media (max-width: 1024px) {
  .testi__track {
    grid-auto-columns: minmax(320px, 82%);
  }
}

@media (max-width: 560px) {
  .testi__controls {
    display: none;
  }

  .testi {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testi__track {
    grid-auto-columns: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi__track {
    scroll-behavior: auto;
  }
}



/* Carrousel  */