/* =========================================================
   THE FLOOR CREW — style.css
   Hoja de estilos generada al separar el CSS inline del HTML.
   Estructura:
   1. Fuentes
   2. Reset / base
   3. Keyframes (animaciones)
   4. Componentes reutilizables (botones, links, cards, FAQ...)
   5. Scroll-reveal (data-reveal)
   6. Clases generadas automáticamente a partir del CSS inline (tfc-N)
   ========================================================= */

/* 1. Fuentes ------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* 2. Reset / base -------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080432;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* 3. Keyframes ------------------------------------------------ */
@keyframes tfcGlow {

  0%,
  100% {
    opacity: .7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes tfcMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tfcDash {
  to {
    stroke-dashoffset: -48;
  }
}

/* 4. Componentes reutilizables --------------------------------- */

/* Nav / footer links */
.link {
  transition: color .2s ease;
}

.link:hover {
  color: #ffffff !important;
}

/* Botones */
.btn-yellow:hover,
.btn-yellow-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247, 188, 20, .35);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .55) !important;
  background: rgba(255, 255, 255, .06);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(8, 4, 50, .35);
}

/* Badge "US-Based" del hero */
.us-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(247, 188, 20, .4);
  border-radius: 999px;
  background: rgba(247, 188, 20, .08);
  font: 500 13px/1 'Archivo', sans-serif;
  color: #F7BC14;
}

/* Cards del sistema de crecimiento (6 etapas) */
.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 188, 20, .4) !important;
  background: rgba(255, 255, 255, .055) !important;
}

/* Tag pills (industry depth) */
.tag-pill:hover {
  border-color: rgba(247, 188, 20, .5) !important;
  color: #ffffff !important;
  background: rgba(247, 188, 20, .08);
}

/* Case study cards */
.case-card:hover {
  border-color: rgba(247, 188, 20, .35) !important;
}

/* Filas del proceso (7 pasos) */
.process-row:hover {
  background: rgba(255, 255, 255, .03);
}

/* Foto del equipo */
.team-photo {
  display: block;
}

/* FAQ (acordeón basado en <details>/<summary>) */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
}

.faq-toggle::-webkit-details-marker {
  display: none;
}

.faq-q {
  font: 600 clamp(16px, 1.8vw, 19px)/1.4 'Archivo', sans-serif;
  color: #ffffff;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #F7BC14;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 4px 26px;
}

.faq-a p {
  margin: 0;
  font: 400 15px/1.65 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .6);
}

/* 5. Scroll-reveal (data-reveal) --------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  /* el retraso (delay) según el valor de data-reveal lo aplica app.js */
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respeta a quienes prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .tfc-10,
  .tfc-23,
  .tfc-61 {
    /* brillo del hero, marquesina y línea punteada */
    animation: none !important;
  }
}

/* 6. Clases generadas desde el CSS inline ------------------------- */
.tfc-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(8, 4, 50, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tfc-2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tfc-3 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.tfc-4 {
  height: 38px;
  width: auto;
  display: block;
}

.tfc-5 {
  display: flex;
  align-items: center;
  gap: 32px;
  font: 500 14px/1 'Archivo', sans-serif;
}

.tfc-6 {
  color: rgba(255, 255, 255, .75);
}

.tfc-7 {
  flex: none;
  display: inline-flex;
  align-items: center;
  background: #F7BC14;
  color: #080432;
  font: 600 14px/1 'Archivo', sans-serif;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tfc-8 {
  position: relative;
  overflow: hidden;
  padding: 196px 32px 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tfc-9 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
}

.tfc-10 {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 640px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(247, 188, 20, .16) 0%, rgba(247, 188, 20, .05) 40%, transparent 70%);
  animation: tfcGlow 7s ease-in-out infinite;
}

.tfc-11 {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.tfc-12 {
  margin: 0 0 28px;
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #F7BC14;
}

.tfc-13 {
  margin: 0;
  max-width: 1060px;
  font: 800 clamp(46px, 6.6vw, 102px)/0.98 'Archivo', sans-serif;
  letter-spacing: -.038em;
  color: #ffffff;
  text-wrap: balance;
}

.tfc-14 {
  color: #F7BC14;
}

.tfc-15 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 44px;
}

.tfc-16 {
  margin: 0;
  max-width: 520px;
  font: 400 clamp(17px, 1.5vw, 20px)/1.6 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .68);
}

.tfc-17 {
  color: #F7BC14;
  font-weight: 700;
}

.tfc-18 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tfc-19 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F7BC14;
  color: #080432;
  font: 600 16px/1 'Archivo', sans-serif;
  padding: 18px 32px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tfc-20 {
  font-size: 18px;
  line-height: 1;
}

.tfc-21 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
  font: 600 16px/1 'Archivo', sans-serif;
  padding: 18px 32px;
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
}

.tfc-22 {
  position: relative;
  margin-top: 88px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  white-space: nowrap;
}

.tfc-23 {
  display: inline-flex;
  gap: 0;
  animation: tfcMarquee 42s linear infinite;
  will-change: transform;
}

.tfc-24 {
  font: 800 clamp(28px, 3vw, 44px)/1 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .28);
}

.tfc-25 {
  padding: 96px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.tfc-26 {
  max-width: 1280px;
  margin: 0 auto;
}

.tfc-27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 32px;
}

.tfc-28 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tfc-29 {
  font: 800 clamp(38px, 3.6vw, 54px)/1 'Archivo', sans-serif;
  letter-spacing: -.03em;
  color: #ffffff;
}

.tfc-30 {
  font: 500 12px/1.4 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.tfc-31 {
  padding: 64px 32px;
  background: #ffffff;
}

.tfc-32 {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
}

.tfc-33 {
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(8, 4, 50, .45);
}

.tfc-34 {
  height: clamp(150px, 1vw, 200px);
  width: auto;
  object-fit: contain;
}

.tfc-35 {
  padding: clamp(96px, 11vw, 150px) 32px;
  background: #04021d;
}

.tfc-36 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 72px;
  align-items: center;
}

.tfc-37 {
  margin: 0 0 24px;
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #F7BC14;
}

.tfc-38 {
  margin: 0 0 28px;
  font: 700 clamp(36px, 4.2vw, 58px)/1.04 'Archivo', sans-serif;
  letter-spacing: -.032em;
  color: #ffffff;
  text-wrap: balance;
}

.tfc-39 {
  margin: 0 0 18px;
  max-width: 480px;
  font: 400 17px/1.65 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.tfc-40 {
  margin: 0;
  max-width: 480px;
  font: 400 17px/1.65 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.tfc-41 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
}

.tfc-42 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.tfc-43 {
  font: 600 15px/1.3 'Archivo', sans-serif;
  color: #ffffff;
}

.tfc-44 {
  font: 700 20px/1 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #F7BC14;
}

.tfc-45 {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.tfc-46 {
  height: 100%;
  border-radius: 3px;
  width: 100%;
  background: #F7BC14;
}

.tfc-47 {
  font: 400 13px/1.4 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .45);
}

.tfc-48 {
  font: 700 20px/1 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #ffffff;
}

.tfc-49 {
  height: 100%;
  border-radius: 3px;
  width: 62%;
  background: rgba(247, 188, 20, .65);
}

.tfc-50 {
  height: 100%;
  border-radius: 3px;
  width: 38%;
  background: rgba(255, 255, 255, .4);
}

.tfc-51 {
  height: 100%;
  border-radius: 3px;
  width: 18%;
  background: rgba(255, 255, 255, .28);
}

.tfc-52 {
  font: 700 20px/1 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .6);
}

.tfc-53 {
  height: 100%;
  border-radius: 3px;
  width: 8%;
  background: rgba(255, 255, 255, .18);
}

.tfc-54 {
  margin: 8px 0 0;
  font: 500 12px/1.5 'IBM Plex Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.tfc-55 {
  padding: clamp(96px, 11vw, 150px) 32px;
  scroll-margin-top: 60px;
}

.tfc-56 {
  max-width: 760px;
  margin-bottom: 72px;
}

.tfc-57 {
  margin: 0 0 24px;
  font: 700 clamp(36px, 4.2vw, 58px)/1.04 'Archivo', sans-serif;
  letter-spacing: -.032em;
  color: #ffffff;
  text-wrap: balance;
}

.tfc-58 {
  margin: 0;
  font: 400 17px/1.65 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.tfc-59 {
  position: relative;
}

.tfc-60 {
  position: absolute;
  top: 34px;
  left: 2%;
  width: 96%;
  height: 2px;
  overflow: visible;
}

.tfc-61 {
  animation: tfcDash 1.4s linear infinite;
}

.tfc-62 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.tfc-63 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 26px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.tfc-64 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #080432;
  border: 1px solid rgba(247, 188, 20, .6);
  font: 500 13px/1 'IBM Plex Mono', monospace;
  color: #F7BC14;
}

.tfc-65 {
  font: 700 20px/1.2 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #ffffff;
}

.tfc-66 {
  font: 400 14px/1.55 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .55);
}

.tfc-67 {
  padding: clamp(96px, 11vw, 150px) 32px;
  background: #04021d;
  scroll-margin-top: 60px;
}

.tfc-68 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.tfc-69 {
  max-width: 680px;
}

.tfc-70 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
  font: 600 15px/1 'Archivo', sans-serif;
  padding: 16px 28px;
  border-radius: 999px;
  transition: border-color .2s ease;
}

.tfc-71 {
  font-size: 17px;
  line-height: 1;
}

.tfc-72 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px;
}

.tfc-73 {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
}

.tfc-74 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tfc-75 {
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F7BC14;
}

.tfc-76 {
  font: 700 24px/1.15 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #ffffff;
}

.tfc-77 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tfc-78 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.tfc-79 {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F7BC14;
}

.tfc-80 {
  font: 500 15px/1.4 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .82);
}

.tfc-81 {
  font: 400 14px/1.55 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .5);
}

.tfc-82 {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  padding: 26px 32px;
  border: 1px solid rgba(247, 188, 20, .35);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 188, 20, .08), rgba(247, 188, 20, .02));
}

.tfc-83 {
  font: 600 17px/1.3 'Archivo', sans-serif;
  color: #ffffff;
}

.tfc-84 {
  font: 500 15px/1 'IBM Plex Mono', monospace;
  color: rgba(255, 255, 255, .45);
}

.tfc-85 {
  font: 700 17px/1.3 'Archivo', sans-serif;
  color: #F7BC14;
}

.tfc-86 {
  padding: clamp(96px, 11vw, 150px) 32px;
}

.tfc-87 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 72px;
  align-items: start;
}

.tfc-88 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.tfc-89 {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font: 500 14px/1 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .8);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.tfc-90 {
  max-width: 720px;
  margin-bottom: 64px;
}

.tfc-91 {
  margin: 0;
  font: 400 15px/1.6 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .45);
}

.tfc-92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 24px;
}

.tfc-93 {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color .25s ease;
}

.tfc-94 {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  background: #131314;
}

.tfc-95 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 30px 34px;
}

.tfc-96 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tfc-97 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tfc-98 {
  font: 700 22px/1.2 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #ffffff;
}

.tfc-99 {
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.tfc-100 {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(247, 188, 20, .1);
  border: 1px solid rgba(247, 188, 20, .4);
}

.tfc-101 {
  font: 800 26px/1 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #F7BC14;
}

.tfc-102 {
  font: 500 10px/1 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.tfc-103 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tfc-104 {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tfc-105 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font: 500 13px/1.3 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .6);
}

.tfc-106 {
  color: #ffffff;
  font-weight: 600;
}

.tfc-107 {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .07);
}

.tfc-108 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-109 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 92%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-110 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 95%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-111 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-112 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 14%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-113 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 88%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-114 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 17%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-115 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 94%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-116 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 90%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-117 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-118 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  border-radius: 3px;
  background: rgba(255, 255, 255, .22);
}

.tfc-119 {
  position: absolute;
  inset: 0 auto 0 0;
  width: 90%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(247, 188, 20, .5), #F7BC14);
  mix-blend-mode: screen;
}

.tfc-120 {
  margin: 0;
  font: 700 clamp(36px, 4.2vw, 58px)/1.04 'Archivo', sans-serif;
  letter-spacing: -.032em;
  color: #ffffff;
  text-wrap: balance;
}

.tfc-121 {
  display: flex;
  flex-direction: column;
}

.tfc-122 {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s ease;
}

.tfc-123 {
  font: 500 14px/1 'IBM Plex Mono', monospace;
  color: #F7BC14;
}

.tfc-124 {
  font: 700 clamp(20px, 2vw, 26px)/1.2 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: #ffffff;
}

.tfc-125 {
  font: 400 15px/1.6 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .55);
}

.tfc-126 {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.tfc-127 {
  font: 800 72px/0.5 'Archivo', sans-serif;
  color: #F7BC14;
}

.tfc-128 {
  margin: 0;
  font: 500 clamp(24px, 2.6vw, 34px)/1.35 'Archivo', sans-serif;
  letter-spacing: -.015em;
  color: #ffffff;
  text-wrap: balance;
}

.tfc-129 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tfc-130 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.tfc-131 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.tfc-132 {
  font: 600 16px/1.2 'Archivo', sans-serif;
  color: #ffffff;
}

.tfc-133 {
  font: 500 12px/1.3 'IBM Plex Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.tfc-134 {
  margin: 0;
  font: 400 13px/1.5 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .35);
}

.tfc-135 {
  margin-top: 80px;
}

.tfc-136 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.tfc-137 {
  font: 400 13px/1.4 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .4);
}

.tfc-138 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}

.tfc-139 {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
  border-radius: 18px;
  background: #0d0850;
  object-fit: cover;
}

.tfc-140 {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(8, 4, 50, .85);
  border: 1px solid rgba(247, 188, 20, .5);
  font: 600 12px/1 'Archivo', sans-serif;
  letter-spacing: .04em;
  color: #F7BC14;
  pointer-events: none;
}

.tfc-141 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.tfc-142 {
  font: 500 11px/1.4 'IBM Plex Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.tfc-143 {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.tfc-144 {
  margin: 24px 0 0;
  font: 400 13px/1.5 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .35);
}

.tfc-145 {
  max-width: 880px;
  margin: 0 auto;
}

.tfc-146 {
  margin-bottom: 56px;
}

.tfc-147 {
  margin: 0;
  font: 700 clamp(36px, 4.2vw, 54px)/1.04 'Archivo', sans-serif;
  letter-spacing: -.032em;
  color: #ffffff;
}

.tfc-148 {
  padding: clamp(110px, 12vw, 170px) 32px;
  background: linear-gradient(180deg, #F7BC14, #e8ad06);
  scroll-margin-top: 60px;
}

.tfc-149 {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.tfc-150 {
  margin: 0;
  font: 800 clamp(40px, 5.4vw, 76px)/1.02 'Archivo', sans-serif;
  letter-spacing: -.036em;
  color: #080432;
  text-wrap: balance;
}

.tfc-151 {
  margin: 0;
  max-width: 560px;
  font: 500 clamp(17px, 1.6vw, 20px)/1.55 'Archivo', sans-serif;
  color: rgba(8, 4, 50, .75);
}

.tfc-152 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #080432;
  color: #F7BC14;
  font: 600 17px/1 'Archivo', sans-serif;
  padding: 20px 40px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tfc-153 {
  font-size: 19px;
  line-height: 1;
}

.tfc-154 {
  width: 100%;
  max-width: 760px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(8, 4, 50, .35);
  border-radius: 20px;
  background: rgba(255, 255, 255, .25);
}

.tfc-155 {
  font: 500 13px/1 'IBM Plex Mono', monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(8, 4, 50, .6);
}

.tfc-156 {
  font: 400 14px/1.5 'Archivo', sans-serif;
  color: rgba(8, 4, 50, .55);
}

.tfc-157 {
  padding: 72px 32px 48px;
  background: #02010f;
}

.tfc-158 {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tfc-159 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.tfc-160 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 340px;
}

.tfc-161 {
  height: 44px;
  width: auto;
  align-self: flex-start;
}

.tfc-162 {
  margin: 0;
  font: 400 15px/1.6 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .5);
}

.tfc-163 {
  color: #F7BC14;
  font-weight: 600;
}

.tfc-164 {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.tfc-165 {
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.tfc-166 {
  font: 500 15px/1 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .7);
}

.tfc-167 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.tfc-168 {
  font: 400 13px/1 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .35);
}

.tfc-169 {
  font: 500 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

/* =========================================================
   7. Menú mobile (hamburguesa) + CTAs de WhatsApp
   ========================================================= */

/* --- Botón hamburguesa: oculto en desktop --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Panel de menú mobile: oculto por defecto (colapsado) --- */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease, visibility 0s linear .35s;
}

.mobile-nav.is-open {
  max-height: 480px;
  opacity: 1;
  visibility: visible;
  padding: 8px 32px 24px;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease, visibility 0s linear 0s;
}

.mobile-nav-link {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font: 500 16px/1 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .85);
}

.mobile-nav-cta {
  margin-top: 16px;
  justify-content: center;
  text-align: center;
  padding: 15px 22px;
  border-radius: 999px;
  font: 600 15px/1 'Archivo', sans-serif;
}

/* --- Breakpoint: por debajo de 880px se colapsa a menú hamburguesa --- */
@media (max-width: 880px) {

  .nav-desktop,
  .nav-cta-desktop {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .tfc-2 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 881px) {
  .mobile-nav {
    display: none;
  }
}

/* --- Botón flotante de WhatsApp --- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35), 0 0 0 rgba(37, 211, 102, .6);
  animation: tfcWhatsappPulse 2.4s ease-out infinite;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes tfcWhatsappPulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35), 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35), 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

/* --- Tarjeta de WhatsApp en el CTA final (reemplaza el embed de Calendly) --- */
.whatsapp-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .4);
  border: 1px solid rgba(8, 4, 50, .12);
}

.whatsapp-card-icon {
  flex: none;
  width: 40px;
  height: 40px;
}

.whatsapp-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.whatsapp-card-label {
  font: 500 13px/1.3 'Archivo', sans-serif;
  color: rgba(8, 4, 50, .6);
}

.whatsapp-card-number {
  font: 700 20px/1.2 'Archivo', sans-serif;
  letter-spacing: -.01em;
  color: #080432;
}

.whatsapp-card-number:hover {
  color: #25D366;
}

@media (max-width: 480px) {
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .whatsapp-card-text {
    align-items: center;
    text-align: center;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .tfc-94 {
    height: 160px;
  }
}

/* --- Book a call: opciones (Calendly + formulario) --- */
.book-call-section {
  position: relative;
  overflow: hidden;
}

.book-call-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(247, 188, 20, .12) 0%, rgba(247, 188, 20, .04) 40%, transparent 70%);
}

.book-call-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.book-call-option {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  transition: border-color .25s ease, background .25s ease;
}

.book-call-option:hover {
  border-color: rgba(247, 188, 20, .3);
  background: rgba(255, 255, 255, .05);
}

.book-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  border-radius: 14px;
  background: rgba(247, 188, 20, .1);
  color: #F7BC14;
}

.book-call-text {
  margin: -6px 0 0;
  font: 400 15px/1.6 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.book-call-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.book-call-list li {
  position: relative;
  padding-left: 26px;
  font: 400 14px/1.5 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.book-call-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #F7BC14;
  font-weight: 700;
}

.book-call-option .book-call-cta {
  align-self: flex-start;
  margin-top: auto;
}

.book-call-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.book-call-divider::before,
.book-call-divider::after {
  content: '';
  flex: 1;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}

.book-call-divider span {
  flex: none;
  font: 600 12px/1 'IBM Plex Mono', monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .book-call-grid {
    grid-template-columns: 1fr;
  }

  .book-call-divider {
    flex-direction: row;
    padding: 4px 0;
  }

  .book-call-divider::before,
  .book-call-divider::after {
    height: 1px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Formulario de contacto */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font: 500 13px/1 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .65);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: #ffffff;
  font: 500 15px/1.4 'Archivo', sans-serif;
  transition: border-color .2s ease, background .2s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.form-input:focus {
  outline: none;
  border-color: rgba(247, 188, 20, .55);
  background: rgba(255, 255, 255, .07);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Archivo', sans-serif;
}

/* Honeypot: oculto para personas, visible para bots */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-status {
  margin: 0;
  font: 500 14px/1.5 'Archivo', sans-serif;
}

.form-status.is-success {
  color: #4ade80;
}

.form-status.is-error {
  color: #f87171;
}