/* Fibrayphone — colores corporativos (logo original) */
:root {
  --brand: #00a9c6;
  --brand-dark: #008da6;
  --brand-darker: #006f84;
  --brand-light: #e5f7fa;
  --brand-muted: #7fd4e4;
  /* Texto y UI */
  --navy: #0f2744;
  --navy-dark: #0a1c33;
  --white: #ffffff;
  --bg: #f4fbfc;
  --text: #1e293b;
  --muted: #64748b;
  --border: #dceef2;
  --success: #059669;
  --shadow: 0 4px 24px rgba(0, 109, 132, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 109, 132, 0.14);
  --radius: 14px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.no-desktop {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-svg {
  height: 44px;
  width: auto;
  max-width: min(240px, 65vw);
  display: block;
}

.logo-svg--footer {
  height: 48px;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--brand-dark);
}

.header__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 169, 198, 0.35);
}

.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--brand-darker);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand-darker);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1fb855;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--white) 55%);
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--brand);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-row strong {
  color: var(--navy);
}

.hero__microcopy {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Form card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.card__sub {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--brand-muted);
  border-color: var(--brand);
}

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 1rem 0;
}

.form-check input {
  margin-top: 0.2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.form-transparency {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-transparency::before {
  content: '✓';
}

.form-trust-micro {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.hero__btn--maps {
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  opacity: 0.85;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--success);
  margin: 0 0 0.5rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--bg);
}

.section__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.section__intro {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 2rem;
}

/* Services */
.services {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-muted);
}

.service__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.service p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features */
.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.feature__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  display: block;
}

.feature h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.review__stars {
  color: #f59e0b;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.review p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
}

.review cite {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
  display: block;
  margin-top: 0.25rem;
}

.google-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.info-list a {
  font-weight: 600;
}

.hours {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.hours h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.hours dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
}

.hours dt {
  font-weight: 600;
  color: var(--navy);
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: var(--brand-darker);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer a {
  color: var(--brand-muted);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}


/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.15s;
}

.fab-wa:hover {
  transform: scale(1.06);
}

.fab-wa svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Modal privacidad */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 68, 0.5);
  z-index: 200;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal__box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.modal__box h3 {
  margin-top: 0;
  color: var(--navy);
}

.modal__close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

/* Gratis — destacado */
.badge--free {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.card--form {
  position: relative;
  overflow: hidden;
}

.card__ribbon {
  margin: -1.5rem -1.5rem 1rem;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.free-banner {
  background: var(--brand-darker);
  color: var(--white);
  padding: 1.75rem 0;
}

.free-banner__grid {
  display: grid;
  gap: 1.25rem;
}

.free-banner__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.free-banner__icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.free-banner__item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.free-banner__item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.92;
  line-height: 1.45;
}

/* Quiénes somos */
.about__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about__content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.about__list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--navy);
  line-height: 1.7;
}

.about__list li {
  margin-bottom: 0.35rem;
}

.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.about__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.08);
  animation: fade-up 0.6s ease both;
}

.about__photo--main {
  grid-column: 1 / -1;
}

.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.about__photo figcaption {
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Marcas */
.brands-block {
  margin-bottom: 1.75rem;
}

.brands-block__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--navy);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.brand-chip:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

/* Ofertas ejemplo */
.offers-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.offer-card--energy {
  border-top: 3px solid var(--brand);
}

.offer-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  background: var(--brand-light);
  color: var(--brand-darker);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.offer-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.35;
}

@media (min-width: 900px) {
  .offer-card h3 {
    font-size: 1.05rem;
  }
}

.offer-card__price {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.offer-card__price strong {
  font-size: 2rem;
  color: var(--brand-darker);
  line-height: 1;
}

.offer-card__price span {
  font-size: 1rem;
  font-weight: 600;
}

.offer-card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
}

.offer-card__list li {
  margin-bottom: 0.35rem;
}

.disclaimer {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.disclaimer--center {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

/* ——— Móvil (prioridad: la mayoría entra desde el teléfono) ——— */
@media (max-width: 767px) {
  .no-desktop {
    display: flex;
  }

  .nav--desktop {
    display: none;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .header__inner {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .logo-svg {
    height: 36px;
    max-width: 52vw;
  }

  .menu-toggle {
    margin-left: auto;
    padding: 0.5rem 0.85rem;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-darker);
    background: var(--brand-light);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    min-height: 44px;
  }

  .hide-desktop {
    display: inline;
  }

  .header__actions--top .btn {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .nav-mobile {
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 0.75rem;
    box-shadow: var(--shadow);
  }

  .nav-mobile:not([hidden]) {
    display: flex;
  }

  .nav-mobile a {
    padding: 0.85rem 1rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-mobile a:last-child {
    background: var(--brand-light);
    color: var(--brand-darker);
    border-bottom: none;
    margin-top: 0.25rem;
  }

  .hero {
    padding: 1.25rem 0 1.5rem;
  }

  .badge--free {
    font-size: 0.72rem;
    line-height: 1.4;
    padding: 0.45rem 0.65rem;
    display: block;
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero__lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    min-height: 48px;
  }

  .trust-row {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.82rem;
  }

  .trust-item--secondary {
    display: none;
  }

  .hero__microcopy {
    font-size: 0.78rem;
    text-align: center;
  }

  .card {
    padding: 1.15rem;
  }

  .card__ribbon {
    margin: -1.15rem -1.15rem 0.85rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* evita zoom automático en iPhone */
    min-height: 48px;
  }

  .form-check {
    font-size: 0.78rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section__intro {
    margin-bottom: 1.25rem;
  }

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

  .offer-card h3 {
    font-size: 0.95rem;
  }

  .offer-card__price strong {
    font-size: 1.65rem;
  }

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

  .features,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .about__photo--main {
    grid-column: auto;
  }

  .about__ctas {
    flex-direction: column;
  }

  .about__ctas .btn {
    width: 100%;
    min-height: 48px;
  }

  .brands-grid {
    gap: 0.4rem;
  }

  .brand-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }

  .footer {
    padding: 1.5rem 0 5.5rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .logo-svg--footer {
    height: 40px;
    margin: 0 auto;
  }

  /* Barra fija abajo: llamar / WhatsApp / comparativa */
  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.5rem 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
    text-align: center;
    line-height: 1.2;
    border-right: 1px solid var(--border);
  }

  .mobile-bar__btn:last-child {
    border-right: none;
  }

  .mobile-bar__btn--wa {
    background: #e8faf0;
    color: #128c7e;
  }

  .mobile-bar__btn--primary {
    background: var(--brand);
    color: var(--white);
  }

  .fab-wa {
    display: none;
  }

  main {
    padding-bottom: 3.5rem;
  }
}

/* Responsive escritorio */
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }

  .header__actions--top .btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.1rem;
  }

  .nav--desktop {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step::before {
    margin: 0 auto 0.75rem;
  }

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

  .free-banner__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 400px;
  }
}

/* Badge "Más solicitado" en tarjetas de oferta */
.offer-card {
  position: relative;
}

.offer-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.offer-card__badge--energy {
  background: #f59e0b;
}

.offer-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,169,198,0.15);
}

/* Bloque vs compañías */
.vs-section {
  background: var(--bg);
}

.vs-grid {
  display: grid;
  gap: 1.25rem;
}

.vs-col {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid transparent;
}

.vs-col--bad {
  background: #fff5f5;
  border-color: #fecaca;
}

.vs-col--good {
  background: #f0fdf4;
  border-color: #86efac;
}

.vs-col__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--navy);
}

.vs-col--bad .vs-col__title {
  color: #991b1b;
}

.vs-col--good .vs-col__title {
  color: #166534;
}

.vs-list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.6rem;
}

.vs-list li {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
  color: var(--text);
}

.vs-list--bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.vs-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.vs-list--good li:last-child {
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Indicador abierto/cerrado */
.store-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.store-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.store-status--open {
  background: #e8faf0;
  color: #0a6640;
}

.store-status--open::before {
  background: #25d366;
}

.store-status--closed {
  background: #f3f4f6;
  color: var(--muted);
}

.store-status--closed::before {
  background: #9ca3af;
}

/* Estadísticas */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1.25rem 0 1.75rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 767px) {
  .stats-row {
    gap: 0.75rem 1.5rem;
  }
  .stat strong {
    font-size: 1.35rem;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.6rem;
  max-width: 740px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  list-style: none;
  gap: 1rem;
  user-select: none;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Validación inline en formulario */
.field-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin: 0.3rem 0 0;
  font-weight: 600;
}

.form-group input.field--error,
.form-group select.field--error,
.form-group textarea.field--error {
  border-color: #c0392b;
  outline: none;
}

.form-check--error {
  color: #c0392b;
}
