
:root {
  --bg: #f5f7fb;
  --bg-2: #eef3f9;
  --panel: rgba(255,255,255,.78);
  --panel-solid: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --line: rgba(17, 24, 39, .08);
  --shadow: 0 20px 55px rgba(16, 24, 40, .08);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-h: 86px;
  --blue: #1957d2;
  --red: #ef2727;
  --yellow: #f6bb16;
  --green: #1f9a52;
  --navy: #10233f;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% -2%, rgba(25,87,210,.11), transparent 24%),
    radial-gradient(circle at 90% 3%, rgba(239,39,39,.09), transparent 19%),
    radial-gradient(circle at 72% 22%, rgba(246,187,22,.12), transparent 20%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 46%, #edf3f9 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue); color: white; }
.container { width: min(calc(100% - 34px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .79rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 99px; background: linear-gradient(90deg,var(--blue),var(--red)); }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.06; letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); margin-bottom: 12px; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.23rem); color: var(--muted); max-width: 720px; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-yellow { color: #c88800; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
}
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: rgba(17,24,39,.08); box-shadow: 0 10px 35px rgba(15,23,42,.06);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #ffd451, #f5b500); color: #111; box-shadow: 0 14px 25px rgba(246,187,22,.2);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-copy { line-height: .92; text-transform: uppercase; }
.brand-copy strong { display: block; font-size: 1.32rem; color: var(--blue); font-weight: 900; }
.brand-copy span { display: block; font-size: 1.28rem; font-weight: 900; color: var(--red); }
.brand-copy small { display: block; color: var(--muted); font-size: .6rem; letter-spacing: .12em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 12px 13px; color: #243244; font-weight: 700; border-radius: 12px; }
.nav-link:hover, .nav-link.active { background: rgba(25,87,210,.08); color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.75); color: var(--text); align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg,var(--red), #ff5e41); box-shadow: 0 18px 32px rgba(239,39,39,.22); }
.btn-secondary { color: white; background: linear-gradient(135deg,var(--blue), #3a7fff); box-shadow: 0 18px 32px rgba(25,87,210,.22); }
.btn-outline { border-color: rgba(25,87,210,.2); background: rgba(255,255,255,.8); color: var(--blue); }
.btn-whatsapp { background: #25d366; color: #062c13; }
.btn-sm { min-height: 44px; padding-inline: 16px; }
.btn svg { width: 18px; height: 18px; }

.hero { padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 0% 30%, rgba(25,87,210,.08), transparent 24%),
    radial-gradient(circle at 100% 15%, rgba(239,39,39,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.5), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 .line-2 { color: var(--blue); display: block; }
.hero-copy h1 .line-3 { color: var(--red); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(17,24,39,.06); color: #243244; font-weight: 700; box-shadow: var(--shadow);
}
.hero-pill svg { width: 17px; height: 17px; }
.hero-visual { position: relative; min-height: 620px; }
.hero-main {
  position: absolute; inset: 56px 0 0 30px; overflow: hidden; border-radius: 34px;
  background: white; border: 1px solid rgba(255,255,255,.85); box-shadow: 0 28px 70px rgba(16,24,40,.11);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; left: -4px; bottom: 30px; max-width: 250px; z-index: 4;
  background: rgba(255,255,255,.94); border: 1px solid rgba(17,24,39,.07); box-shadow: var(--shadow);
  border-radius: 24px; padding: 18px;
}
.floating-card .icon-box { margin-bottom: 12px; }
.floating-mini {
  position: absolute; top: 0; right: 0; z-index: 4; background: linear-gradient(135deg,#ffffff, #f7f9fc);
  border: 1px solid rgba(17,24,39,.06); box-shadow: var(--shadow); border-radius: 22px; padding: 16px 18px; width: 245px;
}
.badge-247 { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .84rem; }
.icon-box {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #eaf1ff, #ffffff); color: var(--blue); border: 1px solid rgba(25,87,210,.12);
}
.icon-box.red { color: var(--red); border-color: rgba(239,39,39,.13); background: linear-gradient(145deg, #fff0f0, #fff); }
.icon-box.green { color: var(--green); border-color: rgba(31,154,82,.14); background: linear-gradient(145deg, #eefbf3, #fff); }
.icon-box.yellow { color: #cc9100; border-color: rgba(246,187,22,.16); background: linear-gradient(145deg, #fff8e2, #fff); }
.icon-box svg { width: 28px; height: 28px; }

.strip {
  padding: 22px 0; background: linear-gradient(135deg, var(--navy), #1d3b66); color: white; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.strip-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.strip-item { display: flex; gap: 14px; align-items: center; padding: 10px 12px; }
.strip-item strong { display: block; font-size: 1rem; }
.strip-item span { display: block; color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.35; }
.strip-item .icon-box { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); color: white; }

.service-card {
  display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: start;
  background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow); border-radius: 24px; padding: 24px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-grid-visual { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.visual-card {
  background: white; border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(255,255,255,.8);
}
.visual-card img { width: 100%; height: 180px; object-fit: cover; }
.visual-card .copy { padding: 18px; }
.visual-card .copy p { color: var(--muted); margin-bottom: 0; }
.accent-bar { height: 6px; background: linear-gradient(90deg,var(--blue), var(--yellow), var(--red), var(--green)); border-radius: 99px; margin-top: 8px; }

.service-banner {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.96)); padding: 16px; border-radius: 26px; border: 1px solid rgba(255,255,255,.85); box-shadow: var(--shadow);
}
.service-banner img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; border-radius: 20px; }
.check-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-list svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; margin-top: 3px; }

.info-band {
  background: linear-gradient(135deg, #ffffff, #f6f9fe); border: 1px solid rgba(17,24,39,.06); box-shadow: var(--shadow);
  border-radius: 28px; padding: 30px;
}
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.metric {
  padding: 24px 20px; border-radius: 22px; background: rgba(255,255,255,.8); border: 1px solid rgba(17,24,39,.06);
}
.metric strong { display: block; font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.metric span { color: var(--muted); font-size: .9rem; }
.metric.blue strong { color: var(--blue); }
.metric.red strong { color: var(--red); }
.metric.green strong { color: var(--green); }
.metric.yellow strong { color: #c88800; }

.page-hero {
  padding: 154px 0 78px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(25,87,210,.08), transparent 18%), radial-gradient(circle at 12% 28%, rgba(239,39,39,.06), transparent 16%);
}
.breadcrumbs { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: .86rem; margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.gallery-card {
  background: white; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.88);
}
.gallery-card img { width: 100%; height: 230px; object-fit: cover; }
.gallery-card .copy { padding: 18px; }
.gallery-card .copy p { color: var(--muted); margin-bottom: 0; }

.faq-list { display: grid; gap: 12px; max-width: 880px; }
.faq-item { background: rgba(255,255,255,.84); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.88); }
.faq-question {
  width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 16px; align-items: center; text-align: left;
  padding: 22px 24px; font-weight: 800; color: var(--text);
}
.faq-question svg { width: 20px; height: 20px; color: var(--blue); transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { color: var(--muted); padding: 0 24px 22px; margin: 0; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 26px; align-items: start; }
.contact-card { background: rgba(255,255,255,.86); box-shadow: var(--shadow); border-radius: 26px; border: 1px solid rgba(255,255,255,.88); padding: 28px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(17,24,39,.06); }
.contact-method:last-child { border-bottom: 0; }
.contact-method strong { display: block; }
.contact-method span, .contact-method a { color: var(--muted); }
.contact-method a:hover { color: var(--blue); }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 700; color: #223045; font-size: .9rem; }
.form-control {
  min-height: 52px; width: 100%; border-radius: 14px; border: 1px solid rgba(17,24,39,.1);
  background: rgba(255,255,255,.96); color: var(--text); padding: 0 15px; outline: none;
}
textarea.form-control { min-height: 130px; resize: vertical; padding-top: 14px; }
.form-control:focus { border-color: rgba(25,87,210,.35); box-shadow: 0 0 0 4px rgba(25,87,210,.08); }
.form-note { font-size: .82rem; color: var(--muted); }

.cta-banner {
  position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), #19417c); color: white;
  border-radius: 34px; padding: 48px; box-shadow: 0 24px 60px rgba(16,24,40,.14);
}
.cta-banner::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -70px; top: -110px;
  border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 60px rgba(255,255,255,.08);
}
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 26px; align-items: center; }
.cta-banner p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.cta-banner .eyebrow { color: #ffd451; }
.cta-banner .eyebrow::before { background: linear-gradient(90deg,#ffd451,#ff5e41); }

.logo-card {
  background: white; border-radius: 30px; padding: 16px; border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow);
}
.logo-card img { border-radius: 18px; width: 100%; }

.site-footer { background: linear-gradient(180deg, #0f1d33, #0a1528); color: white; padding: 70px 0 24px; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr 1fr; gap: 34px; }
.footer-title { font-size: .88rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 18px; color: rgba(255,255,255,.92); }
.footer-links, .footer-contact { display: grid; gap: 10px; color: rgba(255,255,255,.72); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.75); max-width: 330px; }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; color: rgba(255,255,255,.62); display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }
.footer-brand .brand-copy strong { color: #7fb0ff; }
.footer-brand .brand-copy span { color: #ff7268; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 900; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: white; display: grid; place-items: center; box-shadow: 0 16px 35px rgba(16,24,40,.2);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 1100px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(390px, 92vw); height: 100dvh; padding: 104px 20px 28px; background: #fff;
    box-shadow: -24px 0 60px rgba(16,24,40,.12); border-left: 1px solid rgba(17,24,39,.06); display: flex; flex-direction: column; align-items: stretch; gap: 6px; transition: right .28s ease;
  }
  .menu-open .main-nav { right: 0; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .hero-grid, .grid-4, .footer-grid, .strip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 880px) {
  :root { --header-h: 78px; }
  .section { padding: 80px 0; }
  .hero { padding: 128px 0 70px; }
  .hero-grid, .contact-grid, .grid-2, .service-banner, .cta-inner { grid-template-columns: 1fr; display: grid; }
  .hero-copy { text-align: center; }
  .hero-actions, .hero-highlights { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .hero-main { inset: 54px 0 0; }
  .floating-mini { right: 8px; }
  .floating-card { left: 8px; }
  .service-grid-visual, .gallery-grid, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .brand-copy small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-visual { min-height: 430px; }
  .hero-main { inset: 72px 0 0; }
  .floating-mini { width: 198px; padding: 14px; }
  .floating-card { max-width: 195px; }
  .strip-grid, .metric-grid, .quote-form { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .cta-banner { padding: 34px 24px; }
  .page-hero { padding: 136px 0 64px; }
  .form-group.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
