/* ============================================================
   PROFESIONALES DEL SEGURO — style.css
   ============================================================ */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --sans:      'Montserrat', sans-serif;
  --body:      'Inter', sans-serif;
  --navy:      #0B1F3A;
  --blue:      #163B6E;
  --teal:      #00A8B5;
  --teal-dark: #007A87;
  --teal-bg:   rgba(0, 168, 181, 0.10);
  --gold:      #C9A43A;
  --light:     #EEF2F7;
  --white:     #FFFFFF;
  --muted:     #6B7C93;
  --text:      #1C2E45;
  --border:    #D6E3F0;
  --nav-h:     80px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 32px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 12px 48px rgba(11, 31, 58, 0.15);
}

/* ── RESET / BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 168, 181, 0.35);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-teal:hover {
  background: #00C3D2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 168, 181, 0.4);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS & HEADS ──────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 14px;
}
.label-light { color: rgba(0, 168, 181, 0.8); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head h2,
h2 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h2 em { font-style: italic; color: var(--teal); font-weight: 600; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

/* ── FADE-UP ANIMATION ───────────────────────────────────── */
.fu {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fu.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.3);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: clamp(52px, 5vw, 76px);
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  flex-shrink: 0;
  letter-spacing: 0;
}
.logo-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  display: block;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-mobile .mob-cta {
  margin-top: 16px;
  background: var(--teal);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  border: none;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* iOS Safari fix — dynamic viewport height */
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.88) 0%,
    rgba(22, 59, 110, 0.72) 50%,
    rgba(0, 120, 135, 0.45) 100%
  );
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 20px) 40px 60px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(0,168,181,0.18);
  border: 1px solid rgba(0,168,181,0.45);
  color: rgba(255,255,255,0.92);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  font-family: var(--sans);
  max-width: 100%;
  word-break: break-word;
}
.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.07;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 760px;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--teal);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.4; }
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-wrap: wrap;
}
.stat-item {
  padding: 28px 48px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ── COBERTURAS ──────────────────────────────────────────── */
.coberturas { background: var(--white); }
.cob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.cob-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.cob-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 168, 181, 0.14);
  transform: translateY(-5px);
}
.cob-icon {
  width: 52px;
  height: 52px;
  color: var(--teal);
  margin-bottom: 20px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.cob-icon svg { width: 100%; height: 100%; }
.cob-card h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.cob-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}
/* cards as links */
a.cob-card { color: inherit; text-decoration: none; display: flex; flex-direction: column; }
.cob-card p { flex: 1; }

/* online badge (top-right chip) */
.cob-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal-bg);
  color: var(--teal);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,168,181,0.3);
}
.cob-card { position: relative; }

/* cta text at bottom of card */
.cob-action {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s, letter-spacing 0.2s;
}
.cob-action--online { color: var(--teal); }
.cob-action--wa     { color: var(--muted); }
.cob-card:hover .cob-action { color: var(--teal); letter-spacing: 0.08em; }

/* highlighted card (online) */
.cob-card--online {
  border-color: rgba(0,168,181,0.25);
  background: linear-gradient(160deg, rgba(0,168,181,0.04) 0%, var(--white) 60%);
}

.cob-cta { text-align: center; }

/* ── NOSOTROS ────────────────────────────────────────────── */
.nosotros { background: var(--light); }
.nos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.nos-img-col { position: relative; }
.nos-img-wrap {
  position: relative;
}
.nos-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.nos-deco {
  position: absolute;
  inset: -14px;
  border: 3px solid var(--teal);
  border-radius: calc(var(--radius-lg) + 6px);
  z-index: -1;
  opacity: 0.35;
}
.nos-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.nos-badge strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.nos-badge span {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.nos-content .section-label { margin-bottom: 12px; }
.nos-content h2 {
  margin-bottom: 20px;
  max-width: 500px;
}
.nos-content p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.nos-content p strong { color: var(--navy); font-weight: 600; }
.nos-list {
  margin: 20px 0 32px;
}
.nos-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid rgba(11,31,58,0.07);
  line-height: 1.5;
}
.nos-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── CAUCIÓN ─────────────────────────────────────────────── */
.caucion {
  background: var(--navy);
  color: #fff;
}
.caucion-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.caucion-content h2 {
  color: #fff;
  margin-bottom: 16px;
}
.caucion-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.caucion-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.caucion-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ci-num {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  padding-top: 2px;
}
.ci-text h4 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.ci-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.caucion-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.caucion-badge {
  padding: 12px 20px;
  border: 2px solid rgba(0,168,181,0.45);
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.5;
}
.caucion-badge strong {
  display: block;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
}
.caucion-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

/* ── PROCESO ─────────────────────────────────────────────── */
.proceso { background: var(--white); }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.proc-step {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--light);
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.proc-step:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.ps-num {
  font-family: var(--sans);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}
.ps-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
  padding: 10px;
}
.ps-icon svg { width: 100%; height: 100%; }
.proc-step h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.proc-step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SINIESTROS ──────────────────────────────────────────── */
.siniestros { background: #0E2440; color: #fff; }
.sin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.sin-content h2 { color: #fff; margin-bottom: 16px; }
.sin-lead {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
.sin-lead strong { color: var(--teal); }
.sin-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.sin-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sin-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.sin-step p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.sin-step p strong { color: #fff; }
.sin-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sin-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.sin-card h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sin-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sin-card ul li:last-child { border-bottom: none; }
.sin-card ul li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--teal);
}
.sin-card--accent {
  background: var(--teal-bg);
  border-color: rgba(0,168,181,0.3);
}
.sin-card--accent p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.sin-card--accent p strong { color: #fff; }
.sin-atencion {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}
.sin-atencion p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.sin-atencion a {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  text-decoration: none;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 40px;
}
.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-quote {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  flex: 1;
  min-width: 280px;
}

/* ── CONTACTO ────────────────────────────────────────────── */
.contacto { background: var(--light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-sub {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.65;
}
.contact-sub strong { color: var(--navy); }
.ci-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.ci-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,168,181,0.1);
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-wa { background: rgba(37,211,102,0.12); color: #25D366; }
.ci-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-weight: 600;
}
.ci-item strong {
  font-size: 0.93rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.soc-link:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}
.soc-link svg { width: 18px; height: 18px; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form-wrap { }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,181,0.12);
}
.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='%236B7C93' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand .footer-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  height: clamp(90px, 9vw, 140px);
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-slogan {
  font-size: 0.8rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.4) !important;
  border-left: 2px solid var(--teal);
  padding-left: 12px;
  margin-top: 4px;
  line-height: 1.6 !important;
}
.footer-links h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-ssn {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-ssn p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-ssn strong {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}
.footer-soc-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--teal); }
.footer-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 32px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* 1200px */
@media (max-width: 1200px) {
  .caucion-inner { grid-template-columns: 1fr 360px; }
}

/* 1024px */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .cob-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .caucion-inner { grid-template-columns: 1fr; gap: 48px; }
  .caucion-img { aspect-ratio: 16/7; max-height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* 768px */
@media (max-width: 768px) {
  /* hero */
  .hero { align-items: flex-start; }
  .hero-content {
    padding: calc(var(--nav-h) + 56px) 24px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 7px 14px;
    letter-spacing: 0.02em;
    white-space: normal;
  }
  .hero-sub { max-width: 100%; }
  .hero-scroll { display: none; }

  /* sections */
  .section-inner { padding: 64px 24px; }
  .nos-inner,
  .sin-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .proc-steps { grid-template-columns: 1fr; gap: 16px; }

  /* stats */
  .stats-bar { flex-wrap: wrap; padding: 0; }
  .stat-item { padding: 18px 24px; flex: 1; min-width: 140px; }
  .stat-sep { display: none; }

  /* nosotros */
  .nos-img-col { order: -1; }
  .nos-badge { right: 0; bottom: -12px; }
  .nos-deco { display: none; }

  /* cta band */
  .cta-band { padding: 52px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer { padding: 48px 24px 0; }
}

/* 540px */
@media (max-width: 540px) {
  .cob-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* 480px */
@media (max-width: 480px) {
  /* hero */
  .hero { min-height: 520px; }
  .hero-content { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.3rem); line-height: 1.1; }
  .hero-eyebrow { font-size: 0.68rem; padding: 6px 12px; }
  .hero-sub { font-size: 0.93rem; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }

  /* buttons */
  .btn-primary, .btn-outline, .btn-teal, .btn-white { width: 100%; justify-content: center; }

  /* nav */
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-logo-img { height: clamp(44px, 11vw, 56px); }

  /* misc */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
  .caucion-btns { flex-direction: column; gap: 12px; }
  .proc-step { padding: 24px 20px; }
  .sin-card { padding: 20px; }
  .section-inner { padding: 52px 20px; }
}

/* 360px — pantallas muy chicas */
@media (max-width: 360px) {
  .hero-title { font-size: 1.75rem; }
  .hero-eyebrow { font-size: 0.64rem; }
  .stat-item { padding: 14px 16px; min-width: 120px; }
}
