
:root{
  --blue:#0A3D62;
  --blue-900:#072940;
  --orange:#F39C12;
  --bg:#f7fafc;
  --fg:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --ring: rgba(10,61,98,.2);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;color:var(--fg);background:var(--bg);line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin-inline:auto;padding:0 18px}
.header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid #e5e7eb}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--blue)}
.brand span{font-size:1.05rem}
.nav{display:none;gap:18px}
.nav a{color:#334155;font-weight:600}
.btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid transparent;border-radius:12px;padding:.7rem 1rem;font-weight:700;cursor:pointer;box-shadow:0 1px 2px rgba(0,0,0,.06)}
.btn--cta{background:var(--orange);color:#111827}
.btn--ghost{background:#fff;border-color:#cbd5e1;color:#0f172a}
.btn--lg{padding:.9rem 1.15rem;font-size:1.05rem;border-radius:14px}
.hero{background:linear-gradient(135deg,var(--blue),var(--blue-900));color:#fff;padding:56px 0 24px}
.hero__grid{display:grid;grid-template-columns:1fr;gap:30px;align-items:center}
.hero__text h1{font-size:2rem;line-height:1.2;margin:0 0 10px}
.badge{background:rgba(255,255,255,.15);padding:.2rem .5rem;border-radius:999px;font-size:.9rem}
.lead{font-size:1.05rem;color:#e6edf6;margin-top:8px}
.bullets{list-style:none;padding:0;margin:14px 0 20px;display:grid;gap:8px}
.trust{display:flex;gap:12px;flex-wrap:wrap;color:#dbeafe}
.trust__item{background:rgba(255,255,255,.1);padding:.35rem .6rem;border-radius:999px;font-size:.85rem}
.hero__art{justify-self:center}
.section{padding:44px 0}
.section--alt{background:#f1f5f9}
.section h2{font-size:1.6rem;margin:0 0 6px}
.section__intro{color:var(--muted);margin:0 0 18px}
.cards{display:grid;grid-template-columns:1fr;gap:14px}
.card{background:var(--card);border:1px solid #e2e8f0;border-radius:14px;padding:18px;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.card h3{margin-top:0}
.card__desc{color:var(--muted)}
.price{font-weight:800;font-size:1.6rem;color:var(--blue);margin:.2rem 0 .3rem}
.notice{margin-top:10px;color:#334155;font-size:.95rem}
.grid{display:grid;grid-template-columns:1fr;gap:16px}
.service{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:16px}
.reviews{display:grid;grid-template-columns:1fr;gap:14px}
.review blockquote{margin:6px 0;color:#111827}
.form{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:18px;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.form__row{display:grid;grid-template-columns:1fr;gap:12px}
.form input,.form select,.form textarea{width:100%;padding:.7rem .8rem;border:1px solid #cbd5e1;border-radius:12px;font:inherit;outline:0}
.form input:focus,.form select:focus,.form textarea:focus{border-color:var(--blue);box-shadow:0 0 0 4px var(--ring)}
.form label{font-weight:600;color:#0f172a;display:block;margin-bottom:8px}
.form .consent{display:flex;gap:10px;align-items:center;margin-top:8px;font-weight:500}
.hidden{display:none}
.zones{display:flex;flex-wrap:wrap;gap:10px;padding:0;list-style:none}
.zones li{background:#fff;border:1px solid #e2e8f0;border-radius:999px;padding:.4rem .8rem}
.footer{background:#0f172a;color:#cbd5e1;margin-top:28px}
.footer__grid{display:grid;grid-template-columns:1fr;gap:16px;padding:24px 0}
.brand--footer span{color:#fff}
.copy{text-align:center;font-size:.9rem;color:#94a3b8;padding:12px 0;border-top:1px solid rgba(255,255,255,.08)}
.cta-row{display:flex;gap:12px;flex-wrap:wrap}
.mobile-bar{position:fixed;bottom:10px;left:50%;transform:translateX(-50%);display:flex;gap:10px;background:#fff;border:1px solid #e2e8f0;border-radius:999px;padding:8px 10px;box-shadow:0 8px 30px rgba(0,0,0,.12)}
.mobile-bar__btn{padding:.6rem 1rem;border-radius:999px;background:var(--orange);color:#111827;font-weight:800;border:1px solid transparent}
.mobile-bar__btn--ghost{background:#fff;border-color:#e2e8f0;color:#0f172a}
/* Responsive */
@media (min-width: 720px){
  .nav{display:flex}
  .hero{padding:74px 0 44px}
  .hero__grid{grid-template-columns:1.2fr .8fr}
  .hero__text h1{font-size:2.4rem}
  .cards{grid-template-columns:repeat(4,1fr)}
  .grid{grid-template-columns:repeat(4,1fr)}
  .reviews{grid-template-columns:repeat(3,1fr)}
  .form__row{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:2fr 1fr 1fr}
  .mobile-bar{display:none}
}


.table-wrap{overflow:auto;border:1px solid #e2e8f0;border-radius:12px;background:#fff;margin-top:14px}
.table{width:100%;border-collapse:collapse;min-width:480px}
.table th,.table td{padding:12px 14px;border-bottom:1px solid #e5e7eb;text-align:left}
.table thead th{background:#f8fafc;font-weight:800}
.muted{color:var(--muted)}


.reviews--cards{display:grid;grid-template-columns:1fr;gap:14px}
.review-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:16px;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.review-card__head{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.avatar{width:36px;height:36px;border-radius:999px;background:#0A3D62;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800}
.name{font-weight:800}
.meta{font-size:.9rem;color:#64748b}
.stars{margin-left:auto;font-size:1rem;letter-spacing:2px}
.badge{background:#e2e8f0;color:#0f172a;padding:.2rem .5rem;border-radius:999px;font-size:.85rem;margin-left:.5rem}
@media (min-width: 720px){
  .reviews--cards{grid-template-columns:repeat(3,1fr)}
}

.nav--cities{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.nav--cities a{color:#334155;font-weight:600}
@media (max-width:720px){.nav--cities{font-size:.95rem;gap:8px}}


/* === Mobile hotfixes (v7) === */
.tel-nowrap, .tel-nowrap a { white-space: nowrap; }
.header .brand { flex: 1 1 auto; min-width: 0; }
.header .actions { display: flex; align-items: center; gap: .5rem; flex-wrap: nowrap; }
.header .actions .wa, .mobile-bar__btn--whatsapp { display: none !important; }
@media (max-width: 480px) {
  .header .container { display: flex; align-items: center; gap: .75rem; }
  .header nav { display:none; } /* keep header compact on mobile */
  .hero__text h1 { font-size: 1.35rem; line-height: 1.25; }
  .hero__text p { margin-top: .5rem; }
  .header .actions a { padding: .4rem .6rem; font-size: .95rem; }
}


/* === Hero photo styling (v8) === */
.hero__media { position: relative; overflow: hidden; border-radius: 14px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero__media { height: 220px; }
}
@media (min-width: 641px) {
  .hero__media { min-height: 320px; }
}


/* === Hero compact presentation (v9) === */
.hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.mini-bio { justify-self: end; background: #fff; border-radius: 16px; padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,.08); text-align: center; max-width: 240px; }
.mini-bio img { width: 180px; height: 180px; border-radius: 9999px; object-fit: cover; display: block; margin: 0 auto .75rem; }
.mini-bio__caption { display: grid; gap: .15rem; }
.mini-bio__caption strong { font-weight: 700; }
.mini-bio__caption span { font-size: .95rem; color: #4b5563; }
.hero-checks { list-style: none; padding: 0; margin: .5rem 0 1rem; display: grid; gap: .35rem; }
.hero-checks li { position: relative; padding-left: 1.3rem; }
.hero-checks li::before { content: "✔"; position: absolute; left: 0; top: 0; line-height: 1; }
@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .mini-bio { justify-self: start; max-width: 100%; display: flex; align-items: center; gap: .85rem; text-align: left; }
  .mini-bio img { width: 84px; height: 84px; margin: 0; }
}


/* === Large hero photo (v10) === */
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.hero__photo { position: relative; min-height: 420px; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 28px rgba(10,61,98,.15); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero__photo { min-height: 260px; }
}
