:root {
  --bg: #ffffff;
  --soft: #f7f5f0;
  --soft-blue: #eef6fb;
  --blue: #3a7ca5;
  --blue-deep: #1f5f82;
  --ink: #24313d;
  --muted: #677484;
  --line: #dfe6ec;
  --orange: #f47c20;
  --orange-strong: #ff6a1a;
  --red: #e13a17;
  --shadow: 0 24px 70px rgba(36, 49, 61, .10);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 230, 236, .75);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 40px rgba(36,49,61,.08); }
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 185px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(36,49,61,.12);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 7px 0;
}

.section { padding: 65px 0; }
.section-soft {
  background:
    radial-gradient(circle at 90% 10%, rgba(167,199,231,.35), transparent 33%),
    radial-gradient(circle at 10% 100%, rgba(244,124,32,.10), transparent 30%),
    var(--soft);
}
.section-blue {
  background:
    linear-gradient(180deg, rgba(238,246,251,.76), rgba(255,255,255,1));
}

.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 68px 0 76px; }
.hero-grid, .two-col, .cta-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.align-start { align-items: start; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow span {
  width: 28px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 999px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
}
h1 {
  font-size: clamp(42px, 6vw, 76px);
  margin: 18px 0 24px;
}
h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin: 14px 0 18px;
}
h3 { line-height: 1.2; }
.hero-copy p, .section-heading p, .content-block p, .cta-copy p {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  min-height: 50px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white;
  box-shadow: 0 18px 40px rgba(225,58,23,.22);
}
.btn-secondary, .btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}
.btn-outline:hover, .btn-secondary:hover { box-shadow: 0 14px 34px rgba(36,49,61,.08); }
.btn-full { width: 100%; border: 0; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(223,230,236,.7);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(223,230,236,.85);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(244,124,32,.22), transparent 65%);
}
.card-topline { width: 58px; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--red)); margin-bottom: 22px; }
.mini-label { font-size: 13px; color: var(--blue-deep); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-card h2 { font-size: clamp(28px, 3vw, 44px); }
.dashboard-card { display: grid; gap: 12px; margin: 26px 0; position: relative; z-index: 1; }
.dashboard-card div {
  padding: 18px;
  background: rgba(247,245,240,.74);
  border: 1px solid rgba(223,230,236,.8);
  border-radius: 18px;
}
.dashboard-card strong { display: block; font-size: 19px; margin-bottom: 4px; }
.dashboard-card span { color: var(--muted); font-size: 14px; }
.text-link { color: var(--blue-deep); font-weight: 800; position: relative; z-index: 1; }

.section-heading { max-width: 760px; }
.section-heading.center { text-align: center; margin: 0 auto 46px; }
.section-heading.center p { margin-left: auto; margin-right: auto; }
.content-block {
  border-left: 4px solid var(--blue);
  padding-left: 26px;
}
.about-grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
}
.about-photo-card {
  background: linear-gradient(180deg, rgba(238,246,251,.88), rgba(255,255,255,1));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.about-content .section-heading {
  margin-bottom: 24px;
}
.value-grid, .services-grid, .packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.value-card, .service-card, .package-card, .lead-form, .extra-offers, .problem-list div, .timeline-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(36,49,61,.06);
}
.value-card { padding: 26px; }
.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-deep);
  background: var(--soft-blue);
  font-size: 24px;
  margin-bottom: 18px;
}
.value-card h3, .service-card h3 { margin-bottom: 8px; color: var(--ink); }
.value-card p, .service-card p, .package-description, .timeline-item p { color: var(--muted); margin-bottom: 0; }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.segment-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(36,49,61,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.segment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31,95,130,.22);
  box-shadow: 0 18px 42px rgba(36,49,61,.09);
}
.segment-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-deep);
  background: linear-gradient(180deg, var(--soft-blue), rgba(255,255,255,.95));
}
.segment-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.segment-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}
.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.problem-list div { padding: 20px; }
.problem-list strong { display: block; margin-bottom: 6px; }
.problem-list span { color: var(--muted); font-size: 14px; }
#problemas .problem-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

#problemas .problem-list div {
  min-height: 132px;
}

.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card { padding: 24px; }
.service-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--blue-deep);
  font-weight: 900;
  margin-bottom: 18px;
}

.cases-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(167,199,231,.22), transparent 30%),
    linear-gradient(180deg, #fff, var(--soft));
  overflow: hidden;
}
.cases-carousel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 16px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.cases-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: casesAutoScroll 38s linear infinite;
}
.cases-carousel:hover .cases-track {
  animation-play-state: paused;
}
.case-card {
  width: calc((min(var(--max), 100vw - 40px) - 72px) / 5);
  min-width: 205px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(36,49,61,.08);
}
.case-card picture { display: block; }
.case-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}
.case-info {
  padding: 16px;
  text-align: center;
}
.case-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--ink);
}
.case-info p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.case-btn {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 13px;
}
@keyframes casesAutoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 9px)); }
}
@media (max-width: 1080px) {
  .case-card { width: 255px; }
}
@media (max-width: 560px) {
  .cases-carousel { mask-image: none; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .cases-track { animation: none; width: max-content; }
  .case-card { width: 250px; scroll-snap-align: start; }
  .case-card--duplicate { display: none; }
}

.packages-section .section-heading p { margin-inline: auto; }
.packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.package-card { padding: 30px; position: relative; }
.package-featured {
  border: 2px solid rgba(244,124,32,.55);
  transform: translateY(-16px);
  box-shadow: 0 30px 70px rgba(225,58,23,.12);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.package-kicker {
  color: var(--blue-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 10px;
}
.package-card h3 { font-size: 25px; margin-bottom: 12px; }
.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
  margin: 22px 0;
  letter-spacing: -.03em;
}
.price span { font-size: 14px; color: var(--muted); letter-spacing: 0; font-weight: 700; }
ul { padding-left: 20px; margin: 0 0 26px; color: var(--muted); }
li + li { margin-top: 9px; }
.extra-offers {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.extra-offers div {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}
.extra-offers strong { display: block; margin-bottom: 6px; }
.extra-offers span { color: var(--muted); }
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}
.timeline-item { padding: 22px; }
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue-deep);
  font-weight: 900;
  margin-bottom: 16px;
}
.timeline-item h3 { font-size: 16px; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; }
.timeline-item.highlight {
  border-color: rgba(244,124,32,.55);
  background: linear-gradient(180deg, #fff, #fff8f3);
}
.timeline-item.highlight span { background: linear-gradient(135deg, var(--orange), var(--red)); color: white; }
.cta-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(167,199,231,.35), transparent 35%),
    linear-gradient(135deg, var(--soft), #fff);
}
.lead-form { padding: 30px; display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 8px; font-weight: 800; color: var(--ink); }
.lead-form input, .lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px;
  color: var(--ink);
  outline: none;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(58,124,165,.12); }
.small-note { font-size: 14px !important; background: rgba(255,255,255,.72); border-left: 3px solid var(--orange); padding: 12px 14px; border-radius: 12px; }
.footer {
  background: var(--ink);
  color: white;
  padding: 46px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer img { width: 230px; }
.footer p { margin-bottom: 6px; color: rgba(255,255,255,.78); }
.footer a { color: #fff; font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.js .reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .value-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-featured { transform: none; }
}
@media (max-width: 860px) {
  .header-inner { height: 70px; }
  .brand img { width: 168px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 12px; }
  .nav-cta { text-align: center; }
  .hero-grid, .two-col, .cta-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 47px 0; }
  .hero { min-height: auto; padding: 62px 0; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-list { grid-template-columns: 1fr; }
  #problemas .problem-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-card, .lead-form, .package-card { padding: 22px; }
  .value-grid, .services-grid, .segments-grid, .timeline, .extra-offers { grid-template-columns: 1fr; }
  #problemas .problem-list { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .price { font-size: 29px; }
  .footer img { width: 200px; }
}
