
:root {
  --bg: #0f1012;
  --bg-2: #17191d;
  --panel: rgba(255,255,255,.06);
  --panel-solid: #16181c;
  --panel-light: rgba(255,255,255,.82);
  --text: #f3f5f7;
  --text-dark: #1d2127;
  --muted: #a5acb7;
  --line: rgba(255,255,255,.09);
  --orange: #f57a18;
  --orange-soft: rgba(245,122,24,.16);
  --orange-bright: #ff9d42;
  --yellow: #ffcf4b;
  --slate: #243040;
  --shadow: 0 24px 60px rgba(0,0,0,.24);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-h: 88px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(245,122,24,.16), transparent 22%),
    radial-gradient(circle at 92% 6%, rgba(255,255,255,.05), transparent 15%),
    linear-gradient(180deg, #121418 0%, #0d0f12 60%, #101216 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  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(--orange); color: white; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--orange-bright);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 99px; background: linear-gradient(90deg,var(--orange),var(--yellow)); }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.04; letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.18rem, 2vw, 1.7rem); margin-bottom: 10px; }
.lead { font-size: clamp(1rem, 1.55vw, 1.2rem); color: var(--muted); max-width: 720px; }
.text-orange { color: var(--orange-bright); }
.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);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 28px;
}
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-header.scrolled {
  background: rgba(14,16,20,.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.06); box-shadow: 0 10px 35px rgba(0,0,0,.18);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #ff9e3f, #d85f04); color: #170e08; box-shadow: 0 15px 28px rgba(245,122,24,.22);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-copy { line-height: .95; }
.brand-copy strong { display: block; font-size: 1.2rem; font-weight: 900; letter-spacing: .02em; }
.brand-copy span { display: block; font-size: .82rem; color: var(--orange-bright); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.brand-copy small { display: block; font-size: .54rem; color: #8f98a4; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .nav-button {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 13px; border-radius: 12px;
  color: #dde3ea; font-weight: 700; background: transparent; border: 0;
}
.nav-link:hover, .nav-link.active, .nav-button:hover, .nav-button.active { background: rgba(245,122,24,.10); color: var(--orange-bright); }
.nav-item { position: relative; }
.nav-button svg { width: 15px; height: 15px; transition: transform .2s ease; }
.dropdown-menu {
  position: absolute; left: 0; top: calc(100% + 10px); min-width: 250px; z-index: 1005;
  background: rgba(17,19,23,.98); border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  padding: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dropdown-link {
  display: block; padding: 11px 12px; border-radius: 12px; color: #dfe4ea; font-weight: 650; transition: .18s ease;
}
.dropdown-link small { display: block; color: #8f98a4; font-size: .74rem; font-weight: 500; margin-top: 3px; }
.dropdown-link:hover { background: rgba(245,122,24,.10); color: var(--orange-bright); }
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.has-dropdown:hover .nav-button svg,
.nav-item.has-dropdown.open .nav-button svg,
.nav-item.has-dropdown:focus-within .nav-button svg { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06); color: white; 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 { background: linear-gradient(135deg, var(--orange), var(--orange-bright)); color: #170e08; box-shadow: 0 18px 32px rgba(245,122,24,.22); }
.btn-dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); color: white; }
.btn-outline { background: transparent; border-color: rgba(245,122,24,.22); color: var(--orange-bright); }
.btn-whatsapp { background: #25d366; color: #092e15; }
.btn-sm { min-height: 44px; padding-inline: 16px; }
.btn svg { width: 18px; height: 18px; }
.hero { padding: 152px 0 88px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 0% 34%, rgba(245,122,24,.12), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.05), transparent 14%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 48%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 .line-2, .hero-copy h1 .line-3 { display: block; }
.hero-copy h1 .line-3 { color: var(--orange-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { 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,.06); border: 1px solid rgba(255,255,255,.08); color: #dfe4ea; font-weight: 700;
}
.hero-pill svg { width: 17px; height: 17px; color: var(--orange-bright); }
.hero-visual { position: relative; min-height: 620px; }
.hero-main {
  position: absolute; inset: 76px 0 0 34px; overflow: hidden; border-radius: 34px;
  background: #1d1f23; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 28px 68px rgba(0,0,0,.28);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute; right: 0; top: 0; z-index: 4; width: 240px;
  background: linear-gradient(145deg, #1d2025, #14161a); border-radius: 24px; padding: 18px;
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.floating-badge .title { display: block; color: var(--orange-bright); font-size: 1.7rem; font-weight: 900; line-height: .95; margin-bottom: 8px; }
.floating-badge span { color: var(--muted); }
.floating-card {
  position: absolute; left: 0; bottom: 24px; z-index: 4; max-width: 245px;
  background: rgba(22,24,28,.95); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; padding: 18px; box-shadow: var(--shadow);
}
.icon-box {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(245,122,24,.16), rgba(255,255,255,.02)); color: var(--orange-bright); border: 1px solid rgba(245,122,24,.16);
}
.icon-box svg { width: 28px; height: 28px; }
.strip {
  padding: 22px 0; background: linear-gradient(135deg, #1b2027, #101317); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
}
.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 8px; }
.strip-item strong { display: block; font-size: 1rem; }
.strip-item span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.34; }
.strip-item .icon-box { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.service-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .copy { padding: 22px; }
.service-card .copy p { color: var(--muted); margin-bottom: 0; }
.service-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(245,122,24,.10); border: 1px solid rgba(245,122,24,.14); color: #ffd4ac; font-weight: 700; font-size: .82rem;
}
.feature-card {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 26px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; box-shadow: var(--shadow);
}
.feature-card p { color: var(--muted); margin-bottom: 0; }
.info-band {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px; padding: 30px; box-shadow: var(--shadow);
}
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.metric {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 22px 20px;
}
.metric strong { display: block; font-size: 2rem; line-height: 1; color: var(--orange-bright); margin-bottom: 8px; }
.metric span { color: var(--muted); font-size: .9rem; }
.page-hero { padding: 154px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 18%, rgba(245,122,24,.10), transparent 18%), radial-gradient(circle at 16% 24%, rgba(255,255,255,.04), transparent 16%); }
.breadcrumbs { display: flex; align-items: center; gap: 10px; color: #97a1ae; font-size: .86rem; margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--orange-bright); }
.banner-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: center; }
.banner-split .visual, .flyer-card { overflow: hidden; border-radius: 28px; background: #17191d; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.banner-split .visual img, .flyer-card img { width: 100%; height: 100%; object-fit: cover; }
.banner-split .visual img { min-height: 300px; }
.banner-split .copy {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; box-shadow: var(--shadow); padding: 30px;
}
.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(--orange-bright); flex: 0 0 auto; margin-top: 3px; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.price-card {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.price-card .category { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-bright); font-weight: 800; margin-bottom: 12px; }
.price-card h3 { margin-bottom: 8px; }
.price-card .amount { font-size: 2.2rem; font-weight: 900; color: var(--yellow); line-height: 1; margin: 12px 0; }
.price-card p { color: var(--muted); margin-bottom: 0; }
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item { background: rgba(255,255,255,.05); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 22px 24px; background: transparent; border: 0; color: #f2f5f8; font-weight: 800; }
.faq-question svg { width: 20px; height: 20px; color: var(--orange-bright); transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-card { background: rgba(255,255,255,.05); border-radius: 28px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); padding: 30px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.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(--orange-bright); }
.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-size: .9rem; font-weight: 700; color: #dde2e9; }
.form-control {
  min-height: 52px; width: 100%; border-radius: 14px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05);
  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(245,122,24,.55); box-shadow: 0 0 0 4px rgba(245,122,24,.10); }
.form-note { font-size: .82rem; color: var(--muted); }
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, #1b1e23, #101216); border-radius: 34px; padding: 48px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.cta-banner::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -90px; top: -120px; border: 1px solid rgba(245,122,24,.16); box-shadow: inset 0 0 60px rgba(245,122,24,.05); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.cta-banner p { color: var(--muted); margin-bottom: 0; }
.site-footer { background: linear-gradient(180deg, #111317, #0a0c0f); color: white; padding: 72px 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: var(--muted); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-brand p { color: var(--muted); max-width: 330px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.60); display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; z-index: 900; background: #25d366; color: white; box-shadow: 0 16px 35px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 30px; height: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .66s ease, transform .66s 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: #14171b;
    box-shadow: -24px 0 60px rgba(0,0,0,.28); border-left: 1px solid rgba(255,255,255,.08); 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; }
  .nav-item { width: 100%; }
  .nav-button, .nav-link { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; min-width: 0; margin-top: 8px; padding: 8px; border-radius: 16px; transform: none;
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible; background: rgba(255,255,255,.04); box-shadow: none; transition: max-height .25s ease, padding .25s ease, margin .25s ease;
  }
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu { max-height: 0; }
  .nav-item.has-dropdown.open .dropdown-menu { max-height: 400px; }
  .nav-item.has-dropdown.open .nav-button svg { transform: rotate(180deg); }
  .strip-grid, .metric-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .section { padding: 82px 0; }
  .hero { padding: 128px 0 72px; }
  .hero-grid, .grid-2, .banner-split, .contact-grid, .cta-inner { grid-template-columns: 1fr; display: grid; }
  .hero-copy { text-align: center; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .hero-main { inset: 96px 0 0; }
  .floating-badge { right: 10px; width: 220px; }
  .floating-card { left: 10px; bottom: 18px; }
  .grid-3, .grid-4, .footer-grid, .strip-grid, .metric-grid, .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  h1 { font-size: clamp(2.7rem, 14vw, 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: 112px 0 0; }
  .floating-badge { width: 182px; padding: 14px; }
  .floating-badge .title { font-size: 1.35rem; }
  .floating-card { max-width: 190px; padding: 14px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .cta-banner { padding: 34px 24px; }
  .page-hero { padding: 136px 0 64px; }
  .footer-bottom { flex-direction: column; }
}
