:root {
  --navy: #1a2842;
  --navy-deep: #111b30;
  --navy-soft: #2a3a5c;
  --red: #b8323a;
  --red-deep: #8f2027;
  --silver: #b8b8c0;
  --cream: #faf7f2;
  --cream-warm: #f3eee4;
  --line: #e8e2d4;
  --ink: #141414;
  --muted: #6d6a63;
  --gold: #c9a76a;
  --success: #2f7d4f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', serif; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; position: relative; }
.topbar .tags { display: flex; gap: 22px; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
.topbar .tag { display: inline-flex; align-items: center; gap: 8px; opacity: .85; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(184,50,58,.25); }
.topbar .phone { color: var(--silver); margin-left: auto; }

@media (max-width: 780px) {
  .topbar .tags .tag:not(.primary) { display: none; }
}

/* ============ HEADER ============ */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(250,247,242,.94);
}
.site .inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand svg { width: 44px; height: auto; }
.brand .name { line-height: 1; }
.brand .name .top { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: 13px; color: var(--silver); letter-spacing: .22em; text-transform: uppercase; }
.brand .name .main { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--navy); letter-spacing: .02em; margin-top: 2px; }

nav.main { display: flex; gap: 30px; }
nav.main a { font-size: 13.5px; font-weight: 500; color: var(--ink); position: relative; transition: color .2s; letter-spacing: .01em; }
nav.main a:hover { color: var(--red); }
nav.main a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--red); transition: width .25s; }
nav.main a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 2px; font-weight: 600; font-size: 13.5px; letter-spacing: .04em; transition: all .22s; border: 1px solid transparent; white-space: nowrap; }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-outline-red { border-color: var(--red); color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-whats { background: #25D366; color: #fff; }
.btn-whats:hover { background: #1ebe5a; }
.btn svg { width: 16px; height: 16px; }

@media (max-width: 1100px) { nav.main { gap: 22px; } }
@media (max-width: 1000px) { nav.main { display: none; } }
@media (max-width: 520px) { .btn-ghost { display: none; } }

/* ============ HAMBURGER ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: all .25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1000px) { .nav-toggle { display: flex; } }

/* ============ MOBILE MENU ============ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  padding: 100px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
@media (max-width: 1000px) { .mobile-nav { display: flex; } }

.mobile-nav a {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .18s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mob-cta {
  margin-top: 32px;
  background: var(--red);
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px !important;
  border: none !important;
}
.mobile-nav .mob-cta:hover { background: var(--red-deep); color: #fff !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(26,40,66,.07) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(184,50,58,.05) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .3;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }

@media (max-width: 960px) { .hero .inner { grid-template-columns: 1fr; } }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red); }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--red); font-weight: 400; }
.hero .lede { font-size: clamp(15.5px, 1.2vw, 18px); color: var(--muted); max-width: 560px; margin-bottom: 30px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; aspect-ratio: 4/5; max-width: 440px; justify-self: end; width: 100%; }
@media (max-width: 960px) { .hero-visual { justify-self: center; max-width: 400px; } }

.hero-visual .h-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=85') center/cover;
  box-shadow: 0 40px 80px -30px rgba(26,40,66,.4);
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: 30px; bottom: 40px;
  border: 1.5px solid var(--red);
  z-index: -1;
}
.hero-visual .floating-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  z-index: 3;
  background: #fff;
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  box-shadow: 0 20px 40px -15px rgba(26,40,66,.35);
  min-width: 220px;
}
@media (max-width: 540px) { .hero-visual .floating-card { left: -10px; min-width: 190px; } }

.floating-card .lbl { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.floating-card .val { font-family: 'Fraunces', serif; font-size: 26px; color: var(--navy); font-weight: 500; line-height: 1.1; margin-top: 3px; }
.floating-card .sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ============ PILLARS STRIP ============ */
.pillars {
  background: var(--navy);
  color: var(--cream);
  padding: 30px 0;
  position: relative;
}
.pillars::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--red) 0 20%, transparent 20%); }
.pillars .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
@media (max-width: 900px) { .pillars .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 420px) { .pillars .grid { grid-template-columns: 1fr; } }
.pillar { display: flex; align-items: center; gap: 14px; font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; letter-spacing: .01em; }
.pillar .pnum { font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; color: var(--red); letter-spacing: .1em; opacity: .9; }
.pillar-divider { width: 1px; background: rgba(255,255,255,.12); height: 34px; justify-self: center; }
@media (max-width: 900px) { .pillar-divider { display: none; } }

/* ============ SECTION BASICS ============ */
section { padding: 100px 0; }
.sec-label { display: inline-block; font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--red); letter-spacing: .08em; margin-bottom: 12px; }
.sec-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; color: var(--navy); letter-spacing: -.015em; }
.sec-title em { font-style: italic; color: var(--red); }
.sec-sub { margin-top: 14px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 540px; }

/* ============ FEATURED SERVICE BLOCK ============ */
.featured-service { padding: 110px 0; position: relative; }
.featured-service.dark { background: var(--navy); color: var(--cream); }
.featured-service.dark .sec-title { color: var(--cream); }
.featured-service.dark .sec-sub { color: var(--silver); }
.fs-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 45px; }
@media (max-width: 900px) { .fs-head { grid-template-columns: 1fr; gap: 30px; } }
.fs-head .btns { display: flex; gap: 12px; flex-wrap: wrap; align-self: end; justify-content: flex-end; }
@media (max-width: 900px) { .fs-head .btns { justify-content: flex-start; } }

/* Mini property cards */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .mini-grid { grid-template-columns: 1fr; } }

.mini { background: #fff; color: var(--ink); border: 1px solid var(--line); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.mini:hover { transform: translateY(-5px); box-shadow: 0 25px 50px -25px rgba(26,40,66,.35); }
.mini .m-img { position: relative; aspect-ratio: 5/3; overflow: hidden; background: #ddd; }
.mini .m-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mini:hover .m-img img { transform: scale(1.05); }
.mini .tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 6px 10px; }
.mini .tag.market { background: var(--success); }
.mini .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mini .loc { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.mini h4 { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: var(--navy); line-height: 1.2; }
.mini .specs { font-size: 13px; color: var(--muted); }
.mini .prices { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 12px; margin-top: auto; border-top: 1px dashed var(--line); }
.mini .old { font-size: 11.5px; color: var(--muted); text-decoration: line-through; }
.mini .now { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.mini .pct { font-size: 12.5px; color: var(--success); font-weight: 700; }
.featured-service.dark .mini .old { color: #999; }
.featured-service.dark .mini h4 { color: var(--navy); }

/* ============ SERVICE BLOCK (alternating) ============ */
.svc-block { padding: 90px 0; border-bottom: 1px solid var(--line); }
.svc-block:nth-of-type(even) { background: var(--cream-warm); }
.svc-block .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .svc-block .inner { grid-template-columns: 1fr; gap: 40px; } }
.svc-block.reverse .svc-visual { order: 2; }
@media (max-width: 900px) { .svc-block.reverse .svc-visual { order: initial; } }

.svc-visual { position: relative; aspect-ratio: 5/4; }
.svc-visual img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 30px 60px -30px rgba(26,40,66,.3); }
.svc-visual::after {
  content: "";
  position: absolute;
  width: 60%; height: 60%;
  border: 1.5px solid var(--red);
  bottom: -18px; right: -18px;
  z-index: -1;
}
.svc-block.reverse .svc-visual::after { right: auto; left: -18px; }

.svc-text .num { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--red); letter-spacing: .15em; margin-bottom: 14px; display: block; }
.svc-text h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1; letter-spacing: -.01em; color: var(--navy); margin-bottom: 18px; }
.svc-text h3 em { font-style: italic; color: var(--red); }
.svc-text p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }
.svc-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 22px 0 30px; }
.svc-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink); }
.svc-feats li::before { content: ""; width: 18px; height: 1.5px; background: var(--red); margin-top: 11px; flex-shrink: 0; }
.svc-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ GROUP HEADER ============ */
.group-head { padding: 80px 0 20px; text-align: center; }
.group-head .glbl { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; color: var(--red); letter-spacing: .12em; }
.group-head h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 5vw, 56px); color: var(--navy); letter-spacing: -.02em; margin-top: 6px; line-height: 1.05; }
.group-head h2 em { font-style: italic; color: var(--red); }
.group-head .divider { width: 60px; height: 1px; background: var(--red); margin: 20px auto 0; }

/* ============ STATS ============ */
.stats { background: var(--navy); color: var(--cream); padding: 50px 0; position: relative; }
.stats::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--red) 0 20%, transparent 20%); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .num { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.stat .num .plus { color: var(--red); font-style: italic; }
.stat .lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); margin-top: 6px; }
@media (max-width: 780px) { .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; } }

/* ============ SPECIALIST CTA ============ */
.specialist-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.specialist-cta::before {
  content: "CASA PACCO";
  position: absolute;
  right: -2%; top: 50%; transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(130px, 20vw, 260px);
  color: rgba(255,255,255,.022);
  letter-spacing: -.04em;
  line-height: .8;
  white-space: nowrap;
  pointer-events: none;
}
.specialist-cta .inner { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }
.specialist-cta h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 5vw, 58px); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.specialist-cta h2 em { font-style: italic; color: var(--red); }
.specialist-cta p { color: var(--silver); font-size: 17px; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.specialist-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 15px 26px; font-size: 14px; }

/* ============ FOOTER ============ */
footer { background: var(--navy-deep); color: var(--silver); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
footer h6 { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a { font-size: 14px; color: var(--silver); transition: color .2s; }
footer a:hover { color: var(--red); }
.foot-brand { max-width: 340px; }
.foot-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: #6e7385; }
@media (max-width: 640px) { .foot-bottom { flex-direction: column; gap: 14px; text-align: center; } }

/* ============ FLOAT WHATSAPP ============ */
.whats-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  transition: all .3s;
  animation: pulse 2.4s infinite;
}
.whats-float:hover { transform: scale(1.08); background: #1ebe5a; }
.whats-float svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ MODAL ============ */
.modal-backdrop { position: fixed; inset: 0; background: rgba(17,27,48,.7); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; animation: fadeIn .25s; }
.modal-backdrop.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal { background: var(--cream); max-width: 440px; width: 100%; padding: 44px 40px; position: relative; border-top: 3px solid var(--red); animation: slideUp .35s cubic-bezier(.2,.7,.2,1); }

@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal .close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 22px; transition: color .2s; }
.modal .close:hover { color: var(--red); }
.modal h3 { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 500; color: var(--navy); letter-spacing: -.01em; margin-bottom: 6px; }
.modal h3 em { font-style: italic; color: var(--red); }
.modal .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.field input { width: 100%; padding: 13px 14px; background: #fff; border: 1px solid var(--line); font-family: inherit; font-size: 15px; color: var(--navy); transition: border .2s; outline: none; }
.field input:focus { border-color: var(--navy); }

.modal .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }
.modal .forgot { display: block; text-align: right; font-size: 12.5px; color: var(--muted); margin-top: -8px; margin-bottom: 18px; }
.modal .forgot:hover { color: var(--red); }
.modal .divider { text-align: center; position: relative; margin: 24px 0 18px; font-size: 12px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.modal .divider::before,
.modal .divider::after { content: ""; position: absolute; top: 50%; width: calc(50% - 30px); height: 1px; background: var(--line); }
.modal .divider::before { left: 0; }
.modal .divider::after { right: 0; }
.modal .signup { text-align: center; font-size: 14px; color: var(--muted); margin-top: 8px; }
.modal .signup a { color: var(--red); font-weight: 600; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE — MOBILE FIRST ADDITIONS ============ */

/* Tablets 768–1000px */
@media (max-width: 1000px) {
  .hero { padding: 60px 0 140px; }
  .hero-visual { max-width: 360px; }
  .featured-service { padding: 80px 0; }
  .specialist-cta { padding: 80px 0; }
}

/* Small tablets / large phones 580–767px */
@media (max-width: 767px) {
  section { padding: 70px 0; }
  .svc-block { padding: 60px 0; }
  .svc-block .inner { gap: 30px; }
  .stats .grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  .hero { padding: 50px 0 120px; }
  .hero-visual .floating-card { bottom: -20px; min-width: 180px; padding: 14px 16px; }
  .floating-card .val { font-size: 21px; }
  .specialist-cta::before { display: none; }
  .group-head { padding: 50px 0 10px; }
}

/* Phones < 580px */
@media (max-width: 479px) {
  .hero h1 { font-size: 34px; }
  .hero .lede { font-size: 15px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pillars .grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .specialist-cta .btns { flex-direction: column; align-items: stretch; }
  .specialist-cta .btns .btn { justify-content: center; }
  .topbar .phone { display: none; }
  .header-actions .btn { padding: 9px 14px; font-size: 12.5px; }
}

/* Desktop mínimo 1280px — garantias */
@media (min-width: 1280px) {
  .container { padding: 0 40px; }
  nav.main { gap: 28px; }
  .hero .inner { gap: 80px; }
  .svc-block .inner { gap: 80px; }
}
