/* ── Servicio Flash ────────────────────────────────── */
.flash-section {
  padding: 90px 0 0;
  background: #07110f;
  color: #fff;
  overflow: hidden;
}

.flash-inner {
  border: 1px solid rgba(189,255,56,.18);
  background: #0b1612;
  padding: clamp(32px, 5vw, 62px);
  position: relative;
}

.flash-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 85% 50%, rgba(189,255,56,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge superior */
.flash-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #bdff38;
  color: #07110f;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.flash-bolt {
  font-size: 14px;
  animation: bolt-pulse 1.4s ease infinite;
}

@keyframes bolt-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25) rotate(-5deg); }
}

/* Layout principal */
.flash-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

/* Columna copy */
.flash-copy h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: .97;
  letter-spacing: -3.5px;
  margin: 0 0 22px;
  color: #fff;
}

.flash-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #bdff38;
}

.flash-copy > p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.58);
  margin: 0 0 28px;
  max-width: 500px;
}

.flash-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.flash-list li span {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(189,255,56,.15);
  color: #bdff38;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.flash-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.flash-timer-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(189,255,56,.3);
  border-radius: 6px;
  background: rgba(189,255,56,.06);
}

.flash-timer-pill b {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #bdff38;
  line-height: 1;
}

.flash-timer-pill small {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
  margin-top: 3px;
}

/* Columna visual */
.flash-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flash-screen {
  background: #e9e5dc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}

.flash-bar {
  height: 28px;
  background: #f7f5ef;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.flash-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.flash-bar > span:nth-child(1) { background: #ff8f7e; }
.flash-bar > span:nth-child(2) { background: #ffd45a; }
.flash-bar > span:nth-child(3) { background: #7fd9a1; }

.flash-bar small {
  margin: 0 auto;
  font-size: 6px;
  color: #888;
  background: #ededea;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: .4px;
}

.flash-preview {
  padding: 18px 20px 20px;
  background: #0b1612;
  position: relative;
  min-height: 190px;
}

.flash-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.flash-preview-nav b {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

.flash-preview-nav i {
  color: #bdff38;
  font-style: normal;
  font-size: 12px;
}

.flash-preview-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.flash-preview-hero small {
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}

.flash-preview-hero strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 14px;
}

.flash-preview-hero strong em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #bdff38;
}

.flash-preview-hero button {
  background: #bdff38;
  color: #07110f;
  border: 0;
  padding: 7px 12px;
  font-size: 7px;
  font-weight: 800;
  cursor: default;
  font-family: "Manrope", sans-serif;
  letter-spacing: .5px;
}

.flash-badge-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(189,255,56,.12);
  border: 1px solid rgba(189,255,56,.3);
  padding: 8px 12px;
  border-radius: 5px;
  backdrop-filter: blur(6px);
}

.flash-badge-overlay > span { font-size: 14px; }
.flash-badge-overlay div   { display: flex; flex-direction: column; gap: 2px; }
.flash-badge-overlay b     { font-size: 9px; color: #bdff38; font-family: "Manrope", sans-serif; }
.flash-badge-overlay small { font-size: 7px; color: rgba(255,255,255,.5); }

/* Línea de pasos mini */
.flash-steps-mini {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 20px;
  border-radius: 4px;
}

.flash-steps-mini > div:not(.flash-step-line) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
}

.flash-steps-mini b {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
}

.flash-steps-mini small {
  font-size: 8px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

.flash-step-line {
  height: 1px;
  flex: 1;
  background: rgba(189,255,56,.25);
  min-width: 20px;
}

.flash-step-active b,
.flash-step-active small { color: #bdff38 !important; }

.flash-step-active span {
  position: absolute;
  top: -6px;
  right: 8px;
  width: 14px;
  height: 14px;
  background: #bdff38;
  color: #07110f;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Banda disclaimer */
.flash-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 20px;
  background: rgba(189,255,56,.06);
  border-top: 1px solid rgba(189,255,56,.15);
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

.flash-disclaimer span { font-size: 16px; }
.flash-disclaimer b    { color: rgba(255,255,255,.8); }

/* Responsivo */
@media (max-width: 860px) {
  .flash-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flash-copy h2 { letter-spacing: -2.5px; }
}

@media (max-width: 520px) {
  .flash-section  { padding-top: 70px; }
  .flash-inner    { padding: 28px 22px; }
  .flash-actions  { flex-direction: column; align-items: flex-start; }
}

/* ── Sección Nosotros / About ─────────────────────── */
.about-section {
  padding: 110px 0;
  background: #07110f;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,255,56,.07) 0%, transparent 70%);
  right: -180px;
  top: -100px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-copy > span {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: 20px;
}

.about-copy h2 {
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: .95;
  letter-spacing: -4px;
  margin: 0 0 28px;
  color: #fff;
}

.about-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #7fd9a1;
}

.about-copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin: 0 0 36px;
  max-width: 520px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 40px;
}

.about-stats > div {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stats > div:last-child {
  border-right: 0;
}

.about-stats b {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--lime, #bdff38);
}

.about-stats small {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.about-values > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.about-values > div > i {
  flex-none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(189,255,56,.12);
  display: grid;
  place-items: center;
  color: #bdff38;
  font-style: normal;
  font-size: 14px;
  margin-top: 2px;
}

.about-values p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

.about-values strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}

/* Tarjeta del fundador */
.about-founder-card {
  position: relative;
  background: #101b17;
  border: 1px solid rgba(255,255,255,.12);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #bdff38, #73d7a0);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bdff38, #73d7a0);
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #07110f;
  letter-spacing: -2px;
  flex-none;
}

.founder-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.founder-identity-text > b {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  display: block;
}

.founder-identity-text > span {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: .5px;
}

.founder-quote {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(189,255,56,.4);
}

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-skills span {
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}

.founder-location {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.founder-location span {
  color: #bdff38;
  font-size: 16px;
}

/* ── Banda de confianza local ─────────────────── */
.local-trust-band {
  background: #bdff38;
  padding: 22px 0;
  overflow: hidden;
}

.local-trust-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.local-trust-band p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #07110f;
  letter-spacing: -.3px;
  margin: 0;
}

.local-trust-band a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #07110f;
  border-bottom: 1px solid rgba(7,17,15,.4);
  padding-bottom: 2px;
}

/* ── Hero badge de ciudad ─────────────────────── */
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7,17,15,.06);
  border: 1px solid rgba(7,17,15,.12);
  padding: 8px 14px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #3a5246;
  margin-bottom: 20px;
}

.city-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55bf84;
  box-shadow: 0 0 0 4px rgba(85,191,132,.2);
  animation: pulse-city 2s ease infinite;
}

@keyframes pulse-city {
  0%, 100% { box-shadow: 0 0 0 4px rgba(85,191,132,.2); }
  50%       { box-shadow: 0 0 0 8px rgba(85,191,132,.08); }
}

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-copy h2 {
    letter-spacing: -3px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 80px 0;
  }
  .about-grid {
    gap: 36px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats > div:last-child {
    border-top: 1px solid rgba(255,255,255,.1);
    grid-column: 1 / -1;
  }
  .about-founder-card {
    padding: 28px 22px;
  }
  .local-trust-band .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
