:root {
  --navy: #111a44;
  --navy-2: #1f2a60;
  --orange: #ff9200;
  --orange-2: #ffad32;
  --text: #172033;
  --muted: #667085;
  --soft: #f5f7fb;
  --soft-2: #eef3ff;
  --line: #e6eaf2;
  --white: #ffffff;
  --green: #22c55e;
  --wa: #25d366;
  --shadow: 0 18px 52px rgba(17, 26, 68, 0.11);
  --shadow-soft: 0 12px 32px rgba(17, 26, 68, 0.08);
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 9999; border-radius: 10px; }
.skip-link:focus { left: 10px; }

.top-strip { background: var(--navy); color: #fff; font-size: 13px; }
.top-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.top-strip a { color: #fff; opacity: .92; }
.top-strip span { opacity: .82; }

.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(230,234,242,.9); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 32px rgba(17, 26, 68, 0.08); background: rgba(255,255,255,.97); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; min-width: 160px; }
.brand img { width: 192px; max-height: 58px; object-fit: contain; display: block; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; border-radius: 999px; color: #26324f; font-weight: 700; font-size: 14px; transition: .22s ease; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: #fff2df; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-panel { position: absolute; top: calc(100% + 10px); left: 0; width: 292px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .22s ease; }
.dropdown-panel a { display: block; padding: 12px 14px; border-radius: 14px; color: #27324f; font-weight: 700; }
.dropdown-panel a:hover { background: var(--soft); color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--soft); color: var(--navy); cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 12px; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: .25s ease; }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-panel-inner { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; padding: 16px 0 22px; }
.mobile-link, .mobile-subtoggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 10px; border-radius: 12px; border: 0; background: transparent; color: var(--navy); font-weight: 800; text-align: left; }
.mobile-link:hover, .mobile-subtoggle:hover { background: var(--soft); }
.mobile-submenu { display: none; padding-left: 12px; margin: 4px 0 8px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { display: block; padding: 11px 10px; border-radius: 12px; color: #37415f; font-weight: 700; }
.mobile-cta { margin-top: 12px; width: 100%; justify-content: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ff7a00); color: #fff; box-shadow: 0 14px 30px rgba(255,146,0,.25); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(255,146,0,.34); }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 14px 30px rgba(17,26,68,.18); }
.btn-outline { border-color: rgba(17,26,68,.18); color: var(--navy); background: #fff; }
.btn-outline:hover { background: var(--soft-2); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 14px 30px rgba(37,211,102,.22); }

.hero { position: relative; overflow: hidden; padding: 78px 0 72px; background: linear-gradient(135deg, #fff 0%, #f7f9ff 46%, #fff7ec 100%); }
.home-hero { padding: 88px 0 86px; }
.hero:before, .hero:after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.hero:before { width: 300px; height: 300px; right: -90px; top: -110px; background: rgba(255,146,0,.12); }
.hero:after { width: 240px; height: 240px; left: -120px; bottom: -100px; background: rgba(17,26,68,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 52px; }
.hero-content { max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; background: #fff2df; color: #8f4a00; font-weight: 800; font-size: 13px; margin-bottom: 18px; }
.eyebrow:before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,146,0,.13); }
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.12; color: var(--navy); letter-spacing: -.03em; }
h1 { font-size: clamp(38px, 5.2vw, 68px); }
h2 { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0 0 16px; color: var(--muted); }
.hero-lead { font-size: 18px; max-width: 670px; color: #4e5872; }
.highlight-line { margin: 18px 0 24px; display: inline-flex; flex-wrap: wrap; gap: 8px; color: var(--navy); font-weight: 900; }
.highlight-line span { padding: 8px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 8px 20px rgba(17,26,68,.06); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }
.trust-line { margin-top: 22px; color: #5b657d; font-weight: 700; }
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,.82); border: 1px solid rgba(230,234,242,.9); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow); animation: floatSoft 6s ease-in-out infinite; }
.hero-card img { display: block; }
.hero-mini { position: absolute; left: -20px; bottom: 28px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); padding: 14px 16px; display: flex; gap: 12px; align-items: center; }
.hero-mini strong { color: var(--navy); display: block; line-height: 1.1; }
.hero-mini span { color: var(--muted); font-size: 13px; font-weight: 700; }
.mini-dot { width: 38px; height: 38px; border-radius: 14px; background: #fff2df; display: grid; place-items: center; color: var(--orange); font-weight: 900; }
@keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.section { padding: 84px 0; }
.section-sm { padding: 58px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker { color: var(--orange); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; margin-bottom: 10px; }
.grid { 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: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 8px 24px rgba(17,26,68,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(255,146,0,.35); }
.icon-card { width: 72px; height: 72px; border-radius: 22px; background: #fff7ec; display: grid; place-items: center; margin-bottom: 18px; }
.icon-card img { width: 62px; height: 62px; object-fit: contain; }
.card h3 { margin-bottom: 8px; }
.price { color: var(--orange); font-size: 24px; font-weight: 900; letter-spacing: -.02em; margin: 10px 0; }
.best-for { color: var(--navy); font-weight: 800; font-size: 14px; }
.card .btn { margin-top: 16px; }
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.feature-list li { position: relative; padding-left: 28px; color: #4c5670; }
.feature-list li:before { content: ""; width: 17px; height: 17px; border-radius: 999px; background: rgba(255,146,0,.14); position: absolute; left: 0; top: 4px; }
.feature-list li:after { content: ""; width: 7px; height: 4px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); position: absolute; left: 5px; top: 10px; }

.recommended-box { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 24px; background: linear-gradient(135deg, var(--navy), #26356f); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); color: #fff; overflow: hidden; position: relative; }
.recommended-box:after { content: ""; position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 999px; background: rgba(255,146,0,.22); }
.recommended-box h2, .recommended-box h3 { color: #fff; }
.recommended-box p { color: rgba(255,255,255,.78); }
.recommended-price { font-size: clamp(34px, 4vw, 56px); line-height: 1; font-weight: 900; color: var(--orange-2); }
.recommended-tag { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font-weight: 900; margin-bottom: 14px; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px; text-align: center; box-shadow: 0 8px 24px rgba(17,26,68,.04); }
.stat strong { display: block; color: var(--navy); font-size: 30px; line-height: 1; margin-bottom: 8px; }
.stat span { color: var(--muted); font-weight: 800; font-size: 13px; }

.plan-card { position: relative; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.plan-top { padding: 26px 26px 20px; background: linear-gradient(135deg, #fff, #f7f9ff); border-bottom: 1px solid var(--line); }
.plan-card.recommended-plan { border-color: rgba(255,146,0,.55); box-shadow: 0 18px 52px rgba(255,146,0,.12); }
.plan-badge { position: absolute; top: 18px; right: 18px; background: var(--orange); color: #fff; padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.plan-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.plan-body .btn { margin-top: auto; }
.plan-price { font-size: 34px; color: var(--navy); font-weight: 900; line-height: 1; margin: 8px 0 12px; }
.plan-price span { color: var(--muted); font-size: 14px; font-weight: 800; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(17,26,68,.04); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--navy); background: #f7f9ff; font-size: 14px; }
td { color: #4e5872; font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.note-box { background: #fff7ec; border: 1px solid #ffe0ad; border-radius: var(--radius); padding: 24px; color: #6d4406; }
.note-box h3 { color: #8f4a00; }

.faq-wrap { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; box-shadow: 0 8px 24px rgba(17,26,68,.035); }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; text-align: left; font-weight: 900; cursor: pointer; }
.faq-question span { width: 28px; height: 28px; border-radius: 999px; background: #fff2df; color: var(--orange); display: grid; place-items: center; flex: 0 0 auto; transition: transform .22s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 20px 20px; margin: 0; }

.cta-band { background: linear-gradient(135deg, var(--navy), #26356f); color: #fff; border-radius: var(--radius-lg); padding: 42px; display: flex; justify-content: space-between; align-items: center; gap: 24px; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.portfolio-card { overflow: hidden; padding: 0; }
.portfolio-card img { display: block; width: 100%; background: #f7f9ff; transition: transform .28s ease; }
.portfolio-card:hover img { transform: scale(1.035); }
.portfolio-card-body { padding: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--soft-2); color: var(--navy); font-size: 12px; font-weight: 800; }

.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-card a { color: var(--navy); font-weight: 900; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-weight: 900; color: var(--navy); font-size: 13px; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; color: var(--text); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,146,0,.65); box-shadow: 0 0 0 4px rgba(255,146,0,.12); }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }

.legal-content { max-width: 880px; margin: 0 auto; }
.legal-content h2 { font-size: 28px; margin-top: 34px; }
.legal-content ul { color: var(--muted); }

.site-footer { background: #0c1333; color: #fff; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr 1.2fr; gap: 30px; }
.footer-logo-card { background: #fff; border-radius: 18px; padding: 10px 12px; display: inline-flex; margin-bottom: 16px; }
.footer-logo-card img { width: 178px; display: block; }
.site-footer h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--orange-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

.float-whatsapp { position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 999px; background: var(--wa); color: #fff; display: grid; place-items: center; z-index: 998; box-shadow: 0 18px 44px rgba(37,211,102,.34); animation: pulseWa 2.6s ease-in-out infinite; }
.float-whatsapp svg { width: 29px; height: 29px; }
@keyframes pulseWa { 0%,100% { transform: translateY(0) scale(1); box-shadow: 0 18px 44px rgba(37,211,102,.30); } 50% { transform: translateY(-3px) scale(1.04); box-shadow: 0 24px 52px rgba(37,211,102,.42); } }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .desktop-nav, .header-actions .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; max-height: calc(100vh - 78px); overflow: auto; }
  .brand img { width: 166px; }
  .hero-grid, .recommended-box, .contact-panel { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .top-strip { display: none; }
  .header-inner { height: 70px; }
  .mobile-panel.open { max-height: calc(100vh - 70px); }
  .hero, .home-hero { padding: 58px 0 60px; }
  .hero-grid { gap: 34px; }
  .hero-lead { font-size: 16px; }
  .highlight-line { display: grid; gap: 8px; }
  .section { padding: 62px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-mini { position: static; margin-top: 14px; width: 100%; }
  .container { width: min(var(--container), calc(100% - 32px)); }
}

@media (max-width: 520px) {
  .brand img { width: 142px; }
  h1 { font-size: 35px; }
  h2 { font-size: 28px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .card, .plan-top, .plan-body { padding: 22px; }
  .recommended-box { padding: 28px 22px; }
  .float-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .table-scroll { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
