/* =============================================
   TOKENS & RESET
============================================= */
:root {
  --rh:         #ef9147;
  --rh-hover:   #e07e35;
  --rh-light:   #fdf4ec;
  --rh-mid:     #f5dfc4;
  --rh-dark:    #3a2a18;
  --rh-border:  rgba(239,145,71,.22);

  --text-1:   #1a1a1a;
  --text-2:   #555;
  --text-3:   #999;
  --bg-1:     #ffffff;
  --bg-2:     #f9f7f4;
  --border:   rgba(0,0,0,.09);

  --ff-head: 'Sora', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text-1);
  background: var(--bg-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--ff-body); }

/* =============================================
   UTILITIES
============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rh);
  margin-bottom: 12px;
}
.sec-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--rh);
  border-radius: 2px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-1);
}
.section-title em {
  font-style: normal;
  color: var(--rh);
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--rh);
  color: #fff;
  box-shadow: 0 2px 14px rgba(239,145,71,.35);
}
.btn-primary:hover { background: var(--rh-hover); box-shadow: 0 4px 20px rgba(239,145,71,.45); }

.btn-outline {
  background: transparent;
  color: var(--rh);
  border: 1.5px solid var(--rh);
}
.btn-outline:hover { background: var(--rh-light); }

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebc5a; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 100px;
}
.nav-logo-mark {
  width: 100px;
  border-radius: 10px;
  background: var(--rh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.nav-logo-text span { color: var(--rh); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--rh); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.nav-phone i { color: var(--rh); font-size: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-1);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/why-us.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.94) 40%,
    rgba(255,255,255,.60) 65%,
    rgba(255,255,255,.05) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rh-light);
  border: 1px solid var(--rh-border);
  border-radius: 30px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--rh);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rh);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-1);
  max-width: 640px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--rh);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--rh-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--rh-dark);
  margin-left: -8px;
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--text-2); }
.hero-proof-text strong { color: var(--text-1); }

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: var(--rh);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 400;
}

/* =============================================
   DIFERENCIADORES
============================================= */
.diffs {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.diffs .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.diff-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.diff-item:last-child { border-right: none; }
.diff-item:hover { background: var(--rh-light); }
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rh-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .2s;
}
.diff-item:hover .diff-icon { background: var(--rh-mid); }
.diff-icon i { font-size: 22px; color: var(--rh); }
.diff-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.diff-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =============================================
   POR QUÉ NOSOTROS
============================================= */
.why {
  padding: 100px 0;
  background: var(--bg-1);
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rh);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-badge-icon i { font-size: 20px; color: #fff; }
.why-badge-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--text-1); }
.why-badge-text span { font-size: 12px; color: var(--text-3); }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.why-card:hover {
  border-color: var(--rh-border);
  box-shadow: 0 4px 16px rgba(239,145,71,.1);
}
.why-card.accent {
  background: var(--rh-light);
  border-color: var(--rh-border);
}
.why-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--rh);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.why-card-icon i { font-size: 18px; color: #fff; }
.why-card h4 {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* =============================================
   SERVICIOS
============================================= */
.services {
  padding: 100px 0;
  background: var(--rh-light);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rh);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { border-color: var(--rh); }
.svc-card.featured::before { transform: scaleX(1); }

.svc-badge {
  display: inline-block;
  background: var(--rh);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rh-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-icon-wrap i { font-size: 24px; color: var(--rh); }
.svc-card h3 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.svc-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.svc-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--rh);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rh);
  margin-top: 14px;
  transition: gap .15s;
}
.svc-card:hover .svc-link { gap: 8px; }

/* =============================================
   PROCESO
============================================= */
.proceso {
  padding: 100px 0;
  background: var(--bg-1);
}
.proceso-header { text-align: center; margin-bottom: 64px; }
.proceso-header .section-sub { margin: 12px auto 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--rh-mid);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--rh-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 20px;
  transition: all .2s;
}
.step.active .step-num {
  background: var(--rh);
  border-color: var(--rh);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,145,71,.4);
}
.step h4 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.step p { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.step-tag {
  font-size: 11px;
  background: var(--rh-light);
  color: var(--rh);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 8px;
  font-weight: 500;
}

/* =============================================
   TESTIMONIOS
============================================= */
.testimonios {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.testimonios-bg {
  position: absolute; inset: 0;
  background: url('../img/testi-bg.jpg') center / cover no-repeat;
}
.testimonios-overlay {
  position: absolute; inset: 0;
  background: rgba(253, 244, 236, 0.94);
}
.testimonios .container { position: relative; z-index: 2; }
.testimonios-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.clients-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.client-pill {
  padding: 7px 16px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--rh-border);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: var(--rh-dark);
  backdrop-filter: blur(4px);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.testi-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-stars i { font-size: 14px; color: var(--rh); }
.testi-card blockquote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--rh);
  padding-left: 14px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--text-1); }
.testi-role { font-size: 12px; color: var(--text-3); }

/* =============================================
   SECCIÓN CONTACTO
============================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.contact-bg {
  position: absolute; inset: 0;
  background: url('../img/cta-reunion.jpg') center / cover no-repeat;
}
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.95) 45%,
    rgba(253,244,236,.88) 100%
  );
}
.contact-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-data {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-data li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-data-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--rh-light);
  border: 1px solid var(--rh-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-data-icon i { font-size: 18px; color: var(--rh); }
.contact-data-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.contact-data-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  transition: color .15s;
}
a.contact-data-value:hover { color: var(--rh); }

/* Formulario */
.contact-form-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 6px;
}
.label-optional {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 400;
}
.form-field label span[aria-hidden] { color: var(--rh); margin-left: 2px; }

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-1);
  background: var(--bg-1);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--rh);
  box-shadow: 0 0 0 3px rgba(239,145,71,.12);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #e53e3e;
}
.field-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  min-height: 16px;
  display: block;
}

.select-wrap { position: relative; }
.select-wrap select { padding-right: 36px; cursor: pointer; }
.select-wrap > i {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-3);
  pointer-events: none;
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--bg-1);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--rh);
}
.form-check label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--rh); text-decoration: underline; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
}
.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}
.form-success i { font-size: 32px; color: #22c55e; display: block; margin-bottom: 8px; }
.form-success strong { display: block; font-size: 16px; color: #166534; margin-bottom: 4px; }
.form-success p { font-size: 14px; color: #166534; }

/* =============================================
   CTA FINAL
============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('../img/cta-reunion.jpg') center / cover no-repeat;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    95deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.95) 40%,
    rgba(255,255,255,.55) 70%,
    rgba(255,255,255,.05) 100%
  );
}
.cta-content {
  position: relative; z-index: 2;
  padding: 60px 0;
}
.cta-content .section-title { margin-bottom: 12px; }
.cta-content .section-sub { margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-meta { font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.cta-meta i { color: var(--rh); }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.65; max-width: 260px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 16px;
  transition: color .15s, border-color .15s, background .15s;
}
.footer-social a:hover { color: var(--rh); border-color: var(--rh-border); background: var(--rh-light); }

.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.footer-col ul li a:hover { color: var(--rh); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); transition: color .15s; }
.footer-bottom a:hover { color: var(--rh); }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float i { font-size: 28px; color: #fff; }

/* =============================================
   ANIMACIONES DE ENTRADA
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .why .container { grid-template-columns: 1fr; gap: 48px; }
  .why-image-badge { right: 16px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(255,255,255,.98) 60%,
      rgba(255,255,255,.6) 100%);
  }

  .stats-bar .container { grid-template-columns: repeat(3,1fr); }
  .stat-num { font-size: 26px; }

  .diffs .container { grid-template-columns: 1fr; }
  .diff-item { border-right: none; border-bottom: 1px solid var(--border); }
  .diff-item:last-child { border-bottom: none; }

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

  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
