:root {
  --brand-blue: #0d4ea6;
  --brand-blue-deep: #0a3b80;
  --brand-orange: #f97316;
  --brand-orange-soft: #fff0e5;
  --brand-slate: #10233d;
  --text-body: #3f4e63;
  --surface-muted: #f3f7fc;
  --border: #dbe5f1;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 34px rgba(13, 78, 166, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  line-height: 1.65;
  background: #fff;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  color: var(--brand-blue-deep);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-slate);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-space {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-title {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.section-title .eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand-orange);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #fb923c 100%);
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 22px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 1px solid rgba(13, 78, 166, 0.2);
  color: var(--brand-blue);
  border-radius: 12px;
  font-weight: 600;
  padding: 11px 20px;
}

.btn-outline-brand:hover {
  background: #edf4ff;
  color: var(--brand-blue-deep);
}

.topbar {
  background: var(--brand-blue-deep);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
}

.topbar a {
  color: #dbeafe;
}

.topbar a:hover {
  color: #fff;
}

.social-mini a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-height: 56px;
}

.navbar {
  padding: 14px 0;
}

.navbar .nav-link {
  font-weight: 600;
  color: #294163;
  padding: 0.6rem 0.7rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand-blue);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.32);
  z-index: 1050;
}

.hero {
  position: relative;
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(44, 108, 199, 0.3), transparent 35%),
    linear-gradient(120deg, #0a326e 0%, #0d4ea6 50%, #1472d6 100%);
  padding: 112px 0 78px;
}

.hero .badge-soft {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 1rem 0;
}

.hero p {
  font-size: 1.06rem;
  color: #deebff;
}

.hero-media {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.hero-media iframe,
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.kpi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
}

.kpi-card h3 {
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 0;
}

.card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(10, 50, 110, 0.06);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 50, 110, 0.12);
}

.card-modern .card-body {
  padding: 1.4rem;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.split-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.split-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.split-content {
  padding: 2rem;
}

.local-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 35, 61, 0.08);
}

.local-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.local-card .info {
  padding: 1.1rem 1.2rem;
}

.units-vibrant {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(249, 115, 22, 0.2), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(13, 78, 166, 0.26), transparent 38%),
    linear-gradient(145deg, #0b2e67 0%, #1d4f97 48%, #0d3f86 100%);
}

.units-vibrant::before,
.units-vibrant::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.units-vibrant::before {
  top: -160px;
  right: -120px;
  background: rgba(255, 255, 255, 0.14);
}

.units-vibrant::after {
  left: -140px;
  bottom: -190px;
  background: rgba(249, 115, 22, 0.24);
}

.units-vibrant .container {
  position: relative;
  z-index: 1;
}

.units-vibrant .units-title {
  max-width: 780px;
}

.units-vibrant .section-title .eyebrow,
.units-vibrant .section-title h2 {
  color: #fff;
}

.units-vibrant .section-title .eyebrow::before {
  background: #ffb27d;
}

.units-vibrant .section-title p {
  color: rgba(242, 247, 255, 0.9);
  font-size: 1.05rem;
}

.local-card-vibrant {
  position: relative;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 22px 38px rgba(7, 24, 47, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.local-card-vibrant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f97316, #ff9f50 42%, #2d6ac8 100%);
  z-index: 2;
}

.local-card-vibrant:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(6, 24, 48, 0.36);
}

.local-card-vibrant .info {
  padding: 1.45rem 1.25rem 1.05rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.96));
}

.unit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1f4f9f;
  background: rgba(13, 78, 166, 0.1);
  margin-bottom: 0.9rem;
}

.unit-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.local-card-vibrant h3 {
  margin-bottom: 0.45rem;
  color: #102c53;
}

.local-card-vibrant p {
  color: #35506f;
  font-size: 1.02rem;
}

.local-card-vibrant p i {
  color: var(--brand-orange);
  margin-right: 0.28rem;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.unit-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 0.88rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  box-shadow: 0 10px 18px rgba(9, 25, 45, 0.16);
}

.unit-btn i {
  font-size: 0.95rem;
}

.unit-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.unit-btn-whats {
  background: linear-gradient(135deg, #12be62, #26d86f);
}

.unit-btn-phone {
  background: linear-gradient(135deg, #2257b4, #3a77dc);
}

.unit-btn-map {
  background: linear-gradient(135deg, #f97316, #ff984f);
}

.local-card-vibrant iframe {
  height: 292px;
  border: 0;
  filter: saturate(1.12) contrast(1.03);
}

.media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  height: 100%;
}

.media-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.media-thumb .play-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 35, 61, 0.1), rgba(16, 35, 61, 0.55));
}

.media-thumb .play-link i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.media-card .body {
  padding: 1rem;
}

.form-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.6rem;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 35, 61, 0.08);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e3658;
}

.form-control,
.form-select {
  border-color: #cdd9ea;
  min-height: 46px;
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: #80a7da;
  box-shadow: 0 0 0 0.18rem rgba(13, 78, 166, 0.14);
}

.page-hero {
  background: linear-gradient(120deg, #f7fbff 0%, #edf4ff 100%);
  border-bottom: 1px solid #dde9f8;
  padding: 64px 0 44px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.page-hero-vibrant {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(249, 115, 22, 0.24), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(123, 165, 232, 0.28), transparent 36%),
    linear-gradient(145deg, #0c346f 0%, #1359b0 54%, #0f4c9e 100%);
}

.page-hero-vibrant::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(6px);
}

.page-hero-vibrant .breadcrumb-mini,
.page-hero-vibrant .breadcrumb-mini a,
.page-hero-vibrant h1,
.page-hero-vibrant p {
  color: #fff;
}

.page-hero-vibrant p {
  color: rgba(236, 245, 255, 0.95);
}

.page-hero-vibrant .breadcrumb-mini i {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero-analise {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(249, 115, 22, 0.24), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(123, 165, 232, 0.28), transparent 36%),
    linear-gradient(145deg, #0c346f 0%, #1359b0 54%, #0f4c9e 100%);
}

.page-hero-analise::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(6px);
}

.page-hero-analise .breadcrumb-mini,
.page-hero-analise .breadcrumb-mini a,
.page-hero-analise h1,
.page-hero-analise p {
  color: #fff;
}

.page-hero-analise p {
  color: rgba(236, 245, 255, 0.95);
}

.page-hero-analise .breadcrumb-mini i {
  color: rgba(255, 255, 255, 0.74);
}

.analysis-entry {
  position: relative;
  background:
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 42%),
    #fff;
}

.analysis-title h2 {
  color: #122c4f;
}

.analysis-title p {
  color: #4b6281;
  margin-bottom: 0;
}

.analysis-link {
  color: inherit;
  display: block;
}

.analysis-link:hover {
  color: inherit;
}

.analysis-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 18px 34px rgba(12, 42, 78, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.analysis-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 36%);
  pointer-events: none;
}

.analysis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(12, 42, 78, 0.28);
}

.analysis-card-sp {
  background: linear-gradient(145deg, #122f8a 0%, #1f4db8 58%, #245dca 100%);
}

.analysis-card-gru {
  background: linear-gradient(145deg, #f56a16 0%, #ff7e2e 55%, #ff974f 100%);
}

.analysis-card-content {
  position: relative;
  z-index: 1;
  padding: 1.65rem;
  color: #fff;
}

.analysis-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.3rem;
  margin-bottom: 0.95rem;
}

.analysis-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.analysis-card h3 {
  color: #fff;
  margin-bottom: 0.55rem;
  font-size: clamp(1.34rem, 1.9vw, 1.8rem);
}

.analysis-card p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.04rem;
  margin-bottom: 1.2rem;
}

.analysis-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 700;
  font-size: 0.92rem;
}

.analysis-cta i {
  font-size: 0.9rem;
}

.media-vibrant {
  background:
    radial-gradient(circle at 92% 10%, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 46%);
}

.media-card-vibrant {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 30px rgba(16, 35, 61, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.media-card-vibrant:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(16, 35, 61, 0.22);
}

.media-card-vibrant .media-thumb {
  aspect-ratio: 16 / 9;
}

.media-card-vibrant .media-thumb .play-link {
  background: linear-gradient(180deg, rgba(8, 34, 74, 0.06), rgba(8, 34, 74, 0.62));
}

.media-card-vibrant .media-thumb .play-link i {
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(145deg, #ff7a1a 0%, #f45a08 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.media-card-vibrant .body {
  padding: 1.05rem 1.1rem 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.media-card-vibrant .body h3 {
  color: #16365f;
}

.info-vibrant {
  background:
    radial-gradient(circle at 8% 16%, rgba(13, 78, 166, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 72%);
}

.split-box-vibrant {
  border: 0;
  background:
    linear-gradient(155deg, #113475 0%, #1d5ab1 52%, #2d74d6 100%);
  box-shadow: 0 20px 36px rgba(10, 36, 70, 0.24);
}

.split-box-vibrant .split-content {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.split-box-vibrant .split-content p {
  color: rgba(240, 247, 255, 0.95);
  font-size: 1.03rem;
}

.split-box-vibrant .split-content strong {
  color: #fff;
}

.breadcrumb-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #5f738d;
}

.breadcrumb-mini a {
  color: #5f738d;
}

.site-footer {
  background: #081a30;
  color: #b2c3d9;
  padding: 70px 0 26px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  max-height: 54px;
  filter: brightness(0) invert(1);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #d2deec;
}

.site-footer a:hover {
  color: #fff;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 222, 236, 0.25);
}

.footer-bottom {
  margin-top: 2.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(210, 222, 236, 0.18);
}

.thank-you-modern-wrap {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.18), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(20, 114, 214, 0.2), transparent 36%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 60%);
}

.thank-you-modern {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(15, 76, 158, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.95));
  box-shadow: 0 20px 60px rgba(10, 51, 109, 0.14);
}

.thank-you-modern::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  pointer-events: none;
}

.thank-you-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 78, 166, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.thank-you-kicker i {
  color: var(--brand-orange);
}

.thank-you-modern h1 {
  color: var(--brand-slate);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin-bottom: 0.65rem;
}

.thank-you-lead {
  font-size: clamp(1.04rem, 2.2vw, 1.35rem);
  color: #325274;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.thank-you-brand {
  color: var(--brand-orange);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.thank-you-btn {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

@media (max-width: 991.98px) {
  .topbar-links {
    gap: 8px !important;
  }

  .topbar a {
    font-size: 0.77rem;
  }

  .hero {
    padding-top: 90px;
  }

  .section-space {
    padding: 70px 0;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .local-card-vibrant iframe {
    height: 260px;
  }

  .analysis-card-content {
    padding: 1.4rem;
  }

  .split-box-vibrant .split-content {
    padding: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    font-size: 1.6rem;
  }

  .hero .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .split-content,
  .form-shell {
    padding: 1.2rem;
  }

  .local-card-vibrant {
    border-radius: 18px;
  }

  .local-card-vibrant .info {
    padding: 1.15rem 1rem 0.95rem;
  }

  .local-card-vibrant iframe {
    height: 220px;
  }

  .unit-btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero-analise {
    padding: 54px 0 42px;
  }

  .analysis-card-content {
    padding: 1.2rem;
  }

  .analysis-card p {
    font-size: 0.98rem;
  }

  .page-hero-vibrant {
    padding: 54px 0 42px;
  }

  .media-card-vibrant .media-thumb .play-link i {
    width: 58px;
    height: 58px;
  }
}
.hero {
  position: relative;
  color: #fff;
  padding: 124px 0 170px;
  background: linear-gradient(120deg, rgba(6, 26, 53, 0.75), rgba(13, 56, 116, 0.72)),
    url('../img/hero-bg.jpg') center center / cover no-repeat;
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin: 1rem 0;
}

.hero-centered p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #deebff;
}

.hero-outline-btn {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero-outline-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-support {
  margin-top: -92px;
  position: relative;
  z-index: 5;
  padding-bottom: 10px;
}

.hero-highlight-card {
  border-radius: 18px;
  background: var(--brand-orange);
  color: #fff;
  padding: 2rem;
  box-shadow: 0 18px 34px rgba(16, 35, 61, 0.18);
}

.hero-highlight-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  margin-bottom: 1rem;
}

.hero-highlight-card p {
  font-size: 1.06rem;
}

.hero-highlight-btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  border: 0;
  color: var(--brand-orange);
}

.hero-mini-card {
  border-radius: 16px;
  background: #f1f3f7;
  border: 1px solid #e2e7f0;
  box-shadow: 0 8px 22px rgba(10, 50, 110, 0.08);
  padding: 1.6rem;
  text-align: center;
}

.hero-mini-card .icon-wrap {
  margin-bottom: 1rem;
}

.hero-mini-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.hero-mini-card p {
  margin-bottom: 0;
}

.home-story {
  padding-top: 70px;
}

.about-photo-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-photo-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.services-strong {
  background: linear-gradient(180deg, #ececec 0%, #e4e4e4 100%);
}

.services-strong-title {
  color: var(--brand-orange);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.service-strong-card {
  position: relative;
  background: linear-gradient(145deg, #1d239e 0%, #121a78 100%);
  border-radius: 22px;
  min-height: 238px;
  box-shadow: 0 14px 28px rgba(16, 35, 61, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 1.35rem 1.25rem 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-strong-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.service-strong-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(16, 35, 61, 0.28);
}

.service-strong-card-alt {
  background: linear-gradient(145deg, #ff6d1a 0%, #f45a08 100%);
}

.service-strong-card h3 {
  color: #fff;
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  line-height: 1.24;
  text-transform: uppercase;
}

.service-strong-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.service-strong-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: var(--brand-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.units-showcase {
  background: #ececec;
}

.units-block-title {
  color: #1c2195;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 1vw, 3rem);
  margin-bottom: 2.2rem;
  position: relative;
}

.units-block-title::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  height: 2px;
  background: var(--brand-orange);
  margin-left: 14px;
}

.units-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(16, 35, 61, 0.14);
}

.testimonials-vibrant {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.22), transparent 30%),
    radial-gradient(circle at 95% 82%, rgba(58, 77, 209, 0.25), transparent 35%),
    linear-gradient(140deg, #0c2d66 0%, #1b4f9b 42%, #0d3270 100%);
}

.testimonials-vibrant .section-title .eyebrow,
.testimonials-vibrant .section-title h2 {
  color: #fff;
}

.testimonials-vibrant .section-title .eyebrow::before {
  background: #ffb17b;
}

.testimonials-vibrant .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonials-vibrant .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
}

.testimonials-vibrant .media-thumb {
  aspect-ratio: 16 / 9;
}

.testimonials-vibrant .media-thumb .play-link {
  background: linear-gradient(180deg, rgba(12, 45, 102, 0.08), rgba(8, 26, 48, 0.62));
}

.testimonials-vibrant .media-thumb .play-link i {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, #ff7a1a 0%, #f45a08 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-vibrant .media-card .body {
  color: #f4f7ff;
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonials-vibrant .media-card .body strong {
  color: #fff;
}

.final-cta-wrap {
  background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 60%);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 167, 112, 0.25), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(117, 157, 226, 0.28), transparent 40%),
    linear-gradient(135deg, #0c316b 0%, #1658aa 52%, #f7771f 115%);
  box-shadow: 0 24px 42px rgba(11, 35, 65, 0.26);
}

.final-cta::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.final-cta > .row {
  position: relative;
  z-index: 1;
}

.final-cta .final-cta-eyebrow,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .final-cta-eyebrow::before {
  background: #ffd2b1;
}

.final-cta h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.final-cta p {
  max-width: 700px;
  color: rgba(242, 247, 255, 0.94);
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.final-cta-points {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.5rem;
}

.final-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eff5ff;
  font-weight: 600;
}

.final-cta-points i {
  color: #ffbe90;
  font-size: 1rem;
}

.final-cta-actions {
  display: grid;
  gap: 0.8rem;
}

.final-cta-actions .btn {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.final-cta .btn-brand {
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.34);
}

.final-cta .btn-outline-brand {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.final-cta .btn-outline-brand:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

#whatsappUnitsModal .modal-dialog {
  max-width: 560px;
}

.whatsapp-selector-modal {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(60, 130, 246, 0.2), transparent 34%),
    linear-gradient(145deg, #f8fbff 0%, #ffffff 72%);
  box-shadow: 0 24px 48px rgba(8, 26, 48, 0.3);
}

.whatsapp-selector-header {
  border-bottom: 1px solid #d9e6f5;
  background: linear-gradient(120deg, rgba(13, 78, 166, 0.08), rgba(249, 115, 22, 0.08));
  padding: 1rem 1.1rem;
}

.whatsapp-selector-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #16c968, #24db73);
  box-shadow: 0 10px 18px rgba(22, 201, 104, 0.35);
  animation: whatsappIconBounce 1.45s ease-in-out infinite;
}

.whatsapp-selector-icon i {
  font-size: 1.2rem;
}

.whatsapp-selector-body {
  padding: 1rem 1rem 1.2rem;
}

.whatsapp-selector-subtitle {
  color: #415a7a;
  font-weight: 600;
}

.whatsapp-selector-grid {
  display: grid;
  gap: 0.72rem;
}

.whatsapp-unit-card {
  border-radius: 16px;
  border: 1px solid #d7e4f3;
  padding: 0.9rem;
  display: grid;
  gap: 0.38rem;
  color: #16365f;
  background: #fff;
  box-shadow: 0 10px 20px rgba(16, 35, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.whatsapp-unit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 35, 61, 0.16);
  border-color: #9fc0e8;
  color: #16365f;
}

.whatsapp-unit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
}

.whatsapp-unit-card-mooca .whatsapp-unit-badge {
  color: #1c4f9f;
  background: rgba(28, 79, 159, 0.1);
}

.whatsapp-unit-card-gru .whatsapp-unit-badge {
  color: #c45512;
  background: rgba(244, 103, 26, 0.14);
}

.whatsapp-unit-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #476a95;
  background: #eef4fc;
}

.whatsapp-unit-card strong {
  font-size: 1.03rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #11365f;
}

.whatsapp-unit-card strong i {
  color: #16b965;
  font-size: 1.08rem;
}

.whatsapp-unit-card small {
  color: #5a7090;
  font-weight: 600;
}

@keyframes whatsappIconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-4px);
  }
  65% {
    transform: translateY(1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-selector-icon {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 120px;
  }

  .hero-support {
    margin-top: -64px;
  }

  .home-story {
    padding-top: 52px;
  }

  .about-photo-card img {
    min-height: 380px;
  }

  .service-strong-card {
    min-height: 210px;
  }

  .units-block-title::after {
    width: 96px;
  }

  .final-cta {
    border-radius: 22px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-bottom: 100px;
  }

  .hero-centered .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-support {
    margin-top: -48px;
  }

  .hero-highlight-card,
  .hero-mini-card {
    padding: 1.2rem;
  }

  .service-strong-card {
    min-height: 198px;
  }

  .service-strong-icon {
    width: 54px;
    height: 54px;
  }

  .units-block-title::after {
    width: 70px;
  }

  .final-cta {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .final-cta-points span {
    font-size: 0.92rem;
  }

  .whatsapp-selector-modal {
    border-radius: 16px;
  }

  .whatsapp-unit-card {
    padding: 0.82rem;
  }
}
