/* =========================================================
   FIXERGO - INTRO / SELECTOR DE SERVICIOS
   Bootstrap 5 + CSS personalizado
========================================================= */

:root {
  --fixer-blue: #0753b9;
  --fixer-blue-dark: #063a82;
  --fixer-blue-soft: #eaf3ff;

  --fixer-green: #40b943;
  --fixer-green-dark: #27852d;
  --fixer-green-soft: #ebfaec;

  --fixer-dark: #10233f;
  --fixer-muted: #68778d;
  --fixer-white: #ffffff;

  --page-bg: #f6f9fd;
  --card-shadow: 0 24px 55px rgba(16, 35, 63, 0.12);
  --card-shadow-hover: 0 30px 70px rgba(16, 35, 63, 0.20);

  --brand-width-start: min(760px, 84vw);
  --brand-width-end: min(270px, 58vw);
}


/* Base
--------------------------------------------------------- */

html,
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #06111f;
  color: var(--fixer-dark);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 111, 255, 0.25), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(56, 220, 89, 0.19), transparent 30%),
    radial-gradient(circle at 56% 42%, rgba(0, 169, 255, 0.08), transparent 24%),
    linear-gradient(145deg, #050c17 0%, #071524 46%, #06111f 100%);
}

body::after {
  z-index: -2;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(45, 150, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 150, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(64, 185, 67, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 185, 67, 0.035) 1px, transparent 1px);
  background-size: 44px 44px,44px 44px,220px 220px,220px 220px;
  -webkit-mask-image: radial-gradient(circle at center, #000 26%, transparent 92%);
  mask-image: radial-gradient(circle at center, #000 26%, transparent 92%);
  animation: techGridDrift 24s linear infinite;
}

.fixergo-home {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}


/* =========================================================
   ESCENA DEL LOGO
========================================================= */

.brand-stage {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  pointer-events: none;

  transition:
    background-color 650ms ease,
    opacity 600ms ease;
}

.brand-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(10, 27, 47, 0.94), rgba(5, 12, 23, 0.99));
  z-index: -1;
  transition: opacity 650ms ease;
}

.brand-stage__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  transition:
    top 1600ms cubic-bezier(.22, 1, .36, 1),
    transform 1600ms cubic-bezier(.22, 1, .36, 1);
}


/* Logo
--------------------------------------------------------- */

.brand-logo-wrap {
  position: relative;
  width: var(--brand-width-start);
  transition:
    width 1600ms cubic-bezier(.22, 1, .36, 1),
    filter 500ms ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 15px 28px rgba(16, 35, 63, 0.10));
}



/* Cargando servicios
--------------------------------------------------------- */

.loading-panel {
  margin-top: clamp(24px, 4vw, 38px);
  width: min(360px, 72vw);
  text-align: center;

  transition:
    opacity 350ms ease,
    transform 350ms ease,
    visibility 350ms ease;
}

.loading-panel__text {
  margin: 0 0 12px;
  font-size: clamp(0.84rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fixer-white);
}

.loading-dots span {
  display: inline-block;
  animation: fixerDot 1.2s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.30s;
}

.loading-line {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.08);
}

.loading-line__bar {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--fixer-blue), var(--fixer-green));
  animation: fixerLoadingBar 1.25s ease-in-out infinite;
}


/* Estado final del logo
--------------------------------------------------------- */

.brand-stage.is-ready::before {
  opacity: 0;
}

.brand-stage.is-ready .brand-stage__content {
  top: 35px;
  transform: translate(-50%, 0);
}

.brand-stage.is-ready .brand-logo-wrap {
  width: var(--brand-width-end);
}

.brand-stage.is-ready .logo-action {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
}

.brand-stage.is-ready .loading-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

/*
  Cuando la transición termina, la escena deja de bloquear visualmente
  el resto de la página, pero mantiene el logo pequeño arriba.
*/
.brand-stage.is-settled {
  position: absolute;
  height: 145px;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-section {
  min-height: 100vh;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 190px 0 70px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);

  transition:
    opacity 750ms ease,
    transform 750ms cubic-bezier(.22, 1, .36, 1),
    visibility 750ms ease;
}

.services-section.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-heading {
  max-width: 680px;
  margin: 0 auto 42px;
}

.services-heading__eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fixer-green-dark);
}

.services-heading__title {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  color: #f4f8ff;
  text-shadow: 0 10px 32px rgba(0,0,0,.24);
}

.services-heading__subtitle {
  margin: 0;
  color: #9fb0c5;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.home-brand-intro {
  max-width: 780px;
  margin: 0 auto 38px;
  padding: 0 16px 34px;
  border-bottom: 1px solid rgba(135,188,255,.12);
}

.home-brand-intro__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fixer-blue);
}

.home-brand-intro__title {
  margin: 0 0 12px;
  font-size: clamp(1.38rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #f4f8ff;
  text-shadow: 0 10px 28px rgba(0,0,0,.20);
}

.home-brand-intro__text {
  max-width: 720px;
  margin: 0 auto;
  color: #b5c3d6;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.72;
}


/* Cards
--------------------------------------------------------- */
.service-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; gap: 26px; height: 100%;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(135,188,255,.14); border-radius: 28px;
  background: linear-gradient(135deg, rgba(13,32,54,.88), rgba(7,20,36,.76));
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  color: inherit; text-decoration: none;
  box-shadow: 0 24px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(22px);
  opacity: 0; transform-style: preserve-3d; will-change: transform;
  transition: transform 180ms ease, box-shadow 300ms ease, border-color 300ms ease, opacity 650ms ease;
}
.service-card::before { content:""; position:absolute; inset:0; z-index:-1; opacity:0; background:radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.16), transparent 28%); transition:opacity 260ms ease; }
.service-card::after { content:""; position:absolute; inset:1px; z-index:-2; border-radius:inherit; background:linear-gradient(115deg,transparent 18%,rgba(48,145,255,.055) 42%,rgba(62,223,95,.05) 58%,transparent 82%); background-size:220% 100%; animation:cardDataSweep 8s linear infinite; }
.services-section.is-visible .service-card { opacity:1; transform:perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0); }
.services-section.is-visible .col-12:nth-child(1) .service-card { transition-delay:140ms; }
.services-section.is-visible .col-12:nth-child(2) .service-card { transition-delay:260ms; }
.service-card:hover,.service-card:focus-visible,.service-card.is-touching { box-shadow:0 34px 90px rgba(0,0,0,.46),0 0 34px rgba(35,129,255,.08); }
.service-card:hover::before,.service-card:focus-visible::before,.service-card.is-touching::before { opacity:1; }
.service-card--blue:hover,.service-card--blue:focus-visible,.service-card--blue.is-touching { border-color:rgba(49,145,255,.42); }
.service-card--green:hover,.service-card--green:focus-visible,.service-card--green.is-touching { border-color:rgba(76,220,89,.42); }
.service-card:focus-visible { outline:3px solid rgba(64,185,67,.22); outline-offset:4px; }

/* Logos de servicio
--------------------------------------------------------- */
.service-card__visual { position:relative; flex:0 0 clamp(150px,15vw,205px); min-height:132px; display:grid; place-items:center; transform:translateZ(46px); transition:transform 320ms cubic-bezier(.22,1,.36,1); }
.service-card__visual::before { content:""; position:absolute; width:72%; aspect-ratio:1; border-radius:50%; filter:blur(24px); opacity:.18; transform:scale(.82); transition:transform 350ms ease,opacity 350ms ease; }
.service-card--blue .service-card__visual::before { background:#0c73ff; }
.service-card--green .service-card__visual::before { background:#46dd57; }
.service-card__orbit { position:absolute; width:92%; aspect-ratio:1; border-radius:50%; border:1px solid rgba(130,185,255,.12); opacity:.7; transition:transform 500ms cubic-bezier(.22,1,.36,1),opacity 350ms ease; }
.service-card__orbit::before,.service-card__orbit::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(64,185,67,.10); }
.service-card__orbit::before { inset:16%; }
.service-card__orbit::after { width:8px; height:8px; top:7%; left:50%; border:0; background:#44df58; box-shadow:0 0 16px rgba(68,223,88,.72); }
.service-card__logo { position:relative; z-index:2; width:100%; max-width:200px; height:auto; object-fit:contain; filter:drop-shadow(0 16px 22px rgba(0,0,0,.28)) drop-shadow(0 0 12px rgba(20,110,255,.08)); transform:translateZ(55px) scale(1); transition:transform 420ms cubic-bezier(.22,1,.36,1),filter 420ms ease; }
.service-card:hover .service-card__visual,.service-card:focus-visible .service-card__visual,.service-card.is-touching .service-card__visual { transform:translateZ(62px) translateY(-4px); }
.service-card:hover .service-card__logo,.service-card:focus-visible .service-card__logo,.service-card.is-touching .service-card__logo { transform:translateZ(72px) scale(1.065); filter:drop-shadow(0 20px 28px rgba(0,0,0,.34)) drop-shadow(0 0 18px rgba(52,170,255,.18)); }
.service-card:hover .service-card__orbit,.service-card:focus-visible .service-card__orbit,.service-card.is-touching .service-card__orbit { transform:rotate(16deg) scale(1.06); opacity:1; }
.service-card:hover .service-card__visual::before,.service-card:focus-visible .service-card__visual::before,.service-card.is-touching .service-card__visual::before { transform:scale(1.14); opacity:.30; }

/* Contenido
--------------------------------------------------------- */

.service-card__body {
  min-width: 0;
}

.service-card__number {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.48;
}

.service-card__title {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: #f4f8ff;
}

.service-card__text {
  margin: 0 0 22px;
  color: #a9b8ca;
  line-height: 1.72;
  font-size: 0.95rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  font-weight: 700;
}

.service-card--blue .service-card__link {
  color: var(--fixer-blue);
}

.service-card--green .service-card__link {
  color: var(--fixer-green-dark);
}

.service-card__link i {
  transition: transform 250ms ease;
}

.service-card:hover .service-card__link i,
.service-card:focus-visible .service-card__link i {
  transform: translateX(5px);
}

.home-proof {
  max-width: 1050px;
  margin: 46px auto 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(135,188,255,.12);
}

.home-proof__intro {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-proof__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fixer-green-dark);
}

.home-proof__intro h2 {
  margin: 0 0 12px;
  color: #f4f8ff;
  font-size: clamp(1.25rem, 2.7vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.home-proof__intro p {
  max-width: 700px;
  margin: 0 auto;
  color: #a9b8ca;
  font-size: 0.96rem;
  line-height: 1.72;
}

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

.home-proof__item {
  min-width: 0;
  height: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(135,188,255,.13);
  border-radius: 20px;
  background: rgba(7, 18, 32, 0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.home-proof__item i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #06111f;
  background: linear-gradient(135deg, #36b8ff, #4de2b0);
}

.home-proof__item h3 {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: 1rem;
  font-weight: 700;
}

.home-proof__item p {
  margin: 0;
  color: #9fb0c5;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================================
   CONTACTO GENERAL
========================================================= */

.home-contact {
  position: relative;
  z-index: 5;
  padding: 34px 0 76px;
}

.home-contact__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(135, 188, 255, 0.14);
  border-radius: 28px;
  background: rgba(7, 18, 32, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.home-contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-contact__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #48d85b;
}

.home-contact__title {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  color: #f4f8ff;
}

.home-contact__text {
  margin: 0;
  color: #a9b8ca;
  font-size: 0.98rem;
  line-height: 1.76;
}

.home-contact__channels {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.home-contact__channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #d9e7f7;
  font-size: 0.94rem;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-contact__channel i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fixer-blue), var(--fixer-green));
}

.home-contact__channel:hover,
.home-contact__channel:focus {
  color: #ffffff;
}

.home-contact__form-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(135, 188, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(13, 32, 54, 0.82), rgba(4, 13, 25, 0.76));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 20px 46px rgba(0,0,0,.18);
}

.home-contact__form-head {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(135, 188, 255, 0.12);
}

.home-contact__form-head span {
  color: #48d85b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-contact__form-head strong {
  color: #f4f8ff;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.35;
}

.home-contact__form {
  display: grid;
  gap: 20px;
}

.home-contact__hidden {
  display: none;
}

.home-contact__label {
  display: block;
  margin-bottom: 8px;
  color: #d8e5f5;
  font-size: 0.88rem;
  font-weight: 600;
}

.home-contact__control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(135, 188, 255, 0.18);
  border-radius: 12px;
  color: #f4f8ff;
  background: rgba(3, 12, 23, 0.74);
  outline: 0;
  appearance: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.home-contact__control::placeholder {
  color: #74869c;
}

.home-contact__control:focus {
  border-color: rgba(73, 203, 255, 0.72);
  background: rgba(4, 15, 29, 0.94);
  box-shadow: 0 0 0 4px rgba(18, 133, 255, 0.14);
}

.home-contact__textarea {
  min-height: 132px;
  resize: vertical;
}

.home-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  color: #06111f;
  font-weight: 700;
  background: linear-gradient(135deg, #36b8ff, #4de2b0);
  box-shadow: 0 18px 38px rgba(29, 194, 222, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.home-contact__button:hover,
.home-contact__button:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(29, 194, 222, 0.28);
}

.home-contact__button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.home-contact__status {
  min-height: 22px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-contact__status--success {
  color: #63e47d;
}

.home-contact__status--error {
  color: #ff8fa3;
}

/* =========================================================
   BOTON FLOTANTE Y MODAL SOBRE FIXERGO
========================================================= */

.about-floating-button {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  top: 50%;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: auto;
  max-width: 60px;
  min-width: 60px;
  min-height: 60px;
  padding: 9px;
  border: 1px solid rgba(135, 188, 255, 0.22);
  border-radius: 999px;
  color: #f4f8ff;
  background: linear-gradient(135deg, rgba(13, 32, 54, 0.94), rgba(5, 16, 30, 0.92));
  box-shadow: 0 18px 42px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(18px) scale(.96);
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    transform 260ms ease,
    max-width 260ms ease,
    padding 260ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.home-intro-ready .about-floating-button,
body:has(.brand-stage.is-settled) .about-floating-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}

.about-floating-button:hover,
.about-floating-button:focus {
  gap: 10px;
  max-width: min(240px, calc(100vw - 28px));
  padding: 10px 14px 10px 10px;
  color: #ffffff;
  border-color: rgba(73, 203, 255, 0.48);
  box-shadow: 0 22px 52px rgba(0,0,0,.42), 0 0 28px rgba(54, 184, 255, 0.12);
  transform: translateY(-50%) translateX(-3px);
}

.about-floating-button__icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #06111f;
  background: linear-gradient(135deg, #36b8ff, #4de2b0);
}

.about-floating-button__text {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-4px);
  transition:
    max-width 240ms ease,
    opacity 180ms ease,
    transform 240ms ease;
}

.about-floating-button:hover .about-floating-button__text,
.about-floating-button:focus .about-floating-button__text {
  max-width: 140px;
  opacity: 1;
  transform: translateX(0);
}

.fixergo-about-modal .modal-dialog {
  max-width: min(960px, calc(100vw - 24px));
}

.fixergo-about-modal__content {
  overflow: hidden;
  border: 1px solid rgba(135, 188, 255, 0.18);
  border-radius: 26px;
  color: #dbe8f8;
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 132, 255, 0.20), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(77, 226, 176, 0.14), transparent 26%),
    radial-gradient(circle at 90% 100%, rgba(77, 226, 176, 0.12), transparent 28%),
    linear-gradient(145deg, #071220, #091827);
  box-shadow: 0 30px 90px rgba(0,0,0,.52);
}

.fixergo-about-modal__header {
  align-items: flex-start;
  position: relative;
  border-color: rgba(135, 188, 255, 0.14);
  padding: clamp(24px, 4vw, 34px);
}

.fixergo-about-modal__header .btn-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.fixergo-about-modal__brand {
  width: 100%;
  text-align: center;
}

.fixergo-about-modal__logo {
  display: block;
  width: min(250px, 64vw);
  height: auto;
  margin: 0 auto 16px;
  filter:
    drop-shadow(0 18px 22px rgba(0,0,0,.34))
    drop-shadow(0 0 18px rgba(50, 151, 255, .16));
}

.fixergo-about-modal__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #48d85b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fixergo-about-modal__title {
  max-width: 620px;
  margin: 0 auto;
  color: #f4f8ff;
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.fixergo-about-modal__body {
  padding: clamp(20px, 3vw, 30px);
}

.fixergo-about-modal__body p,
.fixergo-about-modal__intro p {
  color: #b8c8da;
  line-height: 1.75;
}

.fixergo-about-modal__intro {
  max-width: 780px;
  margin: 0 auto;
}

.fixergo-about-modal__promise {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid rgba(77, 226, 176, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.13), rgba(33, 150, 255, 0.10)),
    rgba(255,255,255,.03);
}

.fixergo-about-modal__promise span,
.fixergo-about-modal__mission-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: #57f074;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fixergo-about-modal__promise p {
  max-width: 820px;
  margin: 0;
  color: #edf7ff;
  font-weight: 600;
}

.fixergo-about-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.fixergo-about-modal__area {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(135, 188, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.fixergo-about-modal__area-logo {
  display: flex;
  align-items: center;
  min-height: 74px;
  margin-bottom: 14px;
}

.fixergo-about-modal__area-logo img {
  width: min(170px, 70%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.26));
}

.fixergo-about-modal__area h3 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-size: 1.08rem;
  font-weight: 700;
}

.fixergo-about-modal__area p {
  margin: 0;
  font-size: 0.93rem;
}

.fixergo-about-modal__mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.fixergo-about-modal__mission-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(135, 188, 255, 0.14);
  border-radius: 18px;
  background: rgba(4, 13, 25, .46);
}

.fixergo-about-modal__mission-grid p {
  margin: 0;
  font-size: .94rem;
}

.fixergo-about-modal__values {
  margin: 24px 0;
}

.fixergo-about-modal__values h3 {
  margin: 0 0 14px;
  color: #f4f8ff;
  font-size: 1.08rem;
  font-weight: 800;
}

.fixergo-about-modal__values div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fixergo-about-modal__values span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(135, 188, 255, 0.18);
  border-radius: 999px;
  color: #dff3ff;
  background: rgba(255,255,255,.04);
  font-size: .84rem;
  font-weight: 700;
}

.fixergo-about-modal__note {
  padding: 18px 20px;
  border-left: 3px solid #4de2b0;
  border-radius: 16px;
  background: rgba(77, 226, 176, 0.08);
}

.fixergo-about-modal__note strong {
  display: block;
  margin-bottom: 6px;
  color: #f4f8ff;
}

.fixergo-about-modal__note p {
  margin: 0;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes fixerPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(64, 185, 67, 0.30),
      inset 0 0 20px rgba(64, 185, 67, 0.08);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(64, 185, 67, 0),
      inset 0 0 20px rgba(64, 185, 67, 0.08);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(64, 185, 67, 0),
      inset 0 0 20px rgba(64, 185, 67, 0.08);
  }
}

@keyframes fixerSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fixerPlayBeat {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes fixerDot {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes fixerLoadingBar {
  0% {
    transform: translateX(-130%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(260%);
  }
}


@keyframes cardDataSweep { 0%{background-position:180% 0} 100%{background-position:-40% 0} }
@keyframes techGridDrift { from{background-position:0 0,0 0,0 0,0 0} to{background-position:44px 44px,44px 44px,220px 220px,220px 220px} }

/* =========================================================
   ANCHO DE LOS CARDS EN ESCRITORIO
========================================================= */

@media (min-width: 992px) {

  .services-section .row {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-section .row > .col-12 {
    flex: 0 0 47%;
    max-width: 47%;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

  :root {
    --brand-width-start: min(620px, 90vw);
    --brand-width-end: min(230px, 58vw);
  }


  /* Logo superior */

  .brand-stage.is-ready .brand-stage__content {
    top: 28px;
    transform: translate(-50%, 0);
  }


  /* Sección servicios */

  .services-section {
    padding-top: 155px;
    padding-bottom: 50px;
  }

  .services-heading {
    margin-bottom: 32px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-brand-intro {
    margin-bottom: 30px;
    padding: 0 18px 28px;
  }

  .home-proof {
    margin-top: 38px;
    padding: 30px 18px 0;
  }

  .home-proof__items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-proof__item {
    padding: 20px 18px;
  }

  .home-contact {
    padding: 24px 0 52px;
  }

  .home-contact__layout {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(94%, 540px);
    padding: 26px 18px;
    border-radius: 22px;
  }

  .home-contact__form-wrap {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .home-contact__channels {
    margin-top: 22px;
  }


  /* Cards uno debajo del otro */

  .services-section .row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

    gap: 24px;
  }

  .services-section .row > .col-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 94%;
  }


  /* Card */

  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    padding: 28px 26px;

    border-radius: 24px;
  }


  /* Logo del servicio */

  .service-card__visual {
    width: min(260px, 90%);
    flex: none;

    min-height: 145px;

    margin: 0 auto 12px;
  }

  .service-card__logo {
    width: 100%;
    max-width: 230px;
  }


  /* Información */

  .service-card__body {
    width: 100%;
    min-width: 0;

    text-align: left;
  }

  .service-card__title {
    font-size: 1.35rem;
  }

  .service-card__text {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .about-floating-button {
    top: auto;
    right: 14px;
    bottom: 18px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    padding: 9px;
    transform: translateX(14px) scale(.96);
  }

  body.home-intro-ready .about-floating-button,
  body:has(.brand-stage.is-settled) .about-floating-button {
    transform: none;
  }

  .about-floating-button:hover,
  .about-floating-button:focus {
    gap: 9px;
    max-width: min(220px, calc(100vw - 28px));
    padding: 9px 12px 9px 9px;
    transform: translateY(-2px);
  }

  .about-floating-button__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .about-floating-button__text {
    font-size: 0.8rem;
  }

  .fixergo-about-modal__grid {
    grid-template-columns: 1fr;
  }

  .fixergo-about-modal__mission-grid {
    grid-template-columns: 1fr;
  }

  .fixergo-about-modal__header {
    padding-right: 46px;
  }

  .fixergo-about-modal__logo {
    width: min(220px, 70vw);
  }

  .fixergo-about-modal__area-logo {
    min-height: 60px;
  }
}

@media (max-width: 575.98px) {
  .services-heading__subtitle {
    max-width: 92%;
    margin-inline: auto;
  }

  .logo-action {
    left: 55.4%;
  }

  .home-contact__layout {
    width: min(94%, 420px);
    padding: 20px 14px;
  }

  .home-contact__form-head strong {
    font-size: 0.98rem;
  }
}


/* =========================================================
   ACCESIBILIDAD
   Reduce animaciones si el usuario lo solicita en su SO.
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover:none),(pointer:coarse){ .service-card.is-touching{ transform:perspective(1100px) rotateX(0) rotateY(0) translateY(-4px) scale(.992); } }
@media (prefers-reduced-motion: reduce){ body::after,.service-card::after{animation:none!important}.service-card,.service-card__logo,.service-card__orbit,.service-card__visual{transform:none!important} }
