/* ============================================================
   Comercializadora de Herramientas — style.css
   Paleta: negro / acero / naranja seguridad (#f26522)
   Mobile-first · Sin frameworks externos
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg:           #0b0d11;
  --bg-2:         #111620;
  --bg-card:      #161c28;
  --border:       #1e2636;
  --steel-dark:   #3d4e62;
  --steel:        #7a8fa5;
  --text:         #dce4ee;
  --muted:        #4d5e72;
  --white:        #f0f5fa;
  --orange:       #f26522;
  --orange-dark:  #cc5218;
  --orange-glow:  rgba(242, 101, 34, 0.12);

  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --tr: 0.18s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: 4.5rem; }
.section--alt { background: var(--bg-2); }

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; color: var(--white); }
h2 { font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; color: var(--white); }
h3 { font-size: 1rem; font-weight: 700; color: var(--white); }
.section-header { margin-bottom: 2.5rem; }
.section-header p { color: var(--steel); margin-top: 0.6rem; max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-header p { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
}
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--lg { padding: 0.9rem 1.9rem; font-size: 0.95rem; }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
.btn--full { width: 100%; }
.btn--green {
  background: #25d366;
  color: #fff;
  border: 1.5px solid #25d366;
}
.btn--green:hover { background: #1da855; border-color: #1da855; }

/* ---- Editorial placeholder ---- */
.editorial-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #1e2a3a 0%, #0b0d11 55%, #1a1108 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.008) 3px,
    rgba(255,255,255,0.008) 6px
  );
}
.editorial-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background: var(--orange);
}
.ph-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
/* Aspect-ratio helpers */
.ep--16-9  { aspect-ratio: 16 / 9; }
.ep--4-3   { aspect-ratio: 4 / 3; }
.ep--1-1   { aspect-ratio: 1 / 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 17, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mark {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-mark .accent { color: var(--orange); }
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin-top: 3px;
}

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 4rem;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid var(--border);
  transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 1.5rem; align-self: flex-start; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-media {
  width: 100%;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}
.hero-media .editorial-placeholder,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
  min-height: 480px;
  max-height: 700px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 13, 17, 0.93) 0%,
    rgba(11, 13, 17, 0.75) 55%,
    rgba(11, 13, 17, 0.3) 100%
  );
  display: flex;
  align-items: center;
}
.hero-content {
  padding: 3rem 1.25rem;
  max-width: 620px;
}
.hero-content h1 { margin-bottom: 1rem; }
.hero-content .subhead {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 4rem 0; }
  .hero-content .subhead { font-size: 1.05rem; }
}

/* Trust bar */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1.25rem;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: center;
}
.trust-bar-inner span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel);
}
.trust-bar-inner .sep {
  color: var(--orange);
  font-size: 0.5rem;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pain-layout { grid-template-columns: 1fr 360px; gap: 3.5rem; }
}
.pain-main .section-header { margin-bottom: 2rem; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  transition: border-color var(--tr), transform var(--tr);
}
.pain-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.pain-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.pain-card h3 { font-size: 0.925rem; margin-bottom: 0.4rem; }
.pain-card p { font-size: 0.825rem; color: var(--steel); line-height: 1.65; }

.pain-img {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}
.pain-img .editorial-placeholder { width: 100%; }
@media (min-width: 900px) {
  .pain-img .editorial-placeholder { aspect-ratio: 3 / 4; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pillars-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.pillar-img {
  border-radius: 6px;
  overflow: hidden;
  order: -1;
}
@media (min-width: 900px) {
  .pillar-img { order: 1; }
}
.pillar-img .editorial-placeholder { width: 100%; }

.pillars-content .section-header { margin-bottom: 2rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar-item { display: flex; flex-direction: column; gap: 0.4rem; }
.pillar-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.pillar-item h3 { font-size: 0.925rem; }
.pillar-item p { font-size: 0.825rem; color: var(--steel); line-height: 1.65; }

/* ============================================================
   CATALOG
   ============================================================ */
.catalog-subhead {
  color: var(--steel);
  margin-top: 0.5rem;
}
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--tr), transform var(--tr);
}
.product-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2233 0%, #0e121a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.product-pitch {
  font-size: 0.825rem;
  color: var(--steel);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.product-bullets {
  font-size: 0.78rem;
  color: var(--steel);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.product-bullets li {
  display: flex;
  gap: 0.4rem;
}
.product-bullets li::before {
  content: '—';
  color: var(--orange);
  flex-shrink: 0;
}
.product-for {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.product-for strong { color: var(--steel); }

/* ============================================================
   TRUST / CIFRAS
   ============================================================ */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .trust-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.trust-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.trust-stat { }
.trust-stat-num {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.trust-stat-label {
  font-size: 0.82rem;
  color: var(--steel);
  margin-top: 0.4rem;
  display: block;
  line-height: 1.4;
}
.trust-img {
  border-radius: 6px;
  overflow: hidden;
}
.trust-img .editorial-placeholder { width: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .testimonials-top { grid-template-columns: 1fr 280px; }
}
.testimonials-img {
  border-radius: 6px;
  overflow: hidden;
  order: -1;
}
@media (min-width: 900px) {
  .testimonials-img { order: 1; }
}
.testimonials-img .editorial-placeholder { width: 100%; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-card cite {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, #0f1520 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.cta-final h2 { margin-bottom: 0.75rem; }
.cta-final .sub {
  color: var(--steel);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero-media {
  width: 100%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
}
.page-hero-media .editorial-placeholder,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
  min-height: 300px;
  max-height: 450px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 13, 17, 0.92) 0%,
    rgba(11, 13, 17, 0.6) 60%,
    rgba(11, 13, 17, 0.25) 100%
  );
  display: flex;
  align-items: center;
}
.page-hero-content {
  padding: 3rem 1.25rem;
  max-width: 580px;
}
.page-hero-content h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero-content .subhead { color: var(--steel); font-size: 0.975rem; line-height: 1.75; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.2fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel);
}
.form-group label .optional {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.72rem 1rem;
  width: 100%;
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8fa5' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #1a2233; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: 0.72rem;
  color: #e05244;
  margin-top: 0.2rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #e05244; }
.form-group.has-error .form-error { display: block; }
.form-submit-row { margin-top: 0.5rem; }

/* Contact info block */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-info-block h2 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid rgba(242,101,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.info-text h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.info-text p {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.5;
}
.info-text a { color: var(--text); transition: color var(--tr); }
.info-text a:hover { color: var(--orange); }
.contact-wa-btn { margin-top: 1.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  transition: color var(--tr);
  gap: 1rem;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}
.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--orange);
  top: 50%;
  transition: transform 0.2s ease;
  border-radius: 1px;
}
.faq-chevron::before { left: 1px; transform: translateY(-50%) rotate(45deg); }
.faq-chevron::after  { right: 1px; transform: translateY(-50%) rotate(-45deg); }
.faq-item.is-open .faq-chevron::before { transform: translateY(-50%) rotate(-45deg); }
.faq-item.is-open .faq-chevron::after  { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 560px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--tr);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.1rem 0.8rem 0.8rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.55); }
.wa-float svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; }
@media (max-width: 599px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 0.9rem; border-radius: 50%; }
}

/* ============================================================
   GRACIAS PAGE
   ============================================================ */
.gracias-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}
.gracias-content {
  max-width: 480px;
}
.gracias-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.25rem;
}
.gracias-content h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.gracias-content p { color: var(--steel); margin-bottom: 2rem; line-height: 1.7; }

/* ---- Logo real ---- */
.logo img {
  height: 2.25rem;
  width: auto;
  display: block;
}

/* ---- Imágenes reales en slots editoriales de secciones ---- */
.pain-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 900px) {
  .pain-img img { aspect-ratio: 3 / 4; }
}
.pillar-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}
.trust-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
}
.testimonials-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
}

/* ============================================================
   UTILITY
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
@media (max-width: 640px) {
  .section { padding-block: 3rem; }
  .hero-media { min-height: 380px; }
  .hero-media .editorial-placeholder { min-height: 380px; }
}
