:root{
  --max: 1100px;
  --border: #e9e9e9;
  --text: #111;
  --bg: #fff;
  --muted: #666;

  /* Neutrals + brand accents (premium) */
  --surface: #f7f8fa;
  --primary: #0f5e6b;     /* deep teal */
  --primary-2: #0b3f47;   /* darker teal */
  --ink: #0b1220;

  --radius: 12px;
  --shadow: 0 12px 34px rgba(10, 15, 25, .08);

  --t: 280ms;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:system-ui, Arial, sans-serif; line-height:1.5; color:var(--text); background:var(--bg); }
a{ color:inherit; text-decoration:none; }

.container{ max-width:var(--max); margin:0 auto; padding:16px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.logo{
  font-weight: 700;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
}

.logo img{
  display: block;
  height: 28px;
  width: auto;
}

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}

.nav-link,
.dropdown-toggle{
  font: inherit;
  background: none;
  border: 0;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  transition: background var(--t) ease, transform var(--t) ease;
}

.nav-link:hover,
.dropdown-toggle:hover{
  background: #f6f6f6;
}

.nav-cta{
  margin-left: 6px;
  padding: 10px 14px;
  border: 1px solid var(--text);
  border-radius: 12px;
  transition: transform var(--t) ease, background var(--t) ease;
}

.nav-cta:hover{
  transform: translateY(-1px);
  background: #f6f6f6;
}

/* Dropdown */
.nav-item{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.chev{
  margin-left: 6px;
  font-size: 12px;
  color: var(--muted);
  transition: transform var(--t) ease;
}

.dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--t) ease, transform var(--t) ease;
}

.dropdown a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background var(--t) ease;
}

.dropdown a:hover{
  background: #f6f6f6;
}

/* Open states */
.has-dropdown.is-open > .dropdown{
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.has-dropdown.is-open .chev{
  transform: rotate(180deg);
}

/* Mobile menu */
.menu-toggle{
  display:none;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
}

.sr-only{ position:absolute; left:-9999px; }

/* Footer (si ya lo tienes, puedes dejarlo) */
.site-footer{
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 16px 0;
}

@media (max-width: 900px){
  .menu-toggle{ display:inline-flex; align-items:center; gap:8px; }

  .site-nav{
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav.is-open{ display:flex; }

  .nav-cta{ margin-left: 0; text-align: center; }

  .dropdown{
    position: static;
    min-width: auto;
    border: 0;
    box-shadow: none;
    padding: 0;
    transform: none;
    opacity: 1;
    display: none;
  }

  .has-dropdown.is-open > .dropdown{
    display: block;
  }

  .dropdown a{
    padding-left: 18px;
  }
}

/* Footer */
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer-title{
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-text{
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-meta{
  margin: 0;
  color: var(--text);
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list a{
  transition: background var(--t) ease;
  border-radius: 10px;
  padding: 6px 8px;
  display: inline-block;
}

.footer-list a:hover{
  background: #f6f6f6;
}

.footer-note{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom{
  border-top: 1px solid var(--border);
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

/* WhatsApp Floating CTA */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform var(--t) ease, opacity var(--t) ease;
  font-weight: 600;
}

/* visible in mobile (recommended), optional on desktop */
@media (min-width: 901px){
  .whatsapp-float{
    opacity: .92;
  }
  .whatsapp-float:hover{
    transform: translateY(-2px);
    opacity: 1;
  }
}

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .whatsapp-float{
    width: calc(100% - 32px);
    text-align: center;
  }
}

/* Sections */
.section{ padding: 56px 0; }
.section.alt{ background: #fafafa; }
.section-head{ margin-bottom: 18px; }
.section-head h2{ margin: 0 0 8px; }
.section-subtitle{ margin: 0; color: var(--muted); max-width: 70ch; }
.section-cta{ margin-top: 18px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform var(--t) ease, background var(--t) ease;
  font-weight: 600;
}
.btn:hover{ transform: translateY(-1px); background:#f6f6f6; }
.btn-primary{ border-color: var(--text); }
.btn-secondary{border-color: var(--text);}

/* Hero */
.hero{
  padding: 52px 0 22px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}

/* Breadcrumbs inside hero grid should not steal a column */
.breadcrumbs{
  grid-column: 1 / -1;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.pill{
  display:inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  margin: 0 0 14px;
}
.hero h1{ margin: 0 0 10px; letter-spacing: -.2px; }
.hero-subtitle{ margin: 0 0 16px; color: var(--muted); max-width: 70ch; }
.hero-ctas{ display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-trust{ display:flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.hero-trust span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 94, 107, .06);
  border: 1px solid rgba(15, 94, 107, .16);
  color: #0b2a30;
}


.hero-media{ display:grid; gap: 12px; }
.hero-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  background: var(--bg);
  transition: transform var(--t) ease;
}
.hero-card:hover{ transform: translateY(-2px); }
.hero-card.ghost{ opacity: .92; }
.hero-card-title{ margin: 0 0 6px; font-weight: 800; }
.hero-card-text{ margin: 0 0 14px; color: var(--muted); }
.hero-spark{
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero-spark::after{
  content:"";
  position:absolute;
  inset: 0;
  transform: translateX(-40%);
  animation: spark2.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.14), transparent);
}
@keyframes spark{
  0%{ transform: translateX(-60%); }
  50%{ transform: translateX(20%); }
  100%{ transform: translateX(120%); }
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cards.three{ grid-template-columns: repeat(3, 1fr); }

.card{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform var(--t) ease, background var(--t) ease;
}
.card:hover{ transform: translateY(-2px); background:#fcfcfc; }
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }
.card-link{ margin-top: 10px; color: var(--text); font-weight: 650; }

/* Benefits */
.benefits{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.benefit{
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
}
.benefit-title{ margin:0 0 6px; font-weight: 750; }
.benefit-text{ margin:0; color: var(--muted); }

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.stat{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: var(--bg);
}
.stat-number{ margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
.stat-label{ margin: 4px 0 0; color: var(--muted); }

/* Tags */
.values{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 14px; }
.tag{
  display:inline-flex;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

/* Carrusel de logos */
.logo-marquee{
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 14px 0;
}

.logo-track{
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding-left: 18px;
}

.logo-item{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;           /* alto del carrusel */
  width: 180px;           /* ancho fijo por logo (evita brincos) */
  padding: 8px 12px;
}

.logo-item img{
  display: block;
  max-height: 65px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.logo-item img:hover{
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}

.logo-marquee .logo-track{
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  width: max-content !important;
  will-change: transform !important;
  animation: consultecMarquee 45s linear infinite !important;
  transform: translateX(0);
}

@keyframes consultecMarquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* pausa al pasar el mouse (opcional) */
.logo-marquee:hover .logo-track{
  animation-play-state: paused;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 520px){
  .logo-item{ width: 160px; height: 70px; }
  .logo-item img{ max-width: 140px; max-height: 52px; }
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile: más compacto */
@media (max-width: 520px){
  .logo-item{ width: 150px; height: 66px; }
  .logo-item img{ max-width: 120px; max-height: 46px; }
}

@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
}

/* Quote */
.quote{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.quote-text{ margin: 0 0 10px; font-size: 18px; }
.quote-meta{ margin: 0; color: var(--muted); }

/* Final CTA */
.final-cta{ padding: 46px 0; }
.final-cta-inner{
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.final-cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1000px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .stats{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards.three{ grid-template-columns: 1fr; }
  .benefits{ grid-template-columns: 1fr; }
  .final-cta-inner{ flex-direction: column; align-items: stretch; }
  .final-cta-actions{ width: 100%; }
}

/* Page hero tweak */
.hero-page .hero-card { border-radius: 18px; }

/* Timeline */
.timeline{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.step-badge{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}

.step-title{ margin: 0 0 6px; font-weight: 800; }
.step-text{ margin: 0; color: var(--muted); }

/* Split panels */
.split{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.panel{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.list{
  margin: 10px 0 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

/* Form */
.form-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  align-items:start;
}

.form{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-grid label{
  display:grid;
  gap: 6px;
  font-weight: 650;
}

.form-grid input,
.form-grid textarea{
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
}

.form-grid input:focus,
.form-grid textarea:focus{
  border-color: #cfcfcf;
}

.form-grid .full{
  grid-column: 1 / -1;
}

.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form-msg{
  margin: 12px 0 0;
  color: var(--muted);
}

.form-note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-note{
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.muted{ color: var(--muted); }

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
  .form-wrap{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .form-actions a, .form-actions button{ width: 100%; }
}

/* Accordion */
.accordion{
  display: grid;
  gap: 10px;
}

.acc-btn{
  width: 100%;
  text-align: left;
  font: inherit;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  transition: transform var(--t) ease, background var(--t) ease;
}

.acc-btn:hover{
  transform: translateY(-1px);
  background: #fcfcfc;
}

.acc-panel{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* Catalog filters */
.filters{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
}

.filter-btn{
  font: inherit;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: transform var(--t) ease, background var(--t) ease;
}

.filter-btn:hover{
  transform: translateY(-1px);
  background: #f6f6f6;
}

.filter-btn.is-active{
  border-color: var(--text);
}

.catalog .btn{
  margin-top: 12px;
}

.catalog-meta{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Logo grid (Clientes) */
.logo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.logo-item.big{
  width: 100%;
  height: 86px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  background: #fafafa;
}

@media (max-width: 900px){
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Case cards */
.case-card .btn{ margin-top: 12px; }
.case-tag{
  margin: 0 0 8px;
  display:inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.case-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display:grid;
  gap: 6px;
}

/* Legal pages */
.legal h2{
  margin: 26px 0 10px;
}

.legal p{
  margin: 0 0 12px;
  color: var(--text);
}

.legal ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.legal-meta{
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* Org chart (simple) */
.org{
  display:grid;
  gap: 12px;
}

.org-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.org-box{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 750;
}

.org-box.top{
  max-width: 360px;
  justify-self: center;
}

.muted-box{
  font-weight: 650;
  color: var(--muted);
}

@media (max-width: 900px){
  .org-row{ grid-template-columns: 1fr; }
  .org-box.top{ max-width: none; }
}

/* =========================
   Premium UI Overrides
   ========================= */
:root{
  --primary: #0B3B6E;
  --primary-2: #0F766E;
  --surface: #ffffff;
  --bg-soft: #fbfbfd;
  --ring: rgba(11,59,110,.18);
}

body{ background: var(--bg-soft); }

.container{ padding: 18px; }

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; }

h1, h2, h3{ letter-spacing: -.02em; }
h1{ font-size: clamp(30px, 3.4vw, 44px); line-height: 1.1; max-width: 18ch; }
h2{ font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
h3{ font-size: 18px; line-height: 1.25; }

.lead{
  font-size: 18px;
  color: var(--muted);
  max-width: 70ch;
}

.site-header{ backdrop-filter: blur(10px); background: rgba(251,251,253,.86); }

.nav-link, .dropdown-toggle{
  border-radius: 12px;
}
.nav-link:focus, .dropdown-toggle:focus, .nav-cta:focus, .btn:focus, input:focus, textarea:focus, select:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(11,59,110,.35);
}

.nav-cta{
  border-color: rgba(11,59,110,.35);
  background: linear-gradient(135deg, rgba(11,59,110,.10), rgba(15,118,110,.10));
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
}
.btn-primary:hover{ background: linear-gradient(135deg, #08335f, #0b5f59); }
.btn-secondary{
  border-color: rgba(11,59,110,.35);
  background: #fff;
}

.section{ padding: 54px 0; }
.section.alt{ background: rgba(255,255,255,.7); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.card{
  background: var(--surface);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.hero{ padding: 62px 0 26px; }
.hero h1{ max-width: 22ch; }

/* Internal page hero: subtle neutral color + prevents "empty left" feel */
.hero-page{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 260px at 18% 10%, rgba(15, 94, 107, .10), transparent 60%),
    radial-gradient(800px 300px at 92% 22%, rgba(11, 18, 32, .06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,248,250,.55));
  border-bottom: 1px solid var(--border);
}
.hero-page::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background-image: radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .18;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 65%);
}
.hero-page .hero-inner{ position: relative; z-index: 1; }
.pill{
  background: rgba(11,59,110,.06);
  border-color: rgba(11,59,110,.18);
  color: #0b2d52;
}

/* Page hero (internal pages) */
.page-hero{
  padding: 46px 0 14px;
}
.page-hero .pill{ margin-bottom: 12px; }
.page-hero h1{ margin: 0 0 10px; }
.page-hero .lead{ margin: 0; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.clean-list{ list-style: none; padding: 0; margin: 0; }
.divider{ height: 1px; background: var(--border); margin: 16px 0; }

.form{ display:grid; gap: 12px; }
.field label{ display:block; font-weight: 650; margin: 0 0 6px; }
.field input, .field textarea, .field select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font: inherit;
}
.form-hint{ margin: 10px 0 0; color: var(--muted); font-size: 14px; }

.steps{ margin: 0; padding-left: 18px; color: var(--muted); }
.steps li{ margin: 6px 0; }

/* Footer polish */
.site-footer{
  background: #0b1220;
  color: rgba(255,255,255,.86);
  border-top: none;
}
.site-footer a{ color: rgba(255,255,255,.92); }
.footer-text{ color: rgba(255,255,255,.75); }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); }


.breadcrumbs{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.hero-image{
  margin: 0;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-image img{
  display: block;
  width: 100%;
  height: auto;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25D366; /* verde WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,.3);
}

