/**
 * Landing Page Clinora - Componentes Específicos SaaS Premium
 */

/* ============================================
   HEADER
   ============================================ */

header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  z-index: var(--z-header);
  box-shadow: 0 1px 16px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  min-height: 64px;
}

.logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-base);
}

.logo:hover {
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

header .btn {
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 10px;
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */

.hero {
  min-height: clamp(620px, calc(100vh - 64px), 700px);
  padding: clamp(64px, 8vh, 84px) 0 clamp(68px, 8vh, 92px);
  background:
    radial-gradient(circle at 82% 42%, rgba(65, 141, 255, 0.13) 0, rgba(65, 141, 255, 0.06) 26%, transparent 54%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, #f7fbff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 204, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, #000 70%, transparent 100%);
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(880px, 68vw);
  height: 34px;
  transform: translateX(-2%);
  background: radial-gradient(ellipse, rgba(9, 74, 175, 0.14) 0%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__ambient::before,
.hero__ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero__ambient::before {
  right: max(-140px, -7vw);
  top: 44px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 82, 204, 0.08);
  box-shadow:
    -84px 86px 0 -62px rgba(62, 146, 255, 0.14),
    -212px 16px 0 -178px rgba(0, 82, 204, 0.16);
}

.hero__ambient::after {
  right: 15%;
  top: 16%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(116, 187, 255, 0.16), transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 602px);
  gap: clamp(40px, 4vw, 48px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 590px;
}

.hero-text .badge {
  padding: 6px 12px;
  border-color: rgba(0, 82, 204, 0.14);
  background: #eef6ff;
  color: #0757d9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hero-text h1 {
  max-width: 590px;
  font-size: clamp(50px, 3.7vw, 52px);
  line-height: 1.06;
  margin-bottom: 18px;
  color: #111c2f;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-text p {
  max-width: 520px;
  margin-bottom: 28px;
  color: #5d6b80;
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.72;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

.hero-buttons .btn {
  min-height: 56px;
  border-radius: 15px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.hero-buttons .btn-primary {
  box-shadow: 0 16px 34px rgba(0, 82, 204, 0.18);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 82, 204, 0.23);
}

.hero-buttons .btn-secondary {
  border: 1px solid rgba(0, 82, 204, 0.2);
  background-color: rgba(255, 255, 255, 0.86);
  color: #0757d9;
  box-shadow: 0 10px 24px rgba(23, 56, 105, 0.06);
}

.hero-buttons .btn-secondary:hover {
  background-color: #eef6ff;
  border-color: rgba(0, 82, 204, 0.34);
  color: #064fc5;
  transform: translateY(-2px);
}

.hero-subtext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #66758c;
  font-size: 14px;
  font-weight: 700;
}

.hero-subtext svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #0757d9;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-video-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  margin-top: 20px;
  color: #0757d9;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}

.hero-video-link::after {
  content: '';
  position: absolute;
  left: 35px;
  right: 18px;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.32;
  transition: transform var(--transition-base);
}

.hero-video-link:hover {
  color: #064fc5;
}

.hero-video-link:hover::after {
  transform: scaleX(1);
}

.hero-video-link__icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  color: #0757d9;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.hero-video-link__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-video-link:hover .hero-video-link__icon {
  transform: translateY(-1px);
  background: rgba(0, 82, 204, 0.12);
}

.hero-video-link__arrow {
  color: #6d7e98;
  font-size: 14px;
  transition: transform var(--transition-base);
}

.hero-video-link:hover .hero-video-link__arrow {
  transform: translateY(2px);
}

.hero-image {
  position: relative;
  min-height: 486px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.clinora-dashboard-mockup {
  width: min(100%, 602px);
  position: relative;
  isolation: isolate;
  transform: perspective(1400px) rotateY(-1.5deg);
}

.product-glow {
  position: absolute;
  inset: 9% -5% 8% 8%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 36%, rgba(82, 156, 255, 0.22), transparent 52%),
    radial-gradient(circle at 35% 78%, rgba(44, 202, 169, 0.12), transparent 46%);
  filter: blur(22px);
  z-index: -2;
}

.mockup-window {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(191, 209, 240, 0.74);
  border-radius: 26px;
  box-shadow:
    0 34px 76px rgba(20, 58, 118, 0.16),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.mockup-topbar {
  min-height: 50px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
  border-bottom: 1px solid rgba(226, 235, 248, 0.96);
}

.mockup-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
}

.mockup-brand span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0757d9, #5da2ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.mockup-brand strong {
  color: #1b2b44;
  font-size: 12px;
  font-weight: 800;
}

.mockup-user span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.78) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.62) 0 28%, transparent 29%),
    linear-gradient(135deg, #d5e9ff, #3d91ff);
  border: 1px solid rgba(0, 82, 204, 0.12);
}

.mockup-search {
  min-width: 0;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #f3f7ff;
  color: #7a8aa2;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-user {
  display: flex;
  align-items: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  height: calc(100% - 50px);
  background:
    linear-gradient(135deg, #f8fbff 0%, #f4f8ff 100%);
}

.mockup-sidebar {
  padding: 16px 10px;
  border-right: 1px solid rgba(226, 235, 248, 0.96);
  background: rgba(255, 255, 255, 0.88);
}

.mockup-sidebar nav {
  display: grid;
  gap: 12px;
}

.mockup-sidebar nav span {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #8aa1c1;
  background: transparent;
}

.mockup-sidebar nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mockup-sidebar nav .active {
  color: #0757d9;
  background: #eaf3ff;
  box-shadow: inset 0 0 0 1px rgba(0, 82, 204, 0.08);
}

.mockup-main {
  padding: 14px;
  min-width: 0;
}

.mockup-heading,
.panel-title,
.patient-row {
  display: flex;
  align-items: center;
}

.mockup-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.mockup-heading span,
.metric-card span,
.panel-title span,
.patient-row small {
  color: var(--color-text-light);
  font-size: 12px;
}

.mockup-heading strong {
  display: block;
  margin-top: 3px;
  color: #18243a;
  font-size: 16px;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f8f1;
  color: #047857 !important;
  font-weight: 700;
  font-size: 12px !important;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 10px;
}

.metric-card,
.schedule-panel,
.appointments-panel,
.chart-panel {
  background: #ffffff;
  border: 1px solid rgba(225, 233, 246, 0.94);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(25, 67, 131, 0.045);
}

.hero-dashboard-wrap .metric-card {
  min-width: 0;
  padding: 9px 10px;
}

.metric-card strong {
  display: block;
  margin-top: 5px;
  color: #18243a;
  font-size: 14px;
  line-height: 1.15;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(170px, 0.76fr);
  gap: 10px;
}

.schedule-panel {
  grid-row: span 2;
  padding: 12px;
}

.appointments-panel,
.chart-panel {
  padding: 12px;
}

.panel-title {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.panel-title strong {
  color: var(--color-text);
  font-size: 13px;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.schedule-days span {
  padding: 6px 0;
  border-radius: 9px;
  text-align: center;
  background: #f1f6ff;
  color: #53647a;
  font-size: 11px;
  font-weight: 700;
}

.schedule-list {
  display: grid;
  gap: 7px;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 42px repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
}

.schedule-list time {
  color: var(--color-text-light);
  font-size: 11px;
}

.appointment {
  min-height: 30px;
  border-radius: 11px;
  display: flex;
  align-items: flex-end;
  padding: 6px;
  overflow: hidden;
}

.appointment small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.appointment.booked {
  background: linear-gradient(135deg, var(--color-primary), #478bff);
}

.appointment-green {
  background: linear-gradient(135deg, #18b889, #58d8b7) !important;
}

.appointment.soft {
  background: #dfeaff;
}

.appointment.light {
  background: #f4f7fc;
  border: 1px dashed #cbd8eb;
}

.appointments-panel {
  display: grid;
  gap: 7px;
}

.patient-row {
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid #edf2f8;
}

.patient-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e9f0ff;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
}

.patient-row strong {
  display: block;
  color: #18243a;
  font-size: 12px;
  line-height: 1.2;
}

.mini-chart {
  width: 100%;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
}

.mini-chart span {
  flex: 1;
  min-width: 8px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #69a2ff, var(--color-primary));
}

.mockup-float {
  position: absolute;
  z-index: 2;
  width: 214px;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(191, 213, 246, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(20, 58, 118, 0.12);
  backdrop-filter: blur(12px);
  animation: floatCard 6s ease-in-out infinite;
}

.mockup-float svg {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 8px;
  fill: none;
  stroke: #0757d9;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: #eef6ff;
}

.mockup-float strong,
.mockup-float span {
  display: block;
}

.mockup-float strong {
  color: #18243a;
  font-size: 13px;
  margin-bottom: 4px;
}

.mockup-float span {
  color: var(--color-text-light);
  font-size: 12px;
  line-height: 1.4;
}

.mockup-float-1 {
  left: -12px;
  bottom: 42px;
}

.mockup-float-2 {
  right: -18px;
  top: 118px;
  animation-delay: -2s;
}

.mockup-base {
  width: 72%;
  height: 16px;
  margin: 0 auto;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, rgba(214, 226, 244, 0.88), rgba(183, 200, 225, 0.78));
  box-shadow: 0 22px 34px rgba(20, 58, 118, 0.12);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.dashboard-mockup {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.45fr) minmax(470px, 0.55fr);
    gap: 38px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-text h1 {
    font-size: clamp(46px, 5vw, 54px);
  }

  .mockup-main {
    padding: 15px;
  }

  .mockup-float-1 {
    left: -4px;
  }

  .mockup-float-2 {
    right: -6px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-text {
    max-width: 680px;
  }

  .hero-text h1 {
    max-width: 640px;
    font-size: clamp(44px, 6vw, 50px);
  }

  .hero-image {
    justify-content: center;
    min-height: auto;
  }

  .clinora-dashboard-mockup {
    width: min(100%, 660px);
    transform: none;
  }
}

@media (max-width: 768px) {
  header .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .logo {
    font-size: var(--font-size-xl);
  }

  .hero {
    padding: 42px 0 54px;
    background:
      radial-gradient(circle at 58% 68%, rgba(0, 82, 204, 0.1) 0, transparent 46%),
      linear-gradient(180deg, var(--color-white) 0%, #f5f9ff 100%);
  }

  .hero::before {
    mask-image: linear-gradient(180deg, transparent 0%, #000 58%, transparent 100%);
    opacity: 0.34;
  }

  .hero-text h1 {
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 1.08;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .clinora-dashboard-mockup {
    width: min(100%, 360px);
  }

  .mockup-window {
    border-radius: 22px;
    aspect-ratio: auto;
  }

  .mockup-topbar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .mockup-brand {
    min-width: auto;
  }

  .mockup-brand strong {
    display: none;
  }

  .mockup-user {
    display: none;
  }

  .mockup-body {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: auto;
    height: auto;
  }

  .mockup-sidebar {
    padding: 14px 6px;
  }

  .mockup-sidebar nav span {
    width: 34px;
    height: 34px;
  }

  .mockup-main {
    padding: 14px;
  }

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

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

  .schedule-panel {
    grid-row: auto;
  }

  .schedule-days {
    grid-template-columns: repeat(5, minmax(34px, 1fr));
    gap: 5px;
  }

  .schedule-list div {
    grid-template-columns: 38px repeat(3, minmax(42px, 1fr));
    gap: 5px;
  }

  .appointment {
    height: 34px;
  }

  .mockup-float {
    width: 190px;
    padding: 12px 12px 12px 40px;
    animation: none;
  }

  .mockup-float-1 {
    left: -4px;
    bottom: -26px;
  }

  .mockup-float-2 {
    right: -4px;
    top: auto;
    bottom: 22px;
  }

  .mockup-float span {
    display: none;
  }

  .mockup-base {
    width: 66%;
    height: 12px;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  header .btn {
    max-width: 152px;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .mockup-search {
    font-size: 11px;
    padding: 0 10px;
  }

  .mockup-body {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .mockup-sidebar {
    padding: 12px 4px;
  }

  .mockup-main {
    padding: 11px;
  }

  .mockup-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mockup-float {
    width: 174px;
  }
}

/* ============================================
   SEÇÃO AZUL - DORES E SOLUÇÕES
   ============================================ */

.section-blue {
  background: var(--color-white);
  color: var(--color-white);
  position: relative;
  overflow: visible;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.section-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.65), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}

.section-blue > .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-blue h2 {
  color: var(--color-white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.blue-content {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(42px, 4.4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(52px, 4.5vw, 60px);
  border-radius: 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(81, 194, 255, 0.3) 0%, transparent 34%),
    radial-gradient(circle at 85% 90%, rgba(51, 117, 255, 0.28) 0%, transparent 38%),
    linear-gradient(135deg, #116edb 0%, #0c59d7 48%, #083dbe 100%);
  box-shadow: 0 26px 68px rgba(5, 49, 126, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.blue-content::before,
.blue-content::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.blue-content::before {
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%);
  background-size: 28px 28px, auto;
  opacity: 0.22;
}

.blue-content::after {
  right: -110px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.blue-text,
.video-placeholder {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.blue-label {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 750;
  margin-bottom: 20px;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.blue-text h2 {
  max-width: 470px;
  font-size: clamp(39px, 3.3vw, 44px);
  margin-bottom: 20px;
  line-height: 1.13;
  font-weight: 750;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.blue-copy {
  max-width: 470px;
  margin-bottom: 26px;
}

.blue-copy p {
  font-size: 17px;
  margin-bottom: 13px;
  line-height: 1.66;
  overflow-wrap: break-word;
}

.blue-copy p:last-child {
  margin-bottom: 0;
}

.blue-btn {
  background-color: var(--color-white);
  color: #083dbe;
  font-weight: 800;
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  margin-top: 2px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 24px rgba(0, 30, 90, 0.12);
}

.blue-btn:hover {
  background-color: #f7fbff;
  transform: translateY(-2px);
  color: var(--color-primary-dark);
  box-shadow: 0 18px 34px rgba(0, 30, 90, 0.2);
}

.video-placeholder {
  width: 100%;
}

.feature-video-card {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(189, 222, 255, 0.3);
  background:
    radial-gradient(circle at 74% 24%, rgba(118, 180, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #061d5b 0%, #08389f 100%);
  box-shadow: 0 22px 50px rgba(0, 28, 88, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.feature-video-card::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: inherit;
  background: radial-gradient(circle at 58% 48%, rgba(255, 255, 255, 0.16), transparent 42%);
  filter: blur(16px);
  opacity: 0.42;
  pointer-events: none;
}

.feature-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.65;
  pointer-events: none;
}

.feature-video-card--poster {
  display: block;
  padding: 0;
}

.poster-product-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(0.96);
  transform: scale(1.015);
}

.poster-blue-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 24, 78, 0.54), rgba(8, 61, 190, 0.22) 54%, rgba(4, 22, 72, 0.48)),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.12), transparent 28%);
  backdrop-filter: blur(1px);
}

.poster-automation-card,
.poster-task-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(1, 19, 67, 0.18);
  backdrop-filter: blur(12px);
}

.poster-automation-card {
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(248px, 46%);
  padding: 12px 14px;
  border-radius: 16px;
}

.poster-check-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f6fdb;
  color: var(--color-white);
}

.poster-check-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.poster-automation-card strong,
.poster-automation-card span,
.poster-task-card strong,
.poster-task-card span {
  display: block;
  line-height: 1.28;
}

.poster-automation-card strong,
.poster-task-card strong {
  color: #102443;
  font-size: 12px;
  font-weight: 800;
}

.poster-automation-card span,
.poster-task-card span {
  margin-top: 3px;
  color: #51627d;
  font-size: 11px;
  font-weight: 650;
}

.poster-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 52% 48%, #000 0%, transparent 72%);
  opacity: 0.42;
}

.poster-system-card {
  position: absolute;
  left: 7%;
  top: 17%;
  z-index: 2;
  width: min(62%, 390px);
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(221, 236, 255, 0.9);
  box-shadow: 0 22px 48px rgba(1, 19, 67, 0.28);
  transform: perspective(900px) rotateY(-6deg) rotateZ(-1.2deg);
}

.poster-window-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.poster-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7d9f7;
}

.poster-system-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.poster-system-header span,
.poster-task-card small,
.poster-status-card span {
  display: block;
  color: #61708a;
  font-size: 11px;
  line-height: 1.3;
}

.poster-system-header strong,
.poster-status-card strong {
  display: block;
  color: #102443;
  font-size: 13px;
  line-height: 1.25;
}

.poster-system-header small {
  flex: 0 0 auto;
  height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0b5cdf;
  font-size: 10px;
  font-weight: 800;
}

.poster-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(118px, 0.9fr);
  gap: 10px;
  align-items: stretch;
}

.poster-agenda {
  min-height: 104px;
  padding: 10px;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(11, 92, 223, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 92, 223, 0.08) 1px, transparent 1px),
    #f8fbff;
  background-size: 34px 26px;
  position: relative;
}

.poster-agenda span {
  position: absolute;
  left: 16px;
  right: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #28b6f6, #176cf2);
  box-shadow: 0 8px 16px rgba(11, 92, 223, 0.13);
}

.poster-agenda span:nth-child(1) {
  top: 18px;
  width: 62%;
}

.poster-agenda span:nth-child(2) {
  top: 48px;
  left: 36px;
  width: 72%;
  opacity: 0.72;
}

.poster-agenda span:nth-child(3) {
  top: 78px;
  width: 46%;
  opacity: 0.58;
}

.poster-task-card {
  left: 22px;
  top: 22px;
  width: min(194px, 38%);
  min-height: 0;
  padding: 10px 12px;
  border-radius: 14px;
}

.poster-task-card strong {
  margin-top: 0;
  color: #102443;
  font-size: 12px;
}

.poster-task-card span {
  margin-top: 3px;
  color: #51627d;
  font-size: 11px;
  line-height: 1.28;
  font-weight: 650;
}

.poster-status-card {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 236, 255, 0.76);
  box-shadow: 0 18px 38px rgba(1, 19, 67, 0.2);
  backdrop-filter: blur(10px);
}

.poster-status-card--top {
  right: 8%;
  top: 13%;
}

.poster-status-card--bottom {
  right: 10%;
  bottom: 18%;
}

.poster-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 5;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 48px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 25, 79, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.video-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.36;
}

.video-lines path,
.video-lines circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.2;
}

.video-lines circle {
  fill: rgba(255, 255, 255, 0.44);
  stroke: none;
}

.video-interface {
  position: absolute;
  left: 8%;
  top: 18%;
  width: min(58%, 330px);
  z-index: 2;
}

.video-kicker {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.video-interface h3 {
  max-width: 300px;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.video-interface p {
  max-width: 300px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.video-stats-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 9px;
  width: min(100%, 290px);
}

.video-stats-row span {
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 235, 255, 0.84);
  box-shadow: 0 18px 44px rgba(0, 30, 92, 0.22);
  animation: videoFloat 6s ease-in-out infinite;
}

.video-floating-card strong,
.video-floating-card span {
  display: block;
}

.video-floating-card strong {
  color: var(--color-text);
  font-size: 13px;
  margin-bottom: 6px;
}

.video-floating-card span {
  color: var(--color-text-light);
  font-size: 12px;
  line-height: 1.35;
}

.video-floating-card-primary {
  right: 7%;
  top: 14%;
  width: 162px;
}

.video-floating-card-secondary {
  right: 10%;
  bottom: 12%;
  width: 210px;
  animation-delay: -2.4s;
}

.play-icon {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: default;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 16, 54, 0.28);
}

.play-icon span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #0b4ff0;
}

.video-placeholder:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--color-white);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 16, 54, 0.34);
}

@keyframes videoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1024px) {
  .section-blue {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .blue-content {
    padding: 46px;
    gap: 40px;
    border-radius: 30px;
  }

  .blue-text h2 {
    font-size: clamp(34px, 4vw, 40px);
  }

  .feature-video-card {
    min-height: 0;
  }

  .video-interface {
    width: 62%;
  }

  .video-floating-card-primary {
    right: 5%;
  }

  .video-floating-card-secondary {
    right: 6%;
  }
}

@media (max-width: 840px) {
  .blue-content {
    grid-template-columns: 1fr;
  }

  .blue-text h2,
  .blue-copy {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .section-blue {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .blue-content {
    gap: var(--spacing-2xl);
    padding: 34px;
    border-radius: 28px;
  }

  .blue-label {
    font-size: 10px;
  }

  .blue-text h2 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.14;
  }

  .blue-copy p {
    font-size: 16px;
  }

  .blue-btn {
    width: auto;
  }

  .feature-video-card {
    min-height: 0;
    border-radius: 22px;
  }

  .poster-system-card {
    left: 6%;
    top: 14%;
    width: 72%;
    padding: 12px;
  }

  .poster-system-header strong {
    font-size: 12px;
  }

  .poster-dashboard {
    grid-template-columns: 1fr;
  }

  .poster-agenda {
    min-height: 82px;
  }

  .poster-agenda span:nth-child(1) {
    top: 15px;
  }

  .poster-agenda span:nth-child(2) {
    top: 40px;
  }

  .poster-agenda span:nth-child(3) {
    top: 65px;
  }

  .poster-status-card--top {
    display: none;
  }

  .poster-automation-card {
    right: 14px;
    bottom: 14px;
    width: min(220px, 54%);
    padding: 10px 11px;
  }

  .poster-task-card {
    left: 14px;
    top: 14px;
    width: min(178px, 48%);
    padding: 9px 10px;
  }

  .poster-status-card--bottom {
    right: 7%;
    bottom: 16%;
  }

  .poster-caption {
    left: 18px;
    bottom: 16px;
    max-width: calc(100% - 36px);
  }

  .video-interface {
    left: 7%;
    top: 13%;
    width: 76%;
  }

  .video-interface h3 {
    font-size: 25px;
  }

  .video-interface p {
    font-size: 13px;
  }

  .video-stats-row {
    display: none;
  }

  .video-floating-card {
    padding: 12px 13px;
  }

  .video-floating-card-primary {
    right: auto;
    left: 7%;
    top: auto;
    bottom: 10%;
    width: 136px;
  }

  .video-floating-card-secondary {
    display: none;
  }

  .play-icon {
    width: 58px;
    height: 58px;
    left: 50%;
    top: 50%;
  }
}

@media (max-width: 390px) {
  .section-blue {
    padding-left: 14px;
    padding-right: 14px;
  }

  .blue-content {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .feature-video-card {
    min-height: 0;
  }

  .video-interface {
    width: 84%;
  }

  .video-floating-card-primary {
    width: 128px;
    left: 7%;
    bottom: 15%;
  }

  .poster-system-card {
    width: 76%;
  }

  .poster-status-card--bottom {
    display: none;
  }

  .poster-caption {
    font-size: 11px;
  }

  .poster-automation-card {
    width: 58%;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .poster-check-icon {
    width: 24px;
    height: 24px;
  }

  .poster-automation-card strong,
  .poster-task-card strong {
    font-size: 10px;
  }

  .poster-automation-card span,
  .poster-task-card span {
    font-size: 9px;
  }

  .play-icon {
    left: 50%;
    top: 50%;
  }
}

/* Section blue: real HTML5 video player */
.section-blue {
  padding: clamp(64px, 7vw, 92px) var(--spacing-lg);
  overflow: hidden;
  z-index: calc(var(--z-floating-btn) + 1);
}

.section-blue::before {
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 82, 204, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.7), rgba(255, 255, 255, 0));
}

.blue-content {
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(38px, 4vw, 56px);
  max-width: 1210px;
  padding: clamp(52px, 4.8vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 13% 14%, rgba(63, 198, 255, 0.3), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(57, 198, 235, 0.2), transparent 30%),
    radial-gradient(circle at 70% 92%, rgba(112, 78, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #053bd8 0%, #0758e7 48%, #05aee7 100%);
  box-shadow:
    0 34px 82px rgba(4, 49, 134, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.blue-content::before {
  background:
    radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(118deg, rgba(255, 255, 255, 0.12), transparent 31%);
  background-size: 24px 24px, auto;
  opacity: 0.2;
}

.blue-content::after {
  right: -120px;
  top: -150px;
  bottom: auto;
  width: 420px;
  height: 420px;
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: -210px 430px 0 -148px rgba(255, 255, 255, 0.08);
}

.blue-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  margin-bottom: 28px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  font-size: 14px;
  font-weight: 750;
}

.blue-label::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #ffffff, #d9ecff);
  box-shadow: inset 0 0 0 6px rgba(0, 82, 204, 0.12);
}

.blue-text h2 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(44px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.blue-benefits {
  display: grid;
  gap: 26px;
  max-width: 500px;
  margin-bottom: 34px;
}

.blue-benefit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.blue-benefit__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 28px rgba(2, 29, 97, 0.16);
}

.blue-benefit__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.58;
}

.blue-btn {
  min-width: 250px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 18px 40px rgba(0, 28, 94, 0.2);
}

.video-placeholder {
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: -16% -10% -14% 4%;
  border-radius: 38px;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.22), transparent 38%),
    radial-gradient(circle at 84% 78%, rgba(75, 210, 255, 0.22), transparent 32%);
  filter: blur(20px);
  pointer-events: none;
}

.feature-video-card--real-video {
  min-height: 0;
  padding: 10px;
  overflow: visible;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  border: 1px solid rgba(188, 225, 255, 0.42);
  background:
    radial-gradient(circle at 70% 22%, rgba(116, 205, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(3, 31, 102, 0.86), rgba(5, 102, 222, 0.76));
  box-shadow:
    0 30px 76px rgba(0, 28, 92, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: perspective(1500px) rotateY(-4deg) rotateX(0.7deg) rotateZ(-0.6deg);
  transform-origin: center left;
}

.feature-video-card--real-video::before {
  inset: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
  filter: none;
  opacity: 1;
  z-index: 3;
}

.feature-video-card--real-video::after {
  inset: 10px;
  z-index: 2;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(0, 82, 204, 0.24), rgba(0, 82, 204, 0.04) 54%, rgba(3, 25, 82, 0.16)),
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.1), transparent 28%);
  opacity: 0.7;
}

.section-blue__video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  background: #061d5b;
  box-shadow: 0 18px 48px rgba(0, 18, 72, 0.2);
}

.section-blue__video-overlay {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 24px;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 30%);
}

.section-blue__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0757d9;
  box-shadow:
    0 20px 46px rgba(0, 24, 86, 0.26),
    0 0 0 10px rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.section-blue__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid currentColor;
}

.feature-video-card--real-video:hover .section-blue__play {
  transform: translate(-50%, -50%) scale(1.05);
}

.feature-video-card--real-video.is-playing .section-blue__play {
  opacity: 0;
  pointer-events: none;
}

.section-video-card {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(250px, 43%);
  padding: 13px 15px;
  border-radius: 17px;
  border: 1px solid rgba(218, 235, 255, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 29, 92, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.section-video-card--top {
  left: 0;
  top: -9%;
}

.section-video-card--bottom {
  right: -3%;
  bottom: -4%;
}

.section-video-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0757d9, #0d75ff);
}

.section-video-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-video-card strong,
.section-video-card span {
  display: block;
  line-height: 1.28;
}

.section-video-card strong {
  color: #14243f;
  font-size: 13px;
  font-weight: 850;
}

.section-video-card span {
  margin-top: 3px;
  color: #5c6f88;
  font-size: 11px;
  font-weight: 650;
}

.section-blue__caption {
  position: absolute;
  left: 50%;
  bottom: -34px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  transform: translateX(-50%);
  text-shadow: 0 8px 20px rgba(0, 25, 82, 0.24);
}

@media (max-width: 1024px) {
  .blue-content {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    padding: 44px;
  }

  .blue-text h2 {
    font-size: clamp(34px, 4vw, 42px);
  }

  .blue-benefit {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .blue-benefit__icon {
    width: 48px;
    height: 48px;
  }

  .blue-benefit p {
    font-size: 16px;
  }

  .feature-video-card--real-video {
    transform: perspective(1300px) rotateY(-2.4deg) rotateX(0.4deg);
  }

  .section-video-card--top {
    left: 0;
  }
}

@media (max-width: 840px) {
  .blue-content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .blue-text h2,
  .blue-benefits {
    max-width: 660px;
  }

  .feature-video-card--real-video {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section-blue {
    padding: 56px var(--spacing-md);
  }

  .blue-content {
    padding: 34px 26px 46px;
    border-radius: 28px;
  }

  .blue-label {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .blue-text h2 {
    font-size: clamp(31px, 8vw, 36px);
  }

  .blue-benefits {
    gap: 20px;
  }

  .blue-benefit {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .blue-benefit__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .blue-benefit__icon svg {
    width: 23px;
    height: 23px;
  }

  .blue-benefit p {
    font-size: 15px;
    line-height: 1.55;
  }

  .blue-btn {
    width: 100%;
    min-width: 0;
  }

  .feature-video-card--real-video {
    padding: 7px;
    border-radius: 24px;
    overflow: visible;
  }

  .section-blue__video,
  .section-blue__video-overlay,
  .feature-video-card--real-video::before,
  .feature-video-card--real-video::after {
    border-radius: 18px;
  }

  .feature-video-card--real-video::before,
  .feature-video-card--real-video::after,
  .section-blue__video-overlay {
    inset: 7px;
  }

  .section-blue__play {
    width: 62px;
    height: 62px;
  }

  .section-blue__play span {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .section-video-card {
    width: min(230px, 58%);
    padding: 10px 11px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .section-video-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .section-video-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .section-video-card strong {
    font-size: 11px;
  }

  .section-video-card span {
    font-size: 10px;
  }

  .section-video-card--top {
    left: 12px;
    top: -20px;
  }

  .section-video-card--bottom {
    right: 12px;
    bottom: -20px;
  }

  .section-blue__caption {
    bottom: -34px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .section-video-card--bottom {
    display: none;
  }

  .section-video-card--top {
    left: 10px;
    top: -18px;
    bottom: auto;
    width: min(220px, 72%);
  }

  .section-blue__caption {
    display: none;
  }
}

/* Section blue: vertical 9:16 video layout */
.section-blue {
  padding: clamp(62px, 7vw, 88px) var(--spacing-lg);
}

.blue-content {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(56px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  padding: clamp(48px, 4.6vw, 58px);
}

.blue-text {
  order: 2;
}

.video-placeholder {
  order: 1;
  display: flex;
  justify-content: center;
}

.blue-label {
  margin-bottom: 24px;
}

.blue-text h2 {
  max-width: 550px;
  font-size: clamp(40px, 3.5vw, 46px);
  line-height: 1.1;
}

.blue-text h2 span {
  color: #62e6ff;
}

.blue-benefits {
  max-width: 540px;
}

.feature-video-card--real-video {
  width: clamp(280px, 26vw, 336px);
  aspect-ratio: 9 / 16;
  padding: 10px;
  border-radius: 30px;
  overflow: visible;
  transform: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(40, 169, 255, 0.28), transparent 42%),
    linear-gradient(180deg, #06246c, #03194f);
}

.feature-video-card--real-video::before,
.feature-video-card--real-video::after {
  inset: 10px;
  border-radius: 24px;
}

.section-blue__poster {
  position: absolute;
  inset: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #082a7d, #04184c);
}

.section-blue__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 72, 190, 0.12), rgba(3, 17, 58, 0.22));
  pointer-events: none;
}

.section-blue__poster img {
  position: relative;
  z-index: 1;
  display: block;
  width: 92%;
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 16, 54, 0.22);
}

.section-blue__video {
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
  background: #03194f;
}

.feature-video-card--real-video.has-video .section-blue__video {
  opacity: 1;
  pointer-events: auto;
}

.feature-video-card--real-video.has-video .section-blue__poster {
  opacity: 0;
  pointer-events: none;
}

.section-blue__video-overlay {
  inset: 10px;
  border-radius: 24px;
}

.section-blue__play {
  width: 68px;
  height: 68px;
}

.section-blue__play span {
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 19px;
}

.section-video-card {
  width: 208px;
  padding: 11px 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  border-radius: 15px;
}

.section-video-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.section-video-card__icon svg {
  width: 19px;
  height: 19px;
}

.section-video-card strong {
  font-size: 12px;
}

.section-video-card span {
  font-size: 10px;
}

.section-video-card--top {
  left: -34px;
  top: 12%;
}

.section-video-card--bottom {
  right: -42px;
  bottom: 13%;
}

.section-blue__caption {
  bottom: -34px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .blue-content {
    grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    padding: 44px;
  }

  .feature-video-card--real-video {
    width: clamp(260px, 29vw, 310px);
    transform: none;
  }

  .section-video-card--top {
    left: -20px;
  }

  .section-video-card--bottom {
    right: -24px;
  }
}

@media (max-width: 840px) {
  .blue-content {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .blue-text {
    order: 1;
  }

  .video-placeholder {
    order: 2;
  }
}

@media (max-width: 768px) {
  .section-blue {
    padding: 56px var(--spacing-md);
  }

  .blue-content {
    padding: 32px 24px 42px;
  }

  .blue-text h2 {
    font-size: clamp(31px, 8vw, 36px);
  }

  .feature-video-card--real-video {
    width: min(100%, 310px);
    padding: 8px;
    border-radius: 28px;
  }

  .feature-video-card--real-video::before,
  .feature-video-card--real-video::after,
  .section-blue__poster,
  .section-blue__video-overlay {
    inset: 8px;
    border-radius: 22px;
  }

  .section-blue__video {
    border-radius: 22px;
  }

  .section-blue__play {
    width: 62px;
    height: 62px;
  }

  .section-video-card {
    width: 196px;
  }

  .section-video-card--top {
    left: -8px;
    top: 11%;
  }

  .section-video-card--bottom {
    right: -8px;
    bottom: 10%;
  }

  .section-blue__caption {
    bottom: -30px;
  }
}

@media (max-width: 430px) {
  .section-blue {
    padding: 48px 14px;
  }

  .blue-content {
    padding: 30px 22px 40px;
    gap: 38px;
  }

  .feature-video-card--real-video {
    width: min(100%, 292px);
  }

  .section-video-card--bottom {
    display: none;
  }

  .section-video-card--top {
    left: 50%;
    top: auto;
    bottom: -20px;
    width: min(210px, 78%);
    transform: translateX(-50%);
  }

  .section-blue__caption {
    display: none;
  }
}

/* ============================================
   VITRINE DE RECURSOS DO PRODUTO
   ============================================ */

.feature-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 82, 204, 0.08), transparent 32%),
    radial-gradient(circle at 86% 42%, rgba(106, 164, 255, 0.11), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 52%, #ffffff 100%);
}

.feature-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 82, 204, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.18;
  pointer-events: none;
}

.feature-showcase .container {
  position: relative;
  z-index: 1;
}

.showcase-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary-lighter);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.showcase-header h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.showcase-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 30px);
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-card {
  min-width: 0;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(211, 224, 245, 0.92);
  box-shadow: 0 18px 48px rgba(29, 78, 137, 0.09);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 204, 0.22);
  box-shadow: 0 28px 70px rgba(29, 78, 137, 0.14);
}

.showcase-visual {
  min-height: 270px;
  height: 46%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(0, 82, 204, 0.16), transparent 38%),
    linear-gradient(145deg, #eef5ff 0%, #f9fbff 100%);
  border-bottom: 1px solid rgba(224, 233, 248, 0.9);
}

.showcase-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 82, 204, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.45;
}

.mini-app-shell,
.record-shell,
.finance-shell {
  position: absolute;
  inset: 28px 24px;
  z-index: 1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 216, 241, 0.95);
  box-shadow: 0 18px 38px rgba(35, 82, 140, 0.12);
  overflow: hidden;
}

.mini-app-top,
.finance-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f8;
}

.mini-app-top span,
.record-profile span,
.finance-top span,
.finance-metrics span,
.finance-list span {
  color: var(--color-text-light);
  font-size: 11px;
}

.mini-app-top strong,
.finance-top strong {
  color: var(--color-primary);
  font-size: 12px;
}

.agenda-mock {
  display: grid;
  grid-template-columns: 42px repeat(3, 1fr);
  grid-template-rows: 30px repeat(3, 42px);
  gap: 8px;
  padding: 14px 16px 0;
}

.agenda-times {
  grid-row: 2 / 5;
  display: grid;
  gap: 8px;
}

.agenda-times span {
  color: var(--color-text-light);
  font-size: 10px;
  align-self: center;
}

.agenda-columns {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.agenda-columns span {
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf4ff;
  color: #557096;
  font-size: 10px;
  font-weight: 800;
}

.agenda-block {
  border-radius: 11px;
  background: #dce9ff;
}

.agenda-block.block-a {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, var(--color-primary), #4f91ff);
}

.agenda-block.block-b {
  grid-column: 3;
  grid-row: 3;
  background: #d5f5e5;
  border: 1px solid #9ee7c3;
}

.agenda-block.block-c {
  grid-column: 4;
  grid-row: 4;
  background: linear-gradient(135deg, #4f91ff, var(--color-primary));
}

.patient-mini-card,
.confirm-chip {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 228, 247, 0.95);
  box-shadow: 0 14px 30px rgba(35, 82, 140, 0.13);
}

.patient-mini-card {
  left: 34px;
  right: 34px;
  bottom: 22px;
  padding: 13px 15px;
}

.patient-mini-card strong,
.patient-mini-card span,
.confirm-chip {
  display: block;
}

.patient-mini-card strong {
  color: var(--color-text);
  font-size: 12px;
  margin-bottom: 4px;
}

.patient-mini-card span {
  color: var(--color-text-light);
  font-size: 12px;
}

.confirm-chip {
  right: 22px;
  top: 28px;
  padding: 9px 12px;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  background: #ecfdf5;
}

.record-shell {
  padding: 16px;
}

.record-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.record-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.record-profile strong {
  display: block;
  color: var(--color-text);
  font-size: 14px;
}

.record-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 13px;
  overflow: hidden;
}

.record-tabs span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.record-content {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.record-notes,
.record-side {
  min-height: 116px;
  padding: 13px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e5eefb;
}

.record-notes strong,
.record-side strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 12px;
}

.record-notes span {
  display: block;
  height: 9px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #dce7f7;
}

.record-notes span:nth-child(3) {
  width: 78%;
}

.record-notes span:nth-child(4) {
  width: 58%;
}

.record-side small {
  color: var(--color-text-light);
  font-size: 11px;
  line-height: 1.45;
}

.finance-shell {
  padding: 0 16px 16px;
}

.finance-top {
  padding-left: 0;
  padding-right: 0;
}

.finance-top small {
  color: var(--color-text-light);
  font-size: 11px;
  white-space: nowrap;
}

.finance-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.finance-metrics div {
  padding: 12px;
  border-radius: 14px;
  background: #f6faff;
  border: 1px solid #e4eefc;
}

.finance-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--color-text);
  font-size: 15px;
}

.finance-chart {
  height: 78px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e5eefb;
}

.finance-chart span {
  flex: 1;
  min-width: 8px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #71a8ff, var(--color-primary));
}

.finance-list {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.finance-list span {
  flex: 1;
  padding: 8px;
  text-align: center;
  border-radius: 999px;
  background: #edf4ff;
  color: #557096;
  font-weight: 800;
}

.showcase-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.showcase-badge {
  align-self: flex-start;
  padding: 7px 11px;
  margin-bottom: 16px;
  border-radius: var(--radius-full);
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showcase-card h3 {
  color: var(--color-text);
  font-size: clamp(26px, 2.2vw, 31px);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.showcase-card p {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: var(--spacing-lg);
}

.showcase-card-btn {
  align-self: flex-start;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 82, 204, 0.17);
}

.showcase-card-btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.showcase-cta {
  max-width: 660px;
  margin: 44px auto 0;
  text-align: center;
}

.showcase-cta p {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.65;
  margin-bottom: var(--spacing-lg);
}

.showcase-main-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 11px;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card {
    min-height: 560px;
  }

  .showcase-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 620px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-showcase {
    padding: var(--spacing-3xl) 0;
  }

  .showcase-header {
    margin-bottom: 34px;
  }

  .showcase-header h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .showcase-header p {
    font-size: 16px;
  }

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

  .showcase-card,
  .showcase-card:nth-child(3) {
    min-height: 0;
    max-width: none;
  }

  .showcase-visual {
    min-height: 255px;
  }

  .showcase-card-body {
    padding: 26px;
  }

  .showcase-card h3 {
    font-size: 26px;
  }

  .showcase-card-btn,
  .showcase-main-btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .feature-showcase .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .showcase-visual {
    min-height: 238px;
  }

  .mini-app-shell,
  .record-shell,
  .finance-shell {
    inset: 20px 16px;
    border-radius: 18px;
  }

  .patient-mini-card {
    left: 24px;
    right: 24px;
  }

  .confirm-chip {
    right: 16px;
    top: 20px;
  }

  .record-content {
    grid-template-columns: 1fr;
  }

  .record-side {
    min-height: auto;
  }

  .showcase-card-body {
    padding: 24px 22px;
  }
}

/* ============================================
   SEÇÃO MOBILE
   ============================================ */

.section-mobile {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 82, 204, 0.1), transparent 33%),
    radial-gradient(circle at 10% 18%, rgba(96, 165, 250, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 48%, #ffffff 100%);
  padding: clamp(112px, 10vw, 148px) 0;
}

.section-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 82, 204, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.18;
  pointer-events: none;
}

.section-mobile .container {
  position: relative;
  z-index: 1;
}

.mobile-section__intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.mobile-section__intro h2 {
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
  color: var(--color-text);
  font-size: clamp(48px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.mobile-section__intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.72;
}

.mobile-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: var(--spacing-xl);
}

.mobile-buttons .btn {
  min-height: 54px;
  border-radius: 11px;
  padding: 0 24px;
  font-size: 16px;
}

.mobile-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-width: 1.5px;
}

.mobile-section__showcase {
  max-width: 1180px;
  margin: clamp(58px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 360px) minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  isolation: isolate;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.2), rgba(0, 82, 204, 0.06) 42%, transparent 68%);
  filter: blur(4px);
  z-index: -1;
}

.phone-frame {
  width: 330px;
  height: 660px;
  background: #111827;
  border-radius: 48px;
  border: 10px solid #182235;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.2), 0 12px 30px rgba(0, 82, 204, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 28px;
  background: #0b1220;
  border-radius: 999px;
  z-index: 12;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f7faff;
  padding: 24px 14px 14px;
}

.mobile-app-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 82, 204, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(226, 235, 250, 0.9);
  padding: 22px 14px 72px;
}

.mobile-app-status {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f2937;
  font-size: 11px;
  font-weight: 800;
  padding: 0 8px;
}

.mobile-app-status span:last-child {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cbd5e1 0 62%, var(--color-primary) 62% 100%);
}

.mobile-app-header {
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-primary), #3d86ff);
  color: var(--color-white);
  box-shadow: 0 14px 32px rgba(0, 82, 204, 0.22);
}

.mobile-app-header span,
.mobile-app-header strong {
  display: block;
}

.mobile-app-header span {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.mobile-app-header strong {
  font-size: 20px;
  line-height: 1.1;
}

.mobile-day-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0;
}

.mobile-day-selector span {
  min-height: 42px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  background: #eef4ff;
  color: #60728f;
  font-size: 9px;
  font-weight: 800;
}

.mobile-day-selector .active {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-appointments {
  display: grid;
  gap: 10px;
}

.mobile-appointment {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e3ecfb;
  box-shadow: 0 8px 20px rgba(38, 84, 143, 0.06);
}

.mobile-appointment time {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.mobile-appointment strong,
.mobile-appointment span {
  display: block;
}

.mobile-appointment strong {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.2;
}

.mobile-appointment span {
  margin-top: 4px;
  color: var(--color-text-light);
  font-size: 11px;
}

.mobile-appointment.confirmed {
  border-color: rgba(16, 185, 129, 0.22);
  background: #f3fff9;
}

.mobile-appointment.confirmed span {
  color: #047857;
  font-weight: 800;
}

.mobile-appointment.free {
  background: #f8fbff;
  border-style: dashed;
}

.mobile-add-button {
  position: absolute;
  right: 20px;
  bottom: 70px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 16px 32px rgba(0, 82, 204, 0.26), 0 0 0 8px rgba(0, 82, 204, 0.08);
  cursor: pointer;
}

.mobile-add-button::before,
.mobile-add-button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.mobile-add-button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-bottom-nav {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e5eefb;
  box-shadow: 0 12px 26px rgba(38, 84, 143, 0.08);
}

.mobile-bottom-nav span {
  text-align: center;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.mobile-bottom-nav span:first-child {
  color: var(--color-primary);
}

.mobile-benefit-card {
  max-width: 330px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 82, 204, 0.1), transparent 34%),
    rgba(244, 248, 255, 0.86);
  border: 1px solid rgba(200, 218, 245, 0.76);
  box-shadow: 0 16px 42px rgba(29, 78, 137, 0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mobile-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(29, 78, 137, 0.1);
}

.mobile-benefit-card--left,
.mobile-benefit-card--right {
  align-self: center;
}

.mobile-benefit-card--left {
  justify-self: end;
  transform: translateY(56px);
}

.mobile-benefit-card--right {
  justify-self: start;
  transform: translateY(92px);
}

.mobile-benefit-card--left:hover {
  transform: translateY(50px);
}

.mobile-benefit-card--right:hover {
  transform: translateY(86px);
}

.mobile-benefit-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mobile-benefit-card h4 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 23px;
  line-height: 1.13;
}

.mobile-benefit-card p {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 1024px) {
  .section-mobile {
    padding: 96px 0;
  }

  .mobile-section__showcase {
    grid-template-columns: minmax(190px, 1fr) minmax(250px, 300px) minmax(190px, 1fr);
    gap: 22px;
  }

  .phone-frame {
    width: 288px;
    height: 576px;
  }

  .phone-mockup {
    min-height: 560px;
  }

  .mobile-benefit-card {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .section-mobile {
    padding: 72px 0;
  }

  .mobile-section__intro h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .mobile-section__intro p {
    font-size: 16px;
  }

  .mobile-buttons {
    flex-direction: column;
  }

  .mobile-buttons .btn {
    width: 100%;
  }

  .mobile-section__showcase {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: 44px;
  }

  .phone-mockup {
    min-height: auto;
    order: 1;
    margin-bottom: var(--spacing-md);
  }

  .phone-frame {
    width: min(100%, 290px);
    height: 580px;
  }

  .mobile-benefit-card,
  .mobile-benefit-card--left,
  .mobile-benefit-card--right,
  .mobile-benefit-card--left:hover,
  .mobile-benefit-card--right:hover {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .mobile-benefit-card--left {
    order: 2;
  }

  .mobile-benefit-card--right {
    order: 3;
  }
}

@media (max-width: 390px) {
  .section-mobile .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-frame {
    width: min(100%, 270px);
    height: 540px;
    border-width: 8px;
    border-radius: 42px;
  }

  .mobile-app-screen {
    padding-left: 11px;
    padding-right: 11px;
  }

  .mobile-day-selector {
    gap: 5px;
  }

  .mobile-day-selector span {
    font-size: 8px;
  }

  .mobile-appointment {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 10px;
  }
}

/* ============================================
   SEÇÃO FUNCIONALIDADES
   ============================================ */

.features-section {
  overflow: hidden;
  position: relative;
  padding: clamp(82px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 82, 204, 0.07), transparent 32%),
    radial-gradient(circle at 86% 68%, rgba(86, 154, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 54%, #ffffff 100%);
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 82, 204, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.16;
  pointer-events: none;
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-section__intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.features-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary-lighter);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.features-section__intro h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--color-text);
  font-size: clamp(46px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

.features-section__intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.72;
}

.features-bento-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px);
}

.feature-bento-card {
  grid-column: span 5;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 82, 204, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(211, 224, 245, 0.92);
  box-shadow: 0 18px 48px rgba(29, 78, 137, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-bento-card--wide {
  grid-column: span 7;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.feature-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 204, 0.22);
  box-shadow: 0 28px 70px rgba(29, 78, 137, 0.13);
}

.feature-bento-copy {
  position: relative;
  z-index: 2;
}

.feature-bento-copy > span {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 16px;
  border-radius: var(--radius-full);
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-bento-card h3 {
  max-width: 480px;
  color: var(--color-text);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.feature-bento-card p {
  max-width: 520px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 0;
}

.bento-agenda-ui,
.bento-record-ui,
.bento-finance-ui,
.bento-automation-ui {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid #dce8f8;
  box-shadow: 0 16px 34px rgba(35, 82, 140, 0.1);
}

.bento-agenda-ui,
.bento-automation-ui {
  min-height: 230px;
  padding: 18px;
}

.bento-ui-top,
.bento-finance-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.bento-ui-top strong,
.bento-finance-head strong {
  color: var(--color-text);
  font-size: 14px;
}

.bento-ui-top span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
}

.bento-agenda-grid {
  display: grid;
  grid-template-columns: 42px repeat(3, 1fr);
  gap: 8px;
}

.bento-agenda-grid time {
  color: var(--color-text-light);
  font-size: 11px;
  align-self: center;
}

.bento-agenda-grid span {
  min-height: 38px;
  border-radius: 11px;
  background: #edf4ff;
}

.bento-agenda-grid .active {
  background: linear-gradient(135deg, var(--color-primary), #5b98ff);
}

.bento-agenda-grid .soft {
  background: #dff8ec;
  border: 1px solid #a7edca;
}

.bento-avatar-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.bento-avatar-row span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dbeafe;
  border: 2px solid #ffffff;
}

.bento-record-ui,
.bento-finance-ui {
  margin-top: 24px;
  padding: 18px;
}

.bento-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bento-profile span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.bento-profile strong {
  color: var(--color-text);
  font-size: 14px;
}

.bento-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.bento-tabs span,
.bento-movement span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
}

.bento-lines span {
  display: block;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #dce7f7;
}

.bento-lines span:nth-child(2) {
  width: 78%;
}

.bento-lines span:nth-child(3) {
  width: 58%;
}

.bento-finance-head span {
  color: #047857;
  font-size: 12px;
  font-weight: 800;
}

.bento-bars {
  height: 94px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e5eefb;
}

.bento-bars span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #72a8ff, var(--color-primary));
}

.bento-movement {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.bento-automation-ui {
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.automation-status {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
}

.message-bubble {
  max-width: 260px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 16px 16px 16px 6px;
  background: #eef4ff;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.4;
}

.message-bubble.reply {
  margin-left: auto;
  border-radius: 16px 16px 6px 16px;
  background: #dcfce7;
  color: #166534;
  font-weight: 800;
}

.sent-line {
  color: var(--color-text-light);
  font-size: 12px;
}

.features-benefit-strip {
  max-width: 1240px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(211, 224, 245, 0.86);
  box-shadow: 0 14px 34px rgba(29, 78, 137, 0.06);
}

.features-benefit-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f4f8ff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.features-benefit-strip div span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--color-primary-light);
  position: relative;
}

.features-benefit-strip div span::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  width: 7px;
  height: 11px;
  border: solid var(--color-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.features-section__bottom-cta {
  max-width: 660px;
  margin: 42px auto 0;
  text-align: center;
}

.features-section__bottom-cta p {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.65;
  margin-bottom: var(--spacing-lg);
}

.features-section__bottom-cta .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 11px;
}

.features-section__bottom-cta > span {
  display: block;
  margin-top: 12px;
  color: var(--color-text-light);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .features-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-bento-card,
  .feature-bento-card--wide {
    grid-column: span 1;
    display: flex;
    min-height: 430px;
  }

  .features-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: var(--spacing-3xl) 0;
  }

  .features-section__intro h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .features-section__intro p {
    font-size: 16px;
  }

  .features-bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-bento-card,
  .feature-bento-card--wide {
    min-height: auto;
    padding: 26px;
  }

  .bento-agenda-ui,
  .bento-automation-ui {
    margin-top: 24px;
  }

  .features-section__bottom-cta .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .features-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-bento-card,
  .feature-bento-card--wide {
    padding: 22px;
    border-radius: 24px;
  }

  .features-benefit-strip {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SEÇÃO PLANOS
   ============================================ */

.plans-section {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 10vw, 144px) 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 82, 204, 0.08), transparent 32%),
    radial-gradient(circle at 88% 70%, rgba(86, 154, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 58%, #ffffff 100%);
}

.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 82, 204, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.14;
  pointer-events: none;
}

.plans-section .container {
  position: relative;
  z-index: 1;
}

.plans-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.plans-intro > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary-lighter);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.plans-intro h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--color-text);
  font-size: clamp(42px, 4.6vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

.plans-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.72;
}

.plans-content {
  display: grid;
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(64px, 6vw, 88px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 32px;
  border: 1px solid rgba(0, 82, 204, 0.16);
  box-shadow: 0 28px 80px rgba(29, 78, 137, 0.14);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(29, 78, 137, 0.17);
}

.plan-header {
  position: relative;
  padding: 34px 34px 46px;
  margin-bottom: 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.plan-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.plan-icon::before,
.plan-icon::after {
  content: '';
  position: absolute;
  border-radius: 8px;
  background: #ffffff;
}

.plan-icon::before {
  width: 18px;
  height: 18px;
  left: 9px;
  top: 9px;
}

.plan-icon::after {
  width: 14px;
  height: 14px;
  right: 9px;
  bottom: 9px;
}

.plan-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.plan-header p {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.plan-wave {
  height: 42px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.plan-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.plan-wave path {
  fill: var(--color-white);
}

.plan-price-area {
  padding: 8px 34px 20px;
  text-align: center;
}

.plan-price {
  color: var(--color-primary);
  font-size: clamp(50px, 5vw, 62px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.plan-price span:first-child {
  font-size: 24px;
  vertical-align: super;
}

.plan-price span:last-child {
  font-size: 22px;
  white-space: nowrap;
}

.plan-price-complement {
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text-light);
}

.plan-description {
  margin: 0 34px var(--spacing-lg);
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin: 0 34px var(--spacing-xl);
}

.plan-features li {
  padding: 9px 0;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.plan-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 13px;
}

.plan-feature-highlight {
  margin: 8px -10px;
  padding: 12px 10px !important;
  border-radius: 16px;
  background: var(--color-primary-lighter);
  color: var(--color-primary) !important;
  font-weight: 800;
}

.plan-card > .btn {
  width: auto;
  margin: auto 34px 0;
  min-height: 54px;
  border-radius: 12px;
}

.plan-trial-note {
  margin: 12px 34px 30px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 14px;
}

.modular-section {
  position: relative;
}

.modular-section::before {
  content: '';
  position: absolute;
  right: 2%;
  top: -28px;
  width: 190px;
  height: 190px;
  border-radius: 42px;
  background: rgba(0, 82, 204, 0.06);
  transform: rotate(12deg);
  pointer-events: none;
}

.modular-section h3 {
  max-width: 520px;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  font-size: clamp(34px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.modular-section p {
  max-width: 620px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.72;
  font-size: 17px;
}

.user-type-cards {
  display: grid;
  gap: 14px;
  margin-bottom: var(--spacing-lg);
}

.user-type-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(211, 224, 245, 0.9);
  box-shadow: 0 16px 40px rgba(29, 78, 137, 0.08);
}

.user-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--color-primary-lighter);
  position: relative;
}

.user-type-icon::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
}

.user-type-icon::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 10px;
  width: 26px;
  height: 13px;
  border-radius: 999px 999px 8px 8px;
  background: var(--color-primary);
}

.user-type-icon-pro {
  background: #e8fbf3;
}

.user-type-icon-pro::before,
.user-type-icon-pro::after {
  background: #10b981;
}

.user-type-card h4 {
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 17px;
}

.user-type-card p {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.4;
}

.user-type-card strong {
  color: var(--color-primary);
  font-size: 14px;
  text-align: right;
  max-width: 150px;
}

.user-type-card .free-label {
  color: #047857;
  text-transform: uppercase;
}

.trial-info-box {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  margin-bottom: var(--spacing-lg);
  border-radius: 22px;
  background: var(--color-primary-lighter);
  border: 1px solid var(--color-primary-light);
}

.trial-info-box span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
}

.trial-info-box span::before {
  content: '!';
  font-weight: 800;
}

.trial-info-box p {
  margin-bottom: 0;
  color: #164074;
  font-size: 15px;
  line-height: 1.55;
}

.modular-visual {
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 82, 204, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.72);
  margin-bottom: var(--spacing-xl);
  border: 1px solid rgba(211, 224, 245, 0.9);
  overflow: hidden;
  position: relative;
}

.modular-visual::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  border-top: 1px dashed rgba(0, 82, 204, 0.22);
}

.modular-visual div {
  min-height: 62px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dce8f8;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(29, 78, 137, 0.07);
}

.modular-section > .btn {
  width: auto;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
}

.modular-note {
  margin: 12px 0 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .plans-content {
    grid-template-columns: minmax(330px, 0.47fr) minmax(0, 0.53fr);
    gap: 36px;
  }

  .user-type-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .user-type-card strong {
    grid-column: 2;
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 840px) {
  .plans-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .plans-section {
    padding: var(--spacing-3xl) 0;
  }

  .plans-intro h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .plans-intro p {
    font-size: 16px;
  }

  .modular-section::before {
    display: none;
  }

  .modular-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modular-section > .btn,
  .plan-card > .btn {
    width: calc(100% - 68px);
  }
}

@media (max-width: 390px) {
  .plans-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .plan-header,
  .plan-price-area {
    padding-left: 26px;
    padding-right: 26px;
  }

  .plan-description,
  .plan-features,
  .plan-card > .btn,
  .plan-trial-note {
    margin-left: 26px;
    margin-right: 26px;
  }

  .plan-card > .btn {
    width: calc(100% - 52px);
  }

  .user-type-card {
    grid-template-columns: 1fr;
  }

  .trial-info-box {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--color-text);
  padding: clamp(64px, 8vw, 104px) 0;
  position: relative;
  overflow: hidden;
}

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

.cta-final__panel {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 430px;
  border-radius: 36px;
  padding: clamp(56px, 7vw, 82px) clamp(28px, 6vw, 76px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 6%, rgba(126, 207, 255, 0.62) 0%, rgba(126, 207, 255, 0) 31%),
    radial-gradient(circle at 84% 92%, rgba(80, 158, 255, 0.36) 0%, rgba(80, 158, 255, 0) 36%),
    linear-gradient(135deg, #0757d9 0%, #0a61e5 52%, #064fc5 100%);
  box-shadow: 0 28px 70px rgba(5, 43, 115, 0.22);
  isolation: isolate;
}

.cta-final__panel::before,
.cta-final__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.cta-final__panel::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 72%);
  opacity: 0.34;
}

.cta-final__panel::after {
  inset: auto -90px -130px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    -120px -230px 0 -142px rgba(255, 255, 255, 0.2),
    -220px -70px 0 -152px rgba(255, 255, 255, 0.16);
}

.cta-final__content {
  width: min(100%, 840px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-final__support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-final__avatars {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.cta-final__avatars span {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.58) 0 25%, transparent 26%),
    linear-gradient(135deg, #bfe7ff, #3da1ff);
  box-shadow: 0 10px 24px rgba(4, 35, 98, 0.22);
}

.cta-final__avatars span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.58) 0 25%, transparent 26%),
    linear-gradient(135deg, #c9f7ee, #20c6a6);
}

.cta-final__avatars span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.58) 0 25%, transparent 26%),
    linear-gradient(135deg, #dce6ff, #7795ff);
}

.cta-final__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.cta-final h2 {
  color: var(--color-white);
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(46px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta-final .cta-final__actions .btn {
  min-height: 56px;
  border-radius: 14px;
  padding: 16px 24px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.cta-final .cta-final__btn-primary {
  background-color: var(--color-white);
  color: #0757d9;
  border: 1px solid var(--color-white);
  box-shadow: 0 16px 34px rgba(3, 34, 97, 0.2);
  display: inline-flex;
}

.cta-final .cta-final__btn-secondary {
  background: rgba(5, 39, 120, 0.24);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: inline-flex;
  box-shadow: none;
}

.cta-final .cta-final__btn-primary:hover {
  background-color: #f7fbff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(3, 34, 97, 0.26);
}

.cta-final .cta-final__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.56);
  transform: translateY(-2px);
}

.cta-final__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.cta-final__note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-final__decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-final__decor-card {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 210px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 46px rgba(4, 35, 98, 0.16);
  backdrop-filter: blur(12px);
  opacity: 0.72;
}

.cta-final__decor-card::before {
  content: '';
  width: 34px;
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.42);
}

.cta-final__decor-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.cta-final__decor-card strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
}

.cta-final__decor-card--one {
  top: 76px;
  left: 52px;
  transform: rotate(-4deg);
}

.cta-final__decor-card--two {
  right: 52px;
  bottom: 66px;
  transform: rotate(3deg);
}

@media (max-width: 1024px) {
  .cta-final__panel {
    min-height: 390px;
    border-radius: 32px;
  }

  .cta-final h2 {
    font-size: clamp(40px, 5vw, 48px);
  }

  .cta-final__decor-card {
    opacity: 0.46;
    transform: none;
  }

  .cta-final__decor-card--one {
    left: 24px;
  }

  .cta-final__decor-card--two {
    right: 24px;
  }
}

@media (max-width: 768px) {
  .cta-final {
    padding: 54px 0;
  }

  .cta-final__panel {
    min-height: 0;
    border-radius: 28px;
    padding: 42px 22px;
  }

  .cta-final__support {
    gap: 12px;
    margin-bottom: 24px;
  }

  .cta-final__avatars span {
    width: 34px;
    height: 34px;
  }

  .cta-final h2 {
    font-size: clamp(32px, 9.4vw, 38px);
    line-height: 1.12;
  }

  .cta-final p {
    font-size: 16px;
    line-height: 1.66;
    margin-bottom: 28px;
  }

  .cta-final__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-final .cta-final__actions .btn {
    width: min(100%, 330px);
    justify-content: center;
    justify-self: center;
    white-space: normal;
  }

  .cta-final__decor-card {
    display: none;
  }
}

@media (max-width: 390px) {
  .cta-final__panel {
    border-radius: 24px;
    padding: 38px 18px;
  }

  .cta-final__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cta-final .cta-final__actions .btn {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-base);
}

.footer-logo:hover {
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .footer-logo {
    justify-content: center;
  }
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-info {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-info {
    text-align: center;
  }
}

.footer-info p {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: flex-end;
  margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
  .footer-links {
    justify-content: center;
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

/* ============================================
   BOTÃO FLUTUANTE MOBILE
   ============================================ */

.floating-btn {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-floating-btn);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  font-size: var(--font-size-sm);
  text-align: center;
  min-width: 200px;
}

.floating-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.floating-btn:active {
  transform: scale(0.95);
}

@media (min-width: 769px) {
  .floating-btn {
    display: none;
  }
}

/* ============================================
   OBSERVADOR DE ANIMAÇÕES
   ============================================ */

.observe-animation {
  opacity: 1;
  transform: translateY(0);
}

.observe-animation.in-view {
  animation: slideUp var(--transition-slow) ease-in-out forwards;
}

/* ============================================
   UTILITÁRIOS ADICIONAIS
   ============================================ */

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

.benefit-line {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.benefit-line::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

/* ============================================
   AUDITORIA VISUAL / RESPONSIVIDADE CLINICAS
   ============================================ */

header .container,
.hero-content,
.blue-content,
.showcase-grid,
.features-bento-grid,
.features-benefit-strip,
.plans-content,
.cta-final__panel {
  max-width: var(--container-max);
}

.header-content {
  min-height: 72px;
  padding: 10px 0;
}

.btn,
.hero-buttons .btn,
.mobile-buttons .btn,
.features-section__bottom-cta .btn,
.modular-section > .btn,
.plan-card > .btn,
.cta-final .cta-final__actions .btn,
.showcase-main-btn {
  min-height: 52px;
  border-radius: 12px;
}

.hero {
  min-height: auto;
  padding: clamp(36px, 4.8vh, 46px) 0 clamp(40px, 4.8vh, 50px);
}

.hero-content {
  grid-template-columns: minmax(0, 610px) minmax(420px, 500px);
  gap: clamp(34px, 4vw, 48px);
  justify-content: space-between;
}

.hero-text h1 {
  font-size: clamp(42px, 3.35vw, 48px);
  line-height: 1.07;
  margin-bottom: 14px;
}

.hero-text p {
  max-width: 620px;
  margin-bottom: 20px;
  line-height: 1.58;
}

.hero-text p br {
  display: none;
}

.hero-image {
  min-height: 430px;
}

.clinora-dashboard-mockup {
  width: min(100%, 570px);
}

.mockup-window {
  border-radius: var(--radius-card);
  box-shadow: 0 26px 62px rgba(20, 58, 118, 0.14), 0 10px 24px rgba(15, 23, 42, 0.07);
}

.section-blue,
.feature-showcase,
.section-mobile,
.features-section,
.plans-section {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
}

.section-blue {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  padding-top: 64px;
}

.blue-content {
  padding: clamp(52px, 4.5vw, 60px);
  border-radius: 32px;
  gap: clamp(42px, 4.4vw, 56px);
  box-shadow: 0 26px 68px rgba(5, 49, 126, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.blue-text h2 {
  font-size: clamp(39px, 3.3vw, 44px);
  margin-bottom: 20px;
}

.blue-copy {
  margin-bottom: 26px;
}

.feature-video-card {
  min-height: 0;
  border-radius: 24px;
}

.showcase-header,
.features-section__intro,
.plans-intro {
  margin-bottom: 42px;
}

.showcase-header h2,
.features-section__intro h2,
.plans-intro h2 {
  font-size: clamp(42px, 4.4vw, 54px);
}

.showcase-grid {
  gap: 24px;
}

.showcase-card {
  min-height: 540px;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 42px rgba(29, 78, 137, 0.08);
}

.showcase-card:hover,
.feature-bento-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
}

.showcase-visual {
  min-height: 238px;
  height: auto;
}

.showcase-card-body {
  padding: 26px;
}

.showcase-card h3,
.feature-bento-card h3 {
  font-size: clamp(24px, 2.15vw, 30px);
}

.showcase-cta,
.features-section__bottom-cta {
  margin-top: 36px;
}

.section-mobile {
  padding-top: clamp(92px, 8vw, 116px);
  padding-bottom: clamp(92px, 8vw, 116px);
}

.mobile-section__intro h2 {
  font-size: clamp(42px, 4.6vw, 54px);
}

.mobile-section__showcase {
  margin-top: 54px;
  grid-template-columns: minmax(220px, 1fr) minmax(270px, 330px) minmax(220px, 1fr);
  gap: clamp(22px, 3.6vw, 44px);
}

.phone-mockup {
  min-height: 580px;
}

.phone-frame {
  width: 300px;
  height: 600px;
  border-radius: 44px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18), 0 10px 26px rgba(0, 82, 204, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-mockup::before {
  width: 370px;
  height: 370px;
}

.mobile-benefit-card {
  padding: 26px;
  border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(29, 78, 137, 0.06);
}

.mobile-benefit-card--left {
  transform: translate(-40px, 34px);
}

.mobile-benefit-card--right {
  transform: translate(24px, 42px);
}

.mobile-benefit-card--left:hover {
  transform: translate(-40px, 30px);
}

.mobile-benefit-card--right:hover {
  transform: translate(24px, 38px);
}

.features-section {
  padding-top: clamp(92px, 8vw, 112px);
  padding-bottom: clamp(92px, 8vw, 112px);
}

.features-bento-grid {
  gap: 24px;
}

.feature-bento-card {
  min-height: 380px;
  padding: 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 42px rgba(29, 78, 137, 0.075);
}

.feature-bento-card--wide {
  min-height: 330px;
}

.bento-agenda-ui,
.bento-automation-ui {
  min-height: 206px;
}

.features-benefit-strip {
  margin-top: 24px;
}

.plans-section {
  padding-top: clamp(96px, 8vw, 118px);
  padding-bottom: clamp(96px, 8vw, 118px);
}

.plans-content {
  gap: clamp(38px, 5vw, 64px);
  align-items: start;
}

.plan-card {
  border-radius: var(--radius-card);
  box-shadow: 0 22px 60px rgba(29, 78, 137, 0.12);
}

.plan-header {
  padding: 30px 30px 42px;
}

.plan-price-area {
  padding: 6px 30px 18px;
}

.plan-price {
  font-size: clamp(46px, 4.4vw, 56px);
}

.plan-description {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 18px;
  padding: 16px 0;
}

.plan-features {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 24px;
}

.plan-features li {
  padding: 7px 0;
}

.plan-card > .btn {
  margin-left: 30px;
  margin-right: 30px;
}

.plan-trial-note {
  margin: 10px 30px 28px;
}

.modular-section h3 {
  font-size: clamp(32px, 3.2vw, 40px);
}

.modular-section p {
  margin-bottom: 24px;
}

.user-type-card,
.trial-info-box {
  padding: 16px;
  border-radius: 20px;
}

.modular-visual {
  min-height: 180px;
  margin-bottom: 24px;
  border-radius: 24px;
}

.modular-visual div {
  min-height: 54px;
}

.cta-final {
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.cta-final__panel {
  min-height: 0;
  border-radius: var(--radius-card);
  padding: clamp(50px, 6vw, 70px) clamp(28px, 5vw, 66px);
  box-shadow: 0 24px 62px rgba(5, 43, 115, 0.2);
}

.cta-final__support {
  margin-bottom: 22px;
}

.cta-final h2 {
  font-size: clamp(42px, 4.4vw, 56px);
  margin-bottom: 16px;
}

.cta-final p {
  margin-bottom: 28px;
}

footer {
  padding: 36px 0;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.54fr) minmax(360px, 0.46fr);
  }

  .clinora-dashboard-mockup {
    width: min(100%, 540px);
  }
}

@media (max-width: 1024px) {
  .section-blue,
  .feature-showcase,
  .section-mobile,
  .features-section,
  .plans-section {
    padding-top: var(--section-padding-tablet);
    padding-bottom: var(--section-padding-tablet);
  }

  .section-blue {
    padding-top: 58px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    max-width: 720px;
  }

  .hero-image {
    min-height: auto;
  }

  .showcase-card {
    min-height: 520px;
  }

  .feature-bento-card,
  .feature-bento-card--wide {
    min-height: 390px;
  }

  .plans-content {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-content {
    min-height: 64px;
  }

  .hero {
    padding: 42px 0 58px;
  }

  .hero-text h1 {
    font-size: clamp(33px, 9.2vw, 40px);
  }

  .hero-text p,
  .blue-copy p,
  .showcase-header p,
  .mobile-section__intro p,
  .features-section__intro p,
  .plans-intro p,
  .cta-final p {
    font-size: 16px;
    line-height: 1.65;
  }

  .section-blue,
  .feature-showcase,
  .section-mobile,
  .features-section,
  .plans-section {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }

  .section-blue {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    padding-top: 46px;
  }

  .blue-content {
    padding: 34px 28px;
  }

  .blue-text h2,
  .showcase-header h2,
  .mobile-section__intro h2,
  .features-section__intro h2,
  .plans-intro h2,
  .cta-final h2 {
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.12;
  }

  .blue-text h2 {
    font-size: clamp(31px, 8vw, 35px);
  }

  .showcase-card {
    min-height: 0;
  }

  .showcase-visual {
    min-height: 232px;
  }

  .mobile-section__showcase {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .mobile-benefit-card,
  .mobile-benefit-card--left,
  .mobile-benefit-card--right,
  .mobile-benefit-card--left:hover,
  .mobile-benefit-card--right:hover {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .phone-frame {
    width: min(100%, 276px);
    height: 552px;
  }

  .feature-bento-card,
  .feature-bento-card--wide {
    min-height: auto;
    padding: 24px;
  }

  .plans-intro {
    margin-bottom: 36px;
  }

  .plans-content {
    gap: 34px;
  }

  .modular-section > .btn,
  .plan-card > .btn {
    width: calc(100% - 60px);
  }

  .cta-final {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 390px) {
  .container,
  .section-mobile .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-blue,
  .feature-showcase .container,
  .features-section .container,
  .plans-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-buttons .btn,
  .mobile-buttons .btn,
  .cta-final .cta-final__actions .btn {
    white-space: normal;
  }

  .blue-content {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .showcase-card,
  .feature-bento-card,
  .feature-bento-card--wide,
  .plan-card,
  .cta-final__panel {
    border-radius: 24px;
  }

  .phone-frame {
    width: min(100%, 260px);
    height: 520px;
  }

  .mobile-app-header strong {
    font-size: 18px;
  }

  .mobile-bottom-nav span {
    font-size: 9px;
  }

  .plan-header,
  .plan-price-area {
    padding-left: 24px;
    padding-right: 24px;
  }

  .plan-description,
  .plan-features,
  .plan-card > .btn,
  .plan-trial-note {
    margin-left: 24px;
    margin-right: 24px;
  }

  .plan-card > .btn {
    width: calc(100% - 48px);
  }

  .modular-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* ============================================
   ASSETS REAIS / ESTRUTURA FINAL COMPARTILHADA
   ============================================ */

.brand-logo-img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 158px;
  object-fit: contain;
}

.brand-logo-img--footer {
  height: 30px;
  filter: brightness(0) invert(1);
}

.logo,
.footer-logo {
  min-width: 0;
}

.hero-real-card {
  width: min(100%, 520px);
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.86)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(191, 209, 240, 0.78);
  box-shadow:
    0 26px 64px rgba(20, 58, 118, 0.16),
    0 10px 26px rgba(15, 23, 42, 0.08);
  isolation: isolate;
}

.hero-real-card::before,
.hero-real-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-real-card::before {
  inset: 8% -4% -8% 10%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 30%, rgba(82, 156, 255, 0.24), transparent 52%),
    radial-gradient(circle at 20% 78%, rgba(44, 202, 169, 0.12), transparent 44%);
  filter: blur(22px);
}

.hero-real-card::after {
  left: 11%;
  right: 11%;
  bottom: -16px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(9, 74, 175, 0.16), transparent 70%);
  filter: blur(7px);
}

.hero-real-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(226, 235, 248, 0.96);
}

.hero-real-image--clinicas {
  object-position: 54% 52%;
}

.hero-real-image--psicologia {
  object-position: center;
}

.hero-real-image--saloes {
  object-position: 52% 58%;
}

/* ============================================
   HERO CLINICAS - DASHBOARD SAAS
   ============================================ */

.hero--clinicas-dashboard {
  min-height: min(720px, calc(100vh - 72px));
  padding: clamp(56px, 7vh, 72px) 0 clamp(54px, 6vh, 68px);
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 82, 204, 0.14) 0, transparent 34%),
    radial-gradient(circle at 95% 54%, rgba(0, 82, 204, 0.1) 0, transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f4f8ff 100%);
}

.hero--clinicas-dashboard::before {
  background-image: radial-gradient(rgba(0, 82, 204, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 38%);
  opacity: 0.38;
}

.hero--clinicas-dashboard::after {
  left: auto;
  right: -8%;
  top: -18%;
  bottom: auto;
  width: min(780px, 58vw);
  height: min(780px, 58vw);
  border: 1px solid rgba(0, 82, 204, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.13), transparent 64%);
  filter: blur(2px);
  transform: none;
}

.hero--clinicas-dashboard .hero__ambient::before {
  right: 11%;
  top: -80px;
  width: 560px;
  height: 220px;
  border-color: rgba(0, 82, 204, 0.12);
  transform: rotate(-4deg);
  box-shadow: none;
}

.hero--clinicas-dashboard .hero__ambient::after {
  right: 2%;
  top: 8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.18), transparent 70%);
}

.hero--clinicas-dashboard .hero-content {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(34px, 4vw, 48px);
  max-width: 1240px;
}

.hero--clinicas-dashboard .hero-text {
  max-width: 560px;
}

.hero--clinicas-dashboard .hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  margin-bottom: 20px;
  border-color: rgba(0, 82, 204, 0.14);
  background: rgba(232, 240, 255, 0.78);
  color: #0757d9;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.hero--clinicas-dashboard .hero-text .badge svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.hero--clinicas-dashboard .hero-text h1 {
  max-width: 590px;
  font-size: clamp(48px, 3.55vw, 52px);
  line-height: 1.06;
  color: #0d1830;
}

.hero--clinicas-dashboard .hero-text h1 span {
  color: #0757d9;
}

.hero--clinicas-dashboard .hero-text p {
  max-width: 500px;
  margin-bottom: 24px;
  color: #55657d;
  font-size: 17px;
  line-height: 1.62;
}

.hero--clinicas-dashboard .hero-buttons {
  margin-bottom: 16px;
}

.hero--clinicas-dashboard .hero-buttons .btn {
  min-height: 54px;
  border-radius: 13px;
}

.hero--clinicas-dashboard .hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.94);
}

.hero--clinicas-dashboard .hero-subtext {
  color: #58677d;
}

.hero--clinicas-dashboard .hero-image {
  min-height: 500px;
  justify-content: center;
}

.hero-dashboard-wrap {
  position: relative;
  width: min(100%, 735px);
  isolation: isolate;
  perspective: 1600px;
  transform-style: preserve-3d;
  transform-origin: center right;
}

.hero-dashboard-wrap::before {
  content: '';
  position: absolute;
  inset: -14% -9% -15% 12%;
  z-index: -2;
  border-radius: 46px;
  background:
    radial-gradient(circle at 64% 46%, rgba(0, 82, 204, 0.32), transparent 38%),
    radial-gradient(circle at 42% 18%, rgba(140, 189, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 82, 204, 0.22));
  filter: blur(10px);
  transform: translate3d(18px, 18px, -90px) rotateY(-5deg);
}

.hero-dashboard-shell {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 448px;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid rgba(163, 197, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88));
  box-shadow:
    0 44px 92px rgba(31, 82, 166, 0.23),
    0 18px 38px rgba(8, 61, 155, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 0 0 8px rgba(233, 242, 255, 0.68);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transform: rotateY(-5.5deg) rotateX(1.2deg) rotateZ(-0.35deg);
  transform-origin: center right;
  transform-style: preserve-3d;
}

.hero-dashboard-shell::before {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-dashboard-sidebar {
  padding: 18px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid rgba(216, 229, 250, 0.9);
}

.hero-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #0757d9;
}

.hero-dashboard-brand span {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #0757d9;
  position: relative;
}

.hero-dashboard-brand span::after {
  content: '';
  position: absolute;
  inset: 7px 5px 6px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 5px;
  transform: rotate(-45deg);
}

.hero-dashboard-brand strong {
  font-size: 14px;
}

.hero-dashboard-menu {
  display: grid;
  gap: 5px;
}

.hero-dashboard-menu span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 7px;
  color: #62718a;
  font-size: 10px;
  font-weight: 700;
}

.hero-dashboard-menu span.is-active {
  background: #0757d9;
  color: #fff;
}

.hero-dashboard-menu i {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  opacity: 0.8;
}

.hero-dashboard-main {
  padding: 16px 16px 14px;
}

.hero-dashboard-topbar,
.hero-dashboard-actions,
.hero-dashboard-user,
.hero-dashboard-welcome,
.hero-dashboard-metrics,
.hero-dashboard-grid,
.finance-values {
  display: flex;
}

.hero-dashboard-topbar {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-dashboard-search {
  flex: 1;
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  background: #f7faff;
  border: 1px solid rgba(213, 226, 248, 0.86);
  color: #9aa8bd;
  font-size: 11px;
  font-weight: 650;
}

.hero-dashboard-actions {
  align-items: center;
  gap: 10px;
}

.hero-dashboard-actions > span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #f2f7ff;
  border: 1px solid rgba(211, 225, 249, 0.84);
}

.hero-dashboard-user {
  align-items: center;
  gap: 8px;
}

.hero-dashboard-user i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe2c6, #b9d7ff);
}

.hero-dashboard-user strong,
.hero-dashboard-user small {
  display: block;
  line-height: 1.2;
}

.hero-dashboard-user strong {
  color: #1d2f4f;
  font-size: 10px;
}

.hero-dashboard-user small {
  color: #7b8aa1;
  font-size: 9px;
}

.hero-dashboard-welcome {
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-dashboard-welcome strong,
.hero-dashboard-welcome span {
  display: block;
}

.hero-dashboard-welcome strong {
  color: #0d1830;
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-dashboard-welcome span {
  color: #7a89a1;
  font-size: 11px;
}

.hero-dashboard-welcome small {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fbff;
  border: 1px solid rgba(216, 229, 250, 0.88);
  color: #66758c;
  font-size: 10px;
  font-weight: 750;
}

.hero-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.hero-dashboard-wrap .metric-card {
  min-height: 86px;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(214, 228, 250, 0.9);
  box-shadow: 0 10px 24px rgba(23, 65, 132, 0.06);
}

.hero-dashboard-wrap .metric-card span,
.hero-dashboard-wrap .metric-card strong {
  display: block;
}

.hero-dashboard-wrap .metric-card span {
  color: #687890;
  font-size: 10px;
  font-weight: 750;
  margin-bottom: 8px;
}

.hero-dashboard-wrap .metric-card strong {
  color: #11213d;
  font-size: 16px;
}

.hero-dashboard-wrap .metric-card i {
  display: block;
  height: 18px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 82, 204, 0.14), rgba(0, 82, 204, 0.72));
  clip-path: polygon(0 75%, 18% 48%, 36% 68%, 54% 28%, 72% 50%, 100% 18%, 100% 100%, 0 100%);
}

.hero-dashboard-wrap .metric-card--primary {
  background: linear-gradient(135deg, #0757d9, #0d6cf6);
}

.hero-dashboard-wrap .metric-card--primary span,
.hero-dashboard-wrap .metric-card--primary strong {
  color: #fff;
}

.hero-dashboard-wrap .metric-card--primary i {
  background: rgba(255, 255, 255, 0.78);
}

.hero-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
}

.hero-agenda-card,
.hero-finance-card {
  min-height: 150px;
  padding: 13px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid rgba(214, 228, 250, 0.9);
  box-shadow: 0 12px 26px rgba(23, 65, 132, 0.06);
}

.dashboard-card-title {
  margin-bottom: 10px;
  color: #1d2f4f;
  font-size: 12px;
  font-weight: 850;
}

.hero-dashboard-wrap .agenda-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  border-bottom: 1px solid #eef3fb;
}

.hero-dashboard-wrap .agenda-row:last-child {
  border-bottom: 0;
}

.hero-dashboard-wrap .agenda-row span {
  color: #8090a8;
  font-size: 9px;
}

.hero-dashboard-wrap .agenda-row strong {
  color: #33425c;
  font-size: 10px;
}

.hero-dashboard-wrap .agenda-row small {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eafbf2;
  color: #14a66a;
  font-size: 8px;
  font-weight: 850;
}

.hero-dashboard-wrap .agenda-row small.pending {
  background: #fff4dc;
  color: #d68a00;
}

.finance-values {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.finance-values span {
  color: #7b8aa1;
  font-size: 10px;
}

.finance-values strong {
  display: block;
  margin-top: 3px;
  color: #0757d9;
  font-size: 13px;
}

.hero-dashboard-wrap .finance-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 86px;
  padding: 10px 8px 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.hero-dashboard-wrap .finance-chart span {
  flex: 1;
  min-height: 20px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #0f6ff1, rgba(15, 111, 241, 0.18));
}

.hero-float-card {
  position: absolute;
  z-index: 4;
  width: 164px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 40px rgba(28, 74, 147, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transform: translateZ(54px) rotateY(-2deg);
}

.hero-float-card span,
.hero-float-card strong,
.hero-float-card small {
  display: block;
}

.hero-float-card span {
  color: #344560;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.hero-float-card strong {
  margin-top: 8px;
  color: #0757d9;
  font-size: 22px;
}

.hero-float-card small {
  margin-top: 4px;
  color: #7b8aa1;
  font-size: 9px;
  line-height: 1.35;
}

.hero-float-card--confirm {
  right: -8px;
  top: 31%;
}

.hero-float-card--procedures {
  right: 4px;
  bottom: 19%;
}

.hero-float-card--reports {
  right: 44px;
  bottom: -22px;
  width: 158px;
}

.procedure-chart {
  width: 48px;
  height: 48px;
  margin: 10px 0 7px;
  border-radius: 50%;
  background: conic-gradient(#0757d9 0 42%, #62a0ff 42% 70%, #c7dbff 70% 100%);
  position: relative;
}

.procedure-chart::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 1180px) {
  .hero--clinicas-dashboard .hero-content {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 34px;
  }

  .hero-dashboard-shell {
    grid-template-columns: 104px minmax(0, 1fr);
    transform: rotateY(-3.5deg) rotateX(0.6deg) rotateZ(-0.2deg);
  }

  .hero-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-float-card--procedures {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero--clinicas-dashboard {
    min-height: auto;
  }

  .hero--clinicas-dashboard .hero-content {
    grid-template-columns: 1fr;
  }

  .hero--clinicas-dashboard .hero-text {
    max-width: 720px;
  }

  .hero--clinicas-dashboard .hero-text h1,
  .hero--clinicas-dashboard .hero-text p {
    max-width: 680px;
  }

  .hero--clinicas-dashboard .hero-image {
    min-height: auto;
  }

  .hero-dashboard-wrap {
    width: min(100%, 760px);
    perspective: 1800px;
  }

  .hero-dashboard-shell {
    transform: rotateY(-2deg) rotateX(0.4deg);
  }

  .hero-float-card {
    transform: translateZ(34px);
  }
}

@media (max-width: 768px) {
  .hero--clinicas-dashboard {
    padding: 42px 0 50px;
  }

  .hero--clinicas-dashboard .hero-text h1 {
    font-size: clamp(34px, 9.4vw, 40px);
    line-height: 1.08;
  }

  .hero--clinicas-dashboard .hero-text p {
    font-size: 16px;
    line-height: 1.66;
  }

  .hero--clinicas-dashboard .hero-buttons {
    flex-direction: column;
  }

  .hero--clinicas-dashboard .hero-buttons .btn {
    width: 100%;
  }

  .hero-video-link {
    min-height: 38px;
  }

  .hero-dashboard-shell {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 330px;
    padding: 8px;
    border-radius: 24px;
    transform: none;
  }

  .hero-dashboard-sidebar {
    padding: 12px 7px;
    border-radius: 17px;
  }

  .hero-dashboard-brand strong,
  .hero-dashboard-menu span:nth-child(n+6),
  .hero-dashboard-user,
  .hero-dashboard-welcome small,
  .hero-dashboard-wrap .metric-card:nth-child(n+3),
  .hero-float-card--reports {
    display: none;
  }

  .hero-dashboard-menu span {
    min-height: 25px;
    padding: 0 6px;
    font-size: 0;
  }

  .hero-dashboard-menu i {
    width: 13px;
    height: 13px;
  }

  .hero-dashboard-main {
    padding: 12px 10px;
  }

  .hero-dashboard-topbar {
    margin-bottom: 14px;
  }

  .hero-dashboard-search {
    height: 30px;
    font-size: 9px;
  }

  .hero-dashboard-welcome strong {
    font-size: 13px;
  }

  .hero-dashboard-welcome span {
    font-size: 10px;
  }

  .hero-dashboard-metrics,
  .hero-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-dashboard-wrap .metric-card {
    min-height: 62px;
    padding: 10px;
  }

  .hero-dashboard-wrap .metric-card strong {
    font-size: 15px;
  }

  .hero-finance-card {
    display: none;
  }

  .hero-agenda-card {
    min-height: 118px;
  }

  .hero-dashboard-wrap .agenda-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .hero-dashboard-wrap .agenda-row small {
    display: none;
  }

  .hero-float-card {
    width: 154px;
    padding: 11px;
    border-radius: 15px;
    transform: none;
  }

  .hero-float-card--confirm {
    right: 8px;
    top: auto;
    bottom: 18px;
  }

  .hero-float-card strong {
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .hero-dashboard-shell {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .hero-dashboard-actions > span,
  .hero-dashboard-wrap .metric-card--primary i,
  .hero-dashboard-wrap .metric-card i {
    display: none;
  }

  .hero-dashboard-metrics {
    gap: 8px;
  }

  .hero-float-card--confirm {
    width: 138px;
  }
}

/* Refined hero for /clinicas: real dashboard + contextual doctor asset. */
.hero--clinicas-dashboard {
  min-height: min(704px, calc(100vh - 72px));
  padding: clamp(56px, 6.3vh, 72px) 0 clamp(54px, 5.8vh, 68px);
  background:
    radial-gradient(circle at 70% 22%, rgba(0, 82, 204, 0.12) 0, transparent 31%),
    radial-gradient(circle at 92% 58%, rgba(40, 164, 235, 0.13) 0, transparent 28%),
    linear-gradient(96deg, #ffffff 0%, #ffffff 50%, #f5f9ff 100%);
}

.hero--clinicas-dashboard::before {
  background-image: radial-gradient(rgba(0, 82, 204, 0.16) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 34%);
  opacity: 0.28;
}

.hero--clinicas-dashboard::after {
  left: auto;
  right: -13%;
  top: -22%;
  bottom: auto;
  width: min(820px, 58vw);
  height: min(820px, 58vw);
  border: 1px solid rgba(0, 82, 204, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.1), transparent 66%);
  filter: blur(1px);
  transform: none;
}

.hero--clinicas-dashboard .hero__ambient::before {
  right: 7%;
  top: 5%;
  width: min(760px, 54vw);
  height: min(470px, 34vw);
  border: 1px solid rgba(0, 82, 204, 0.1);
  border-radius: 54% 46% 48% 52%;
  transform: rotate(-7deg);
  box-shadow: none;
}

.hero--clinicas-dashboard .hero__ambient::after {
  right: -8%;
  bottom: -24%;
  top: auto;
  width: min(760px, 58vw);
  height: min(300px, 24vw);
  border-radius: 50% 50% 0 0;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.16), rgba(75, 204, 224, 0.18));
  filter: blur(12px);
}

.hero--clinicas-dashboard .hero-content {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 2.4vw, 34px);
}

.hero--clinicas-dashboard .hero-text {
  max-width: 560px;
}

.hero--clinicas-dashboard .hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 82, 204, 0.12);
  background: rgba(232, 240, 255, 0.82);
  color: #0757d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 10px 24px rgba(0, 82, 204, 0.06);
}

.hero--clinicas-dashboard .hero-text .badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero--clinicas-dashboard .hero-text h1 {
  max-width: 585px;
  font-size: clamp(50px, 3.45vw, 53px);
  line-height: 1.06;
  color: #0c1730;
}

.hero--clinicas-dashboard .hero-text h1 span {
  color: #0757d9;
}

.hero--clinicas-dashboard .hero-text p {
  max-width: 500px;
  margin-bottom: 26px;
  color: #4f5f78;
  font-size: 18px;
  line-height: 1.58;
}

.hero--clinicas-dashboard .hero-buttons {
  margin-bottom: 16px;
}

.hero--clinicas-dashboard .hero-buttons .btn {
  min-height: 56px;
  border-radius: 13px;
}

.hero--clinicas-dashboard .hero-buttons .btn-secondary {
  border-color: rgba(0, 82, 204, 0.3);
  background: rgba(255, 255, 255, 0.94);
}

.hero--clinicas-dashboard .hero-subtext {
  color: #596a82;
}

.hero--clinicas-dashboard .hero-video-link {
  margin-top: 16px;
}

.hero--clinicas-dashboard .hero-image {
  min-height: 482px;
  align-items: center;
  justify-content: flex-end;
}

.hero--clinicas-dashboard .hero-dashboard-wrap {
  position: relative;
  width: min(104%, 750px);
  min-height: 494px;
  isolation: isolate;
  perspective: 1650px;
  transform-style: preserve-3d;
  transform: translateX(34px);
}

.hero--clinicas-dashboard .hero-dashboard-wrap::before {
  content: '';
  position: absolute;
  inset: -16% -7% -8% 3%;
  z-index: -2;
  border-radius: 48%;
  background:
    radial-gradient(circle at 54% 40%, rgba(0, 82, 204, 0.22), transparent 44%),
    radial-gradient(circle at 83% 78%, rgba(69, 196, 224, 0.16), transparent 34%);
  filter: blur(26px);
  transform: translate3d(18px, 14px, -80px);
}

.hero--clinicas-dashboard .hero-dashboard-wrap::after {
  content: '';
  position: absolute;
  left: 14%;
  right: -10%;
  bottom: -12%;
  z-index: 1;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 24%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(135deg, rgba(220, 239, 255, 0.36), rgba(0, 82, 204, 0.42));
  filter: blur(0.2px);
  opacity: 0.6;
  transform: rotate(3deg);
  pointer-events: none;
}

.hero--clinicas-dashboard .hero-dashboard-shell {
  position: relative;
  display: block;
  width: 100%;
  z-index: 2;
  min-height: 0;
  padding: 8px;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(225, 237, 255, 0.82);
  background: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 38px 76px rgba(29, 84, 176, 0.18),
    0 16px 34px rgba(9, 59, 143, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(0.7deg);
  transform-origin: center right;
  backdrop-filter: blur(14px);
}

.hero--clinicas-dashboard .hero-dashboard-shell::before {
  content: '';
  position: absolute;
  inset: 8px;
  z-index: 2;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.hero--clinicas-dashboard .hero-dashboard-real {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 776;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.hero--clinicas-dashboard .hero-doctor {
  position: absolute;
  right: -48px;
  bottom: -52px;
  z-index: 4;
  width: min(75%, 400px);
  height: auto;
  filter:
    drop-shadow(0 34px 34px rgba(12, 42, 88, 0.15))
    drop-shadow(0 0 34px rgba(0, 82, 204, 0.13));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.82) 82%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.82) 82%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
  transform: translateZ(34px);
  transform-origin: right bottom;
  pointer-events: none;
}

.hero--clinicas-dashboard .hero-float-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  width: min(226px, 34vw);
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(190, 214, 255, 0.62);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 40px rgba(28, 74, 147, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  transform: translateZ(42px);
}

.hero--clinicas-dashboard .hero-float-card__icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0757d9, #0d6cf6);
  color: #fff;
}

.hero--clinicas-dashboard .hero-float-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero--clinicas-dashboard .hero-float-card strong,
.hero--clinicas-dashboard .hero-float-card small {
  display: block;
}

.hero--clinicas-dashboard .hero-float-card strong {
  margin: 1px 0 3px;
  color: #17243d;
  font-size: 13px;
  line-height: 1.22;
}

.hero--clinicas-dashboard .hero-float-card small {
  color: #586b83;
  font-size: 11px;
  line-height: 1.35;
}

.hero--clinicas-dashboard .hero-float-card--agenda {
  right: -2px;
  top: 15%;
}

.hero--clinicas-dashboard .hero-float-card--records {
  right: -16px;
  bottom: 18%;
}

.hero--clinicas-dashboard .hero-float-card--finance {
  left: 10%;
  bottom: 7%;
}

@media (max-width: 1180px) {
  .hero--clinicas-dashboard {
    padding: 44px 0 46px;
  }

  .hero--clinicas-dashboard .hero-content {
    gap: 30px;
  }

  .hero--clinicas-dashboard .hero-text h1 {
    font-size: clamp(40px, 4.1vw, 46px);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero--clinicas-dashboard .hero-text p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.56;
  }

  .hero--clinicas-dashboard .hero-text .badge {
    margin-bottom: 16px;
  }

  .hero--clinicas-dashboard .hero-buttons {
    margin-bottom: 12px;
  }

  .hero--clinicas-dashboard .hero-buttons .btn {
    min-height: 52px;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(106%, 680px);
    min-height: 438px;
    transform: translateX(16px);
  }

  .hero--clinicas-dashboard .hero-dashboard-shell {
    transform: rotateY(-3deg) rotateX(0.5deg);
  }

  .hero--clinicas-dashboard .hero-float-card--finance {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero--clinicas-dashboard {
    min-height: auto;
  }

  .hero--clinicas-dashboard .hero-content {
    grid-template-columns: 1fr;
  }

  .hero--clinicas-dashboard .hero-text,
  .hero--clinicas-dashboard .hero-text h1,
  .hero--clinicas-dashboard .hero-text p {
    max-width: 720px;
  }

  .hero--clinicas-dashboard .hero-image {
    min-height: auto;
    justify-content: center;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 760px);
    min-height: auto;
    transform: none;
  }

  .hero--clinicas-dashboard .hero-dashboard-shell {
    transform: rotateY(-1.5deg) rotateX(0.3deg);
  }

  .hero--clinicas-dashboard .hero-doctor {
    right: -26px;
    bottom: -38px;
    width: min(38%, 252px);
  }

  .hero--clinicas-dashboard .hero-float-card--agenda {
    top: 13%;
  }
}

@media (max-width: 768px) {
  .hero--clinicas-dashboard {
    padding: 42px 0 50px;
    background:
      radial-gradient(circle at 82% 48%, rgba(0, 82, 204, 0.12), transparent 42%),
      #ffffff;
  }

  .hero--clinicas-dashboard .hero-text h1 {
    font-size: clamp(34px, 9.4vw, 40px);
    line-height: 1.08;
  }

  .hero--clinicas-dashboard .hero-text p {
    font-size: 16px;
    line-height: 1.66;
  }

  .hero--clinicas-dashboard .hero-buttons {
    flex-direction: column;
  }

  .hero--clinicas-dashboard .hero-buttons .btn {
    width: 100%;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 620px);
    margin-top: 8px;
    transform: none;
  }

  .hero--clinicas-dashboard .hero-dashboard-shell {
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }

  .hero--clinicas-dashboard .hero-dashboard-shell::before {
    inset: 7px;
    border-radius: 16px;
  }

  .hero--clinicas-dashboard .hero-dashboard-real {
    border-radius: 16px;
  }

  .hero--clinicas-dashboard .hero-doctor {
    right: -18px;
    bottom: -16px;
    width: min(77%, 300px);
  }

  .hero--clinicas-dashboard .hero-float-card {
    width: min(206px, 58vw);
    padding: 11px 12px;
    transform: none;
  }

  .hero--clinicas-dashboard .hero-float-card--agenda {
    right: 52px;
    top: auto;
    bottom: 10px;
  }

  .hero--clinicas-dashboard .hero-float-card--records,
  .hero--clinicas-dashboard .hero-float-card--finance {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero--clinicas-dashboard .hero-text .badge {
    font-size: 12px;
  }

  .hero--clinicas-dashboard .hero-dashboard-shell {
    padding: 6px;
    border-radius: 19px;
  }

  .hero--clinicas-dashboard .hero-dashboard-real {
    border-radius: 14px;
  }

  .hero--clinicas-dashboard .hero-doctor {
    display: block;
    right: -18px;
    bottom: -14px;
    width: min(38%, 138px);
  }

  .hero--clinicas-dashboard .hero-float-card {
    width: min(190px, 68vw);
  }

  .hero--clinicas-dashboard .hero-float-card--agenda {
    right: 48px;
  }
}

.hero-real-card figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0757d9;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
}

.feature-video-card--real {
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 187, 255, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(3, 34, 92, 0.96), rgba(6, 76, 182, 0.92));
}

.feature-video-card--real::before {
  inset: 12px;
}

.feature-video-card--real::after {
  opacity: 0.36;
}

.segment-video,
.video-fallback-image,
.video-fallback-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.segment-video {
  display: block;
  position: relative;
  z-index: 2;
  object-fit: cover;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 44px rgba(0, 16, 54, 0.24);
}

.video-fallback-image {
  position: absolute;
  inset: 12px;
  z-index: 1;
  overflow: hidden;
}

.video-fallback-image img {
  display: block;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.04) contrast(0.96);
}

.showcase-visual--image {
  min-height: 226px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.showcase-visual--image::before {
  opacity: 0.18;
}

.showcase-visual--image > :not(.product-asset-img) {
  display: none !important;
}

.product-asset-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  max-height: 236px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 1px solid rgba(200, 216, 241, 0.95);
  box-shadow: 0 18px 38px rgba(35, 82, 140, 0.12);
}

.phone-frame--real {
  width: 300px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.phone-frame--real::before {
  display: none;
}

.phone-real-img {
  display: block;
  width: 200%;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(15, 23, 42, 0.18));
}

.phone-frame--real .phone-screen {
  display: none;
}

.cta-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.cta-final__support-image {
  position: absolute;
  right: clamp(18px, 5vw, 58px);
  bottom: clamp(18px, 4vw, 46px);
  width: clamp(128px, 15vw, 190px);
  margin: 0;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 46px rgba(4, 35, 98, 0.18);
  opacity: 0.62;
  transform: rotate(3deg);
}

.cta-final__support-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .hero-real-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.56fr) minmax(330px, 0.44fr);
    gap: 30px;
  }

  .hero-text h1 {
    font-size: clamp(38px, 4.2vw, 44px);
  }

  .hero-real-card {
    width: min(100%, 430px);
  }

  .hero-real-image {
    aspect-ratio: 1.16 / 1;
  }

  .phone-frame--real {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 28px;
    max-width: 132px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-real-card {
    width: min(100%, 380px);
    padding: 10px;
    border-radius: 26px;
  }

  .hero-real-image {
    aspect-ratio: 1 / 0.78;
    border-radius: 20px;
  }

  .hero-real-card figcaption {
    left: 20px;
    bottom: 20px;
  }

  .feature-video-card--real {
    padding: 10px;
  }

  .segment-video,
  .video-fallback-image,
  .video-fallback-image img {
    border-radius: 16px;
  }

  .video-fallback-image {
    inset: 10px;
  }

  .showcase-visual--image {
    min-height: 212px;
    padding: 14px;
  }

  .product-asset-img {
    min-height: 178px;
    max-height: 218px;
    border-radius: 18px;
  }

  .phone-frame--real {
    width: min(100%, 280px);
  }

  .phone-real-img {
    width: 128%;
  }

  .cta-final__support-image {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand-logo-img {
    height: 26px;
    max-width: 120px;
  }

  .hero-real-card {
    width: 100%;
  }

  .hero-real-image {
    aspect-ratio: 1 / 0.74;
  }

  .hero-real-image--saloes {
    object-position: 50% 60%;
  }
}

/* ============================================
   REFINO FINAL: SECAO DE PLANOS
   ============================================ */

.plans-section {
  padding-top: clamp(100px, 8vw, 118px);
  padding-bottom: clamp(100px, 8vw, 118px);
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 82, 204, 0.08), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(86, 154, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 56%, #ffffff 100%);
}

.plans-section .plans-intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.plans-section .plans-intro h2 {
  font-size: clamp(40px, 4.2vw, 52px);
}

.plans-section .plans-intro p {
  font-size: 17px;
  line-height: 1.65;
}

.plans-section .plans-content {
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(56px, 5vw, 72px);
  align-items: start;
}

.plans-section .plan-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 82, 204, 0.14);
  box-shadow: 0 22px 58px rgba(29, 78, 137, 0.12);
}

.plans-section .plan-header {
  text-align: center;
  align-items: center;
  padding: 30px 28px 38px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0757d9 0%, #004fc7 62%, #0645ad 100%);
}

.plans-section .plan-brand-logo {
  display: block;
  width: 300px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.plans-section .plan-title {
  margin-bottom: 6px;
  font-size: 27px;
  line-height: 1.1;
  text-align: center;
}

.plans-section .plan-header p {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.plans-section .plan-wave {
  height: 30px;
  margin-top: -24px;
}

.plans-section .plan-price-area {
  padding: 4px 28px 10px;
  text-align: center;
}

.plans-section .plan-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--color-primary);
  font-size: clamp(46px, 4.2vw, 54px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.plans-section .plan-price span:first-child {
  align-self: flex-start;
  padding-top: 7px;
  font-size: 20px;
  line-height: 1;
  vertical-align: baseline;
}

.plans-section .plan-price span:last-child {
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
}

.plans-section .plan-price-complement {
  margin-top: 6px;
  color: #66758c;
  font-size: 14px;
}

.plans-section .plan-description {
  margin: 0 28px 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  color: #66758c;
  font-size: 13px;
  line-height: 1.42;
}

.plans-section .plan-features {
  margin: 0 28px 16px;
}

.plans-section .plan-features li {
  gap: 8px;
  padding: 3.5px 0;
  color: #1f2937;
  font-size: 12.5px;
  line-height: 1.25;
}

.plans-section .plan-features li::before {
  width: 18px;
  height: 18px;
  font-size: 11px;
}

.plans-section .plan-feature-highlight {
  margin: 5px -7px;
  padding: 8px 8px !important;
  border-radius: 13px;
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(0, 82, 204, 0.08);
}

.plans-section .plan-card > .btn {
  width: calc(100% - 56px);
  min-height: 48px;
  margin: auto 28px 0;
  padding: 0 18px !important;
  border-radius: 12px;
  font-size: 14px;
}

.plans-section .plan-trial-note {
  margin: 8px 28px 22px;
  color: #66758c;
  font-size: 13px;
}

.plans-section .modular-section {
  padding-top: 4px;
}

.plans-section .modular-section::before {
  right: 0;
  top: -18px;
  width: 170px;
  height: 170px;
  opacity: 0.72;
}

.plans-section .modular-section h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(32px, 3.1vw, 40px);
}

.plans-section .modular-section > p {
  max-width: 620px;
  margin-bottom: 24px;
  color: #66758c;
  font-size: 16.5px;
  line-height: 1.66;
}

.plans-section .user-type-cards {
  gap: 13px;
  margin-bottom: 18px;
}

.plans-section .user-type-card {
  grid-template-columns: auto minmax(0, 1fr) max-content;
  column-gap: 28px;
  row-gap: 8px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(211, 224, 245, 0.92);
  box-shadow: 0 12px 30px rgba(29, 78, 137, 0.07);
}

.plans-section .user-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.plans-section .user-type-icon::before {
  left: 15px;
  top: 11px;
}

.plans-section .user-type-icon::after {
  left: 11px;
  bottom: 9px;
}

.plans-section .user-type-card h4 {
  margin-bottom: 3px;
  font-size: 16px;
}

.plans-section .user-type-card p {
  font-size: 13.5px;
  line-height: 1.35;
}

.plans-section .user-type-card strong {
  justify-self: end;
  max-width: none;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.plans-section .user-type-card .free-label {
  color: #047857;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.plans-section .trial-info-box {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: #eef6ff;
  border-color: rgba(0, 82, 204, 0.14);
}

.plans-section .trial-info-box span {
  width: 40px;
  height: 40px;
}

.plans-section .trial-info-box p {
  color: #164074;
  font-size: 14.5px;
  line-height: 1.5;
}

.plans-section .modular-visual {
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  padding: 16px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.plans-section .modular-visual::before {
  display: none;
}

.plans-section .modular-visual div {
  min-height: 52px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(29, 78, 137, 0.06);
}

.plans-section .modular-section > .btn {
  min-height: 52px;
  border-radius: 12px;
}

.plans-section .modular-note {
  margin-top: 10px;
}

@media (min-width: 841px) {
  .plans-section .plan-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
  }

  .plans-section .plan-feature-highlight {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .plans-section .plans-content {
    grid-template-columns: minmax(330px, 0.44fr) minmax(0, 0.56fr);
    gap: 36px;
  }

  .plans-section .user-type-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .plans-section .user-type-card strong {
    grid-column: 2;
    text-align: left;
    justify-self: start;
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 840px) {
  .plans-section .plans-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .plans-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .plans-section .plans-intro {
    margin-bottom: 34px;
  }

  .plans-section .plans-intro h2 {
    font-size: clamp(32px, 9vw, 39px);
  }

  .plans-section .plans-intro p,
  .plans-section .modular-section > p {
    font-size: 16px;
  }

  .plans-section .plan-card {
    border-radius: 26px;
  }

  .plans-section .plan-brand-logo {
    width: 220px;
    max-width: 84%;
  }

  .plans-section .plan-price {
    font-size: clamp(46px, 13vw, 54px);
  }

  .plans-section .plan-price span:first-child {
    font-size: 20px;
  }

  .plans-section .plan-price span:last-child {
    font-size: 19px;
  }

  .plans-section .modular-section::before {
    display: none;
  }

  .plans-section .user-type-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .plans-section .user-type-card strong {
    grid-column: 2;
    text-align: left;
    justify-self: start;
    max-width: none;
    white-space: normal;
  }

  .plans-section .modular-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-section .modular-section > .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .plans-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .plans-section .plan-header,
  .plans-section .plan-price-area {
    padding-left: 24px;
    padding-right: 24px;
  }

  .plans-section .plan-description,
  .plans-section .plan-features,
  .plans-section .plan-trial-note {
    margin-left: 24px;
    margin-right: 24px;
  }

  .plans-section .plan-card > .btn {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }

  .plans-section .user-type-card,
  .plans-section .trial-info-box {
    grid-template-columns: 1fr;
  }

  .plans-section .user-type-card strong {
    grid-column: auto;
    white-space: normal;
  }
}

/* Section blue: premium vertical video stage */
.section-blue {
  position: relative;
  padding: clamp(64px, 7vw, 92px) var(--container-padding);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(38, 197, 255, 0.24) 0%, transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(103, 83, 255, 0.28) 0%, transparent 42%),
    linear-gradient(135deg, #0634d7 0%, #0755dc 52%, #06a7e7 100%);
}

.section-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.23) 1px, transparent 1px),
    linear-gradient(126deg, transparent 0 57%, rgba(255, 255, 255, 0.1) 57.2%, transparent 57.8%),
    linear-gradient(142deg, transparent 0 71%, rgba(255, 255, 255, 0.09) 71.2%, transparent 71.8%);
  background-size: 25px 25px, auto, auto;
  opacity: 0.22;
  pointer-events: none;
}

.section-blue > .container {
  position: relative;
  z-index: 1;
}

.section-blue .blue-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
  gap: clamp(48px, 5vw, 64px);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(52px, 4.8vw, 64px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(209, 232, 255, 0.18);
  background:
    radial-gradient(circle at 16% 14%, rgba(59, 210, 255, 0.2), transparent 33%),
    radial-gradient(circle at 78% 76%, rgba(111, 82, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(5, 45, 190, 0.9), rgba(4, 89, 220, 0.82) 54%, rgba(7, 158, 228, 0.9));
  box-shadow:
    0 34px 82px rgba(2, 35, 110, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.section-blue .blue-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    radial-gradient(circle at 70% 48%, rgba(255, 255, 255, 0.14), transparent 30%);
  background-size: 24px 24px, auto;
  opacity: 0.18;
  pointer-events: none;
}

.section-blue .blue-content::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.section-blue .blue-text,
.section-blue .video-placeholder {
  position: relative;
  z-index: 1;
}

.section-blue .blue-text {
  order: 1;
}

.section-blue .video-placeholder {
  order: 2;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.section-blue .blue-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 28px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.section-blue .blue-label::before {
  content: '';
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 10.3 8.4 13.2 14.8 6.8' fill='none' stroke='%230634D7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px 15px no-repeat,
    #e9f4ff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.11);
}

.section-blue .blue-text h2 {
  max-width: 500px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(42px, 3.7vw, 48px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-blue .blue-text h2 span {
  color: #48e7ff;
}

.section-blue .blue-benefits {
  display: grid;
  gap: 24px;
  max-width: 530px;
  margin: 0 0 34px;
}

.section-blue .blue-benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.section-blue .blue-benefit__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 14px 30px rgba(0, 30, 110, 0.16);
}

.section-blue .blue-benefit__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-blue .blue-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.58;
}

.section-blue .blue-btn {
  min-width: 268px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  background: #fff;
  color: #063fdb;
  font-size: 18px;
  font-weight: 750;
  box-shadow: 0 18px 36px rgba(0, 28, 94, 0.2);
}

.section-blue .blue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 28, 94, 0.25);
}

.section-blue__media-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 660px);
  min-height: 610px;
  padding: 34px;
  overflow: visible;
  border: 1px solid rgba(210, 234, 255, 0.22);
  border-radius: 32px;
  overflow: visible;
  background:
    radial-gradient(circle at 52% 44%, rgba(76, 205, 255, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(3, 23, 89, 0.72), rgba(3, 82, 198, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 68px rgba(0, 22, 86, 0.22);
}

.section-blue__media-stage::before,
.section-blue__media-stage::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.section-blue__media-stage::before {
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
}

.section-blue__media-stage::after {
  left: 10%;
  right: 10%;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.section-blue__backdrop {
  position: absolute;
  inset: 48px 26px;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0.42;
  filter: blur(2.5px);
  transform: rotateY(-5deg) rotateZ(-0.8deg);
}

.section-blue__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(2, 25, 105, 0.7), rgba(3, 74, 191, 0.42), rgba(2, 22, 92, 0.74));
}

.section-blue__backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.section-blue .feature-video-card--real-video {
  position: relative;
  z-index: 2;
  width: clamp(270px, 25vw, 320px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 10px;
  overflow: visible;
  border: 1px solid rgba(230, 243, 255, 0.42);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(87, 202, 255, 0.24), transparent 44%),
    linear-gradient(180deg, #06256f 0%, #03184d 100%);
  box-shadow:
    0 30px 70px rgba(0, 20, 82, 0.32),
    0 0 0 8px rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: none;
}

.section-blue .feature-video-card--real-video::before,
.section-blue .feature-video-card--real-video::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  pointer-events: none;
}

.section-blue .feature-video-card--real-video::before {
  z-index: 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 35%);
}

.section-blue .feature-video-card--real-video::after {
  z-index: 1;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.14), transparent 42%);
}

.section-blue .section-blue__poster {
  position: absolute;
  inset: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.14), transparent 43%),
    linear-gradient(180deg, #082a7d, #04184c);
  transition: opacity var(--transition-base);
}

.section-blue .section-blue__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 54, 170, 0.3), rgba(3, 19, 63, 0.34)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(4, 18, 70, 0.34) 70%);
  pointer-events: none;
}

.section-blue .section-blue__poster img {
  position: relative;
  z-index: 1;
  display: block;
  width: 94%;
  height: auto;
  max-height: 78%;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 18px 44px rgba(0, 16, 54, 0.24);
}

.section-blue .section-blue__video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #03194f;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.section-blue .feature-video-card--real-video.has-video .section-blue__video {
  opacity: 1;
  pointer-events: auto;
}

.section-blue .feature-video-card--real-video.has-video .section-blue__poster {
  opacity: 0;
  pointer-events: none;
}

.section-blue .section-blue__video-overlay {
  position: absolute;
  inset: 10px;
  z-index: 4;
  border-radius: 24px;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.13), transparent 30%);
  pointer-events: none;
}

.section-blue .section-blue__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0757d9;
  box-shadow:
    0 18px 42px rgba(0, 22, 86, 0.26),
    0 0 0 9px rgba(255, 255, 255, 0.13);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.section-blue .section-blue__play:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.section-blue .section-blue__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid currentColor;
}

.section-blue .feature-video-card--real-video.is-playing .section-blue__play {
  opacity: 0;
  pointer-events: none;
}

.section-blue .section-video-card {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 224px;
  padding: 12px 13px;
  border: 1px solid rgba(203, 226, 255, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 24, 90, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.section-blue .section-video-card--top {
  left: -88px;
  top: 13%;
}

.section-blue .section-video-card--bottom {
  right: -92px;
  bottom: 14%;
}

.section-blue .section-video-card__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #0757d9, #0d75ff);
}

.section-blue .section-video-card__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-blue .section-video-card strong,
.section-blue .section-video-card span {
  display: block;
  line-height: 1.28;
}

.section-blue .section-video-card strong {
  color: #122347;
  font-size: 12px;
  font-weight: 800;
}

.section-blue .section-video-card span {
  margin-top: 3px;
  color: #60708b;
  font-size: 10px;
  font-weight: 600;
}

.section-blue .section-blue__caption {
  position: absolute;
  left: 50%;
  bottom: -42px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 8px 20px rgba(0, 25, 82, 0.26);
  transform: translateX(-50%);
}

.section-blue .section-blue__caption::before,
.section-blue .section-blue__caption::after {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56));
}

.section-blue .section-blue__caption::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.56), transparent);
}

@media (max-width: 1120px) {
  .section-blue .blue-content {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 44px;
    padding: 46px;
  }

  .section-blue__media-stage {
    min-height: 560px;
    padding: 28px;
  }

  .section-blue .feature-video-card--real-video {
    width: clamp(260px, 28vw, 300px);
  }

  .section-blue .section-video-card {
    width: 206px;
  }

  .section-blue .section-video-card--top {
    left: -44px;
  }

  .section-blue .section-video-card--bottom {
    right: -48px;
  }
}

@media (max-width: 840px) {
  .section-blue {
    padding: 56px var(--container-padding-mobile);
  }

  .section-blue .blue-content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 36px 28px 44px;
    border-radius: 30px;
  }

  .section-blue .blue-text,
  .section-blue .video-placeholder {
    order: initial;
  }

  .section-blue .blue-text h2,
  .section-blue .blue-benefits {
    max-width: 660px;
  }

  .section-blue__media-stage {
    width: 100%;
    min-height: 540px;
    padding: 28px 18px 38px;
  }

  .section-blue__backdrop {
    inset: 42px 18px;
    opacity: 0.28;
  }

  .section-blue .feature-video-card--real-video {
    width: min(100%, 300px);
  }

  .section-blue .section-video-card--top {
    left: calc(50% - 180px);
    top: 12%;
  }

  .section-blue .section-video-card--bottom {
    right: calc(50% - 184px);
    bottom: 12%;
  }
}

@media (max-width: 560px) {
  .section-blue {
    padding: 48px 14px;
  }

  .section-blue .blue-content {
    padding: 30px 22px 40px;
    gap: 34px;
    border-radius: 26px;
  }

  .section-blue .blue-label {
    max-width: 100%;
    min-height: 36px;
    padding: 8px 13px;
    font-size: 12px;
    line-height: 1.25;
  }

  .section-blue .blue-text h2 {
    font-size: clamp(31px, 8vw, 36px);
    line-height: 1.12;
  }

  .section-blue .blue-benefits {
    gap: 20px;
  }

  .section-blue .blue-benefit {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .section-blue .blue-benefit__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .section-blue .blue-benefit__icon svg {
    width: 24px;
    height: 24px;
  }

  .section-blue .blue-benefit p {
    font-size: 15px;
    line-height: 1.56;
  }

  .section-blue .blue-btn {
    width: 100%;
    min-width: 0;
  }

  .section-blue__media-stage {
    min-height: 500px;
    padding: 26px 14px 36px;
    border-radius: 24px;
  }

  .section-blue__media-stage::before {
    inset: 12px;
    border-radius: 19px;
  }

  .section-blue__backdrop {
    inset: 34px 10px;
    opacity: 0.2;
    filter: blur(3px);
  }

  .section-blue .feature-video-card--real-video {
    width: min(100%, 282px);
    padding: 8px;
    border-radius: 28px;
  }

  .section-blue .feature-video-card--real-video::before,
  .section-blue .feature-video-card--real-video::after,
  .section-blue .section-blue__poster,
  .section-blue .section-blue__video-overlay {
    inset: 8px;
    border-radius: 22px;
  }

  .section-blue .section-blue__video {
    border-radius: 22px;
  }

  .section-blue .section-blue__play {
    width: 64px;
    height: 64px;
  }

  .section-blue .section-video-card {
    width: min(214px, 78%);
    padding: 10px 11px;
  }

  .section-blue .section-video-card--top {
    left: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(-50%);
  }

  .section-blue .section-video-card--bottom {
    display: none;
  }

  .section-blue .section-blue__caption {
    display: none;
  }
}

/* Section blue refinement: smartphone mockup composition */
.section-blue .blue-content {
  position: relative;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  max-width: 1280px;
  min-height: 680px;
  padding: clamp(54px, 5vw, 70px);
  background:
    radial-gradient(circle at 18% 12%, rgba(64, 218, 255, 0.18), transparent 33%),
    radial-gradient(circle at 70% 86%, rgba(123, 89, 255, 0.32), transparent 36%),
    linear-gradient(135deg, #0630cf 0%, #0751dc 54%, #079ee8 100%);
}

.section-blue .blue-text h2 {
  max-width: 570px;
  font-size: clamp(42px, 3.8vw, 54px);
  line-height: 1.12;
}

.section-blue .blue-benefits {
  max-width: 610px;
  gap: 28px;
}

.section-blue .blue-benefit {
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
}

.section-blue .blue-benefit p {
  font-size: 19px;
}

.section-blue .blue-btn {
  min-width: 290px;
  min-height: 62px;
  margin-top: 2px;
  border-radius: 9px;
  font-size: 19px;
}

.section-blue__media-stage {
  width: min(100%, 690px);
  min-height: 640px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-blue__media-stage::before {
  inset: 4% -2% 2% 6%;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 34px;
}

.section-blue__media-stage::after {
  left: 4%;
  right: 2%;
  bottom: 5%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-blue__backdrop {
  inset: 72px 8px 58px 40px;
  z-index: 0;
  border-radius: 34px;
  opacity: 0.25;
  filter: blur(5px);
  transform: perspective(1100px) rotateY(-7deg) rotateZ(-0.6deg);
}

.feature-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  min-height: 640px;
  display: grid;
  place-items: center;
}

.feature-phone::before {
  content: '';
  position: absolute;
  left: 51%;
  bottom: 20px;
  width: 320px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 16, 72, 0.28);
  filter: blur(20px);
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-phone-frame {
  position: relative;
  width: clamp(310px, 26.5vw, 350px);
  aspect-ratio: 9 / 18.8;
  padding: 14px;
  border-radius: 48px;
  background:
    linear-gradient(105deg, #07080d 0%, #3b3d45 17%, #f4f6fb 22%, #14161d 30%, #03050a 100%);
  box-shadow:
    0 38px 78px rgba(0, 16, 72, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.38),
    inset 0 0 0 2px rgba(255, 255, 255, 0.24),
    inset -10px 0 18px rgba(255, 255, 255, 0.18);
}

.feature-phone-frame::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 43px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.feature-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #f7faff;
  box-shadow:
    inset 0 0 0 1px rgba(4, 16, 54, 0.18),
    inset 0 12px 28px rgba(255, 255, 255, 0.45);
}

.feature-phone-screen::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 8;
  width: 104px;
  height: 31px;
  border-radius: 999px;
  background: #05070c;
  box-shadow: inset -15px 0 0 rgba(26, 32, 48, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-phone-screen::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 23px;
  z-index: 9;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a4bc8;
  box-shadow: 27px 0 0 #111827;
  transform: translateX(31px);
  pointer-events: none;
}

.feature-phone-status {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 18px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #061447;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.feature-phone-status span:last-child {
  width: 48px;
  height: 12px;
  background:
    linear-gradient(90deg, #061447 0 4px, transparent 4px 8px, #061447 8px 14px, transparent 14px 18px, #061447 18px 26px, transparent 26px),
    linear-gradient(#061447, #061447) right 1px top 2px / 20px 8px no-repeat;
  opacity: 0.85;
}

.feature-phone-button {
  position: absolute;
  z-index: 1;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c5cad3, #565b66 45%, #11151d);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.feature-phone-button--power {
  right: -5px;
  top: 27%;
  height: 92px;
}

.feature-phone-button--volume {
  left: -5px;
  top: 22%;
  height: 116px;
}

.feature-phone .section-blue__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(221, 236, 255, 0.9), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
  opacity: 1;
}

.feature-phone .section-blue__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 50% 42%, transparent 0 34%, rgba(5, 35, 135, 0.08) 75%);
  pointer-events: none;
}

.feature-phone .section-blue__poster img {
  display: none;
}

.feature-phone-app {
  position: absolute;
  inset: 58px 18px 18px;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 12px;
  color: #08143f;
  font-size: 11px;
}

.feature-phone-app__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-phone-app__brand strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0757d9;
  font-size: 18px;
  font-weight: 850;
}

.feature-phone-app__brand strong::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0c6dff, #0748cf);
  box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.18);
}

.feature-phone-app__brand span {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 50%, #ff365d 0 4px, transparent 5px),
    linear-gradient(90deg, #e8efff, #f7faff);
}

.feature-phone-app__title {
  font-size: 17px;
  font-weight: 850;
}

.feature-phone-app__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.feature-phone-app__stats span,
.feature-phone-app__schedule,
.feature-phone-app__chart,
.feature-phone-app__panel,
.feature-phone-app__table {
  border: 1px solid rgba(13, 69, 180, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(17, 55, 128, 0.08);
}

.feature-phone-app__stats span {
  display: grid;
  gap: 3px;
  min-height: 64px;
  padding: 10px 8px;
  color: #51617f;
  font-size: 8px;
  font-weight: 700;
}

.feature-phone-app__stats strong {
  color: #071447;
  font-size: 17px;
  font-weight: 850;
}

.feature-phone-app__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 9px;
}

.feature-phone-app__schedule,
.feature-phone-app__chart {
  min-height: 180px;
  padding: 12px 10px;
}

.feature-phone-app__schedule {
  display: grid;
  align-content: start;
  gap: 12px;
}

.feature-phone-app__schedule strong,
.feature-phone-app__chart strong,
.feature-phone-app__panel strong,
.feature-phone-app__table strong {
  font-size: 11px;
  font-weight: 850;
}

.feature-phone-app__schedule span {
  position: relative;
  padding-left: 12px;
  color: #32405f;
  font-size: 9px;
  font-weight: 700;
}

.feature-phone-app__schedule span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0d73ff;
}

.feature-phone-app__chart span {
  display: block;
  height: 112px;
  margin-top: 18px;
  border-radius: 10px;
  background:
    linear-gradient(140deg, transparent 0 13%, #0e63ff 13.5% 15%, transparent 15.5% 28%, #0e63ff 28.5% 30%, transparent 30.5% 44%, #0e63ff 44.5% 46%, transparent 46.5% 60%, #0e63ff 60.5% 62%, transparent 62.5%),
    linear-gradient(180deg, rgba(10, 103, 255, 0.1), transparent),
    repeating-linear-gradient(180deg, transparent 0 27px, rgba(11, 54, 140, 0.08) 28px);
}

.feature-phone-app__panel,
.feature-phone-app__table {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.feature-phone-app__panel {
  min-height: 76px;
}

.feature-phone-app__panel span {
  color: #31415f;
  font-size: 10px;
  font-weight: 750;
}

.feature-phone-app__table {
  align-content: start;
  min-height: 116px;
}

.feature-phone-app__table span {
  display: flex;
  justify-content: space-between;
  padding-top: 7px;
  border-top: 1px solid rgba(16, 62, 150, 0.08);
  color: #31415f;
  font-size: 9px;
  font-weight: 700;
}

.feature-phone-app__table span::after {
  content: 'Ativo';
  color: #0a9f5a;
}

.feature-phone .section-blue__video {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #061447;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
}

.feature-phone.has-video .section-blue__video {
  opacity: 1;
  pointer-events: auto;
}

.feature-phone.has-video .section-blue__poster {
  opacity: 0;
  pointer-events: none;
}

.feature-phone .section-blue__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(270deg, rgba(0, 22, 90, 0.08), transparent 28%);
  pointer-events: none;
}

.feature-phone .section-blue__play {
  width: 76px;
  height: 76px;
  z-index: 10;
  box-shadow:
    0 20px 44px rgba(0, 24, 86, 0.2),
    0 0 0 10px rgba(255, 255, 255, 0.18);
}

.feature-phone.is-playing .section-blue__play {
  opacity: 0;
  pointer-events: none;
}

.section-blue .feature-phone .section-video-card {
  width: 226px;
  min-height: 76px;
  padding: 13px 14px;
  border-radius: 18px;
  box-shadow:
    0 18px 42px rgba(0, 20, 90, 0.22),
    0 0 0 5px rgba(255, 255, 255, 0.12);
}

.section-blue .feature-phone .section-video-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.section-blue .feature-phone .section-video-card strong {
  font-size: 13px;
}

.section-blue .feature-phone .section-video-card span {
  font-size: 10.5px;
}

.section-blue .section-video-card--confirm {
  left: 4px;
  top: 105px;
}

.section-blue .section-video-card--agenda {
  right: -18px;
  top: 225px;
}

.section-blue .section-video-card--finance {
  left: 28px;
  bottom: 142px;
}

.section-blue .section-video-card--tasks {
  right: -2px;
  bottom: 112px;
}

@media (max-width: 1180px) {
  .section-blue .blue-content {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    min-height: 660px;
    padding: 48px;
  }

  .section-blue .blue-text h2 {
    font-size: clamp(40px, 4vw, 50px);
  }

  .section-blue .blue-benefit p {
    font-size: 17px;
  }

  .section-blue__media-stage,
  .feature-phone {
    min-height: 620px;
  }

  .feature-phone-frame {
    width: clamp(292px, 32vw, 352px);
  }

  .section-blue .feature-phone .section-video-card {
    width: 206px;
  }

  .section-blue .section-video-card--confirm {
    left: -6px;
    top: 92px;
  }

  .section-blue .section-video-card--agenda {
    right: -8px;
    top: 210px;
  }

  .section-blue .section-video-card--finance {
    left: 0;
    bottom: 132px;
  }

  .section-blue .section-video-card--tasks {
    right: -4px;
    bottom: 98px;
  }
}

@media (max-width: 920px) {
  .section-blue .blue-content {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 42px;
  }

  .section-blue__media-stage,
  .feature-phone {
    width: 100%;
    min-height: 640px;
  }

  .feature-phone-frame {
    width: min(76vw, 360px);
  }

  .section-blue .section-video-card--confirm {
    left: calc(50% - 296px);
  }

  .section-blue .section-video-card--agenda {
    right: calc(50% - 302px);
  }

  .section-blue .section-video-card--finance {
    left: calc(50% - 298px);
  }

  .section-blue .section-video-card--tasks {
    right: calc(50% - 300px);
  }
}

@media (max-width: 640px) {
  .section-blue .blue-content {
    padding: 30px 22px 38px;
  }

  .section-blue .blue-text h2 {
    font-size: clamp(31px, 8.8vw, 40px);
  }

  .section-blue__media-stage,
  .feature-phone {
    min-height: 560px;
  }

  .feature-phone-frame {
    width: min(82vw, 300px);
    padding: 11px;
    border-radius: 42px;
  }

  .feature-phone-frame::before {
    border-radius: 37px;
  }

  .feature-phone-screen {
    border-radius: 31px;
  }

  .feature-phone-screen::before {
    width: 86px;
    height: 27px;
    top: 12px;
  }

  .feature-phone-status {
    left: 22px;
    right: 22px;
    top: 17px;
    font-size: 11px;
  }

  .feature-phone .section-blue__play {
    width: 66px;
    height: 66px;
  }

  .section-blue .feature-phone .section-video-card {
    width: min(214px, 78%);
    min-height: 68px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 11px;
  }

  .section-blue .feature-phone .section-video-card__icon {
    width: 34px;
    height: 34px;
  }

  .section-blue .feature-phone .section-video-card strong {
    font-size: 12px;
  }

  .section-blue .feature-phone .section-video-card span {
    font-size: 10px;
  }

  .section-blue .section-video-card--confirm {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
  }

  .section-blue .section-video-card--tasks {
    right: auto;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
  }

  .section-blue .section-video-card--agenda,
  .section-blue .section-video-card--finance {
    display: none;
  }
}

/***************************************************************************************/

/* CTA final premium - Clinicas */
.cta-final {
  background: transparent;
  padding: clamp(46px, 5.4vw, 72px) 0;
  overflow: hidden;
}

.cta-final::before,
.cta-final::after,
.cta-final .container::before,
.cta-final .container::after {
  content: none;
}

.cta-final .container {
  background: transparent;
  box-shadow: none;
}

.cta-final-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(42px, 4.4vw, 56px) clamp(40px, 5vw, 60px) clamp(54px, 5.2vw, 68px);
  overflow: hidden;
  border-radius: 28px;
  color: var(--color-white);
  text-align: center;
  background-color: transparent;
  background-image: url("../images/backgrounds/cta2.png");
  background-size: auto 132%;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: none;
}

.cta-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 35, 150, 0.08), rgba(3, 35, 150, 0.16)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 28%);
}

.cta-specialists {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 24px;
  margin-bottom: 16px;
}

.cta-specialists img {
  display: block;
  width: clamp(62px, 5vw, 72px);
  height: clamp(62px, 5vw, 72px);
  margin-left: -24px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 16px 34px rgba(3, 26, 87, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}

.cta-final-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 8px 18px;
  border: 1px solid rgba(94, 218, 255, 0.48);
  border-radius: var(--radius-full);
  background: rgba(80, 187, 255, 0.22);
  box-shadow:
    inset 0 0 18px rgba(97, 216, 255, 0.22),
    0 0 22px rgba(54, 194, 255, 0.2);
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.cta-final .cta-final-card h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--color-white);
  font-size: clamp(36px, 3.25vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-final .cta-final-card p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.55;
}

.cta-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-final .cta-final-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 238px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.cta-final-primary {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: var(--color-white);
  color: #0757d9;
  box-shadow:
    0 18px 34px rgba(0, 29, 118, 0.22),
    0 0 28px rgba(56, 205, 255, 0.22);
}

.cta-final-secondary {
  border: 1px solid rgba(126, 207, 255, 0.42);
  background: rgba(3, 35, 150, 0.18);
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cta-final-primary:hover,
.cta-final-secondary:hover {
  transform: translateY(-2px);
}

.cta-final-primary:hover {
  background: #f8fbff;
  box-shadow:
    0 22px 40px rgba(0, 29, 118, 0.26),
    0 0 34px rgba(56, 205, 255, 0.28);
}

.cta-final-secondary:hover {
  border-color: rgba(166, 226, 255, 0.66);
  background: rgba(255, 255, 255, 0.12);
}

.cta-btn-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.cta-btn-icon svg,
.cta-final-trust svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-btn-arrow {
  font-size: 24px;
  line-height: 1;
}

.cta-final-trust {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.cta-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  min-height: 26px;
}

.cta-final-trust span + span {
  border-left: 1px solid rgba(126, 207, 255, 0.28);
}

.cta-final-trust svg {
  width: 21px;
  height: 21px;
  color: #42d8ff;
  stroke-width: 2.2;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 54px 0;
  }

  .cta-final-card {
    padding: 46px 24px 56px;
    border-radius: 24px;
    background-position: center 34%;
  }

  .cta-specialists {
    padding-left: 24px;
    margin-bottom: 20px;
  }

  .cta-specialists img {
    width: 64px;
    height: 64px;
    margin-left: -24px;
    border-width: 3px;
  }

  .cta-final-badge {
    max-width: 100%;
    min-height: 34px;
    padding: 8px 15px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .cta-final .cta-final-card h2 {
    font-size: clamp(32px, 8.4vw, 38px);
    line-height: 1.12;
  }

  .cta-final .cta-final-card p {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 30px;
  }

  .cta-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .cta-final .cta-final-actions .btn {
    width: min(100%, 340px);
    min-width: 0;
    min-height: 56px;
    justify-self: center;
    padding: 15px 22px;
    font-size: 16px;
    white-space: normal;
  }

  .cta-final-trust {
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 14px;
  }

  .cta-final-trust span {
    padding: 0;
  }

  .cta-final-trust span + span {
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .cta-final-card {
    padding: 42px 20px 52px;
  }

  .cta-final .cta-final-actions .btn {
    width: 100%;
  }
}

/* Feature showcase: alternating premium product blocks */
.feature-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 0% 18%, rgba(13, 204, 255, 0.075), transparent 30%),
    radial-gradient(circle at 100% 46%, rgba(71, 96, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #f6faff 0%, #edf5ff 48%, #f7fbff 100%);
}

.feature-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/backgrounds/feature-showcase-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.feature-showcase::after {
  content: none;
  position: absolute;
  top: 40px;
  right: max(-140px, calc((100vw - var(--container-max)) / 2 - 190px));
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0, 82, 204, 0.08);
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
}

.feature-showcase .container {
  position: relative;
  z-index: 1;
}

.feature-showcase .showcase-header {
  max-width: 780px;
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.feature-showcase .showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 68, 245, 0.14);
  color: #0044f5;
  box-shadow: 0 10px 24px rgba(0, 68, 245, 0.055);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.feature-showcase .showcase-eyebrow svg {
  width: 16px;
  height: 16px;
  color: #0044f5;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-showcase .showcase-header h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #081a3a;
  font-size: clamp(46px, 4.25vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-showcase .showcase-header h2 span {
  color: #0044f5;
}

.feature-showcase .showcase-header p {
  max-width: 670px;
  margin: 0 auto;
  color: #64748b;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.7;
}

.showcase-flow {
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-feature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "copy media";
  align-items: center;
  gap: clamp(48px, 4vw, 64px);
  padding: clamp(58px, 5.2vw, 72px) 0;
}

.showcase-feature + .showcase-feature {
  margin-top: clamp(32px, 4vw, 48px);
}

.showcase-feature::before {
  content: '';
  position: absolute;
  inset: 12% 5% 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(13, 204, 255, 0.055), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.showcase-feature--reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "media copy";
}

.showcase-copy {
  grid-area: copy;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.showcase-feature--reverse .showcase-copy {
  justify-self: start;
}

.showcase-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 11px;
  color: #0044f5;
  background: #edf5ff;
  border: 1px solid rgba(0, 68, 245, 0.12);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 82, 204, 0.08);
}

.showcase-feature--record .showcase-number {
  color: #0044f5;
  background: #eef4ff;
}

.showcase-feature--finance .showcase-number {
  color: #0044f5;
  background: #edf6ff;
}

.showcase-feature--whatsapp .showcase-number {
  color: #0044f5;
  background: #eef6ff;
}

.feature-showcase .showcase-badge {
  display: block;
  padding: 0;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #27476d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-showcase .showcase-feature h3 {
  margin: 0 0 16px;
  color: #081a3a;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.feature-showcase .showcase-feature p {
  margin: 0 0 28px;
  color: #61718a;
  font-size: 17px;
  line-height: 1.72;
}

.feature-showcase .showcase-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: #0044f5;
  border: 1px solid rgba(0, 68, 245, 0.18);
  box-shadow: 0 10px 24px rgba(0, 68, 245, 0.065);
  font-size: 15px;
  font-weight: 900;
}

.feature-showcase .showcase-card-btn:hover {
  color: #0044f5;
  background: #edf5ff;
  border-color: rgba(0, 68, 245, 0.26);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 68, 245, 0.11);
}

.showcase-feature--whatsapp .showcase-card-btn {
  color: #ffffff;
  background: #0044f5;
  border-color: #0044f5;
  box-shadow: 0 16px 34px rgba(0, 68, 245, 0.18);
}

.showcase-feature--whatsapp .showcase-card-btn:hover {
  color: #ffffff;
  background: #003edc;
  border-color: #003edc;
  box-shadow: 0 20px 42px rgba(0, 68, 245, 0.24);
}

.showcase-media {
  grid-area: media;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 660px;
  justify-self: start;
  min-height: clamp(340px, 34vw, 450px);
  padding: clamp(26px, 3vw, 38px);
  overflow: visible;
  border-radius: 28px;
  border: 1px solid rgba(0, 68, 245, 0.08);
  box-shadow: 0 26px 62px rgba(17, 65, 132, 0.09);
  isolation: isolate;
}

.showcase-feature--reverse .showcase-media {
  justify-self: end;
}

.showcase-media::before {
  content: '';
  position: absolute;
  inset: 6%;
  z-index: -1;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 58px rgba(27, 71, 141, 0.08);
}

.showcase-media--agenda {
  background:
    radial-gradient(circle at 86% 18%, rgba(13, 204, 255, 0.1), transparent 38%),
    linear-gradient(135deg, #f2f8ff 0%, #dfecff 100%);
}

.showcase-media--record {
  background:
    radial-gradient(circle at 18% 16%, rgba(71, 96, 255, 0.1), transparent 42%),
    linear-gradient(135deg, #f3f7ff 0%, #e5f1ff 100%);
}

.showcase-media--finance {
  background:
    radial-gradient(circle at 88% 20%, rgba(13, 204, 255, 0.08), transparent 38%),
    linear-gradient(135deg, #f3f9ff 0%, #e2f2ff 100%);
}

.showcase-media--whatsapp {
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 211, 102, 0.075), transparent 36%),
    linear-gradient(135deg, #f2f8ff 0%, #e2f1ff 100%);
}

.feature-showcase .product-asset-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(219, 232, 252, 0.72);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(29, 78, 137, 0.12);
}

.showcase-floating-card {
  position: absolute;
  right: clamp(16px, 3.2vw, 32px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 229, 248, 0.9);
  box-shadow: 0 18px 38px rgba(29, 78, 137, 0.16);
}

.showcase-floating-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25c784;
  color: #ffffff;
}

.showcase-floating-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-floating-card strong,
.showcase-floating-card small {
  display: block;
}

.showcase-floating-card strong {
  color: #081a3a;
  font-size: 14px;
  font-weight: 900;
}

.showcase-floating-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
}

.showcase-whatsapp-orb {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #25d366;
  box-shadow: 0 18px 36px rgba(29, 78, 137, 0.13);
}

.showcase-whatsapp-orb svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-whatsapp-orb--one {
  top: 18%;
  right: 16%;
}

.showcase-whatsapp-orb--two {
  right: 9%;
  bottom: 19%;
  width: 50px;
  height: 50px;
}

.feature-showcase .showcase-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  max-width: 1160px;
  margin: clamp(48px, 6vw, 68px) auto 0;
  padding: clamp(26px, 3vw, 34px);
  text-align: left;
  border-radius: 24px;
  background:
    radial-gradient(circle at 4% 50%, rgba(13, 204, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(248, 252, 255, 0.98), rgba(236, 246, 255, 0.96));
  border: 1px solid rgba(0, 68, 245, 0.12);
  box-shadow: 0 18px 46px rgba(29, 78, 137, 0.07);
}

.showcase-cta__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #ffffff;
  color: #0044f5;
  box-shadow: 0 12px 26px rgba(0, 68, 245, 0.1);
}

.showcase-cta__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-showcase .showcase-cta h3 {
  margin: 0 0 8px;
  color: #081a3a;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
}

.feature-showcase .showcase-cta p {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.feature-showcase .showcase-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 250px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 900;
}

.feature-showcase .observe-animation.in-view {
  animation: none;
}

html.js-motion-ready .feature-showcase .showcase-header,
html.js-motion-ready .feature-showcase .showcase-copy,
html.js-motion-ready .feature-showcase .showcase-media,
html.js-motion-ready .feature-showcase .showcase-cta {
  opacity: 0;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

html.js-motion-ready .feature-showcase .showcase-header,
html.js-motion-ready .feature-showcase .showcase-cta {
  transform: translateY(24px);
}

html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-copy,
html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-media {
  transform: translateX(-36px);
}

html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-media,
html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-copy {
  transform: translateX(36px);
}

html.js-motion-ready .feature-showcase .showcase-media {
  transition-delay: 100ms;
}

html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-copy {
  transition-delay: 100ms;
}

html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-media {
  transition-delay: 0ms;
}

html.js-motion-ready .feature-showcase .showcase-header.is-visible,
html.js-motion-ready .feature-showcase .showcase-copy.is-visible,
html.js-motion-ready .feature-showcase .showcase-media.is-visible,
html.js-motion-ready .feature-showcase .showcase-cta.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-copy.is-visible,
html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-media.is-visible,
html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-copy.is-visible,
html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-media.is-visible {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px) {
  .feature-showcase .showcase-header h2 {
    font-size: clamp(40px, 5.2vw, 48px);
  }

  .showcase-feature,
  .showcase-feature--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .showcase-feature--reverse {
    grid-template-areas: "media copy";
  }

  .showcase-media {
    min-height: 330px;
    padding: 24px;
  }

  .feature-showcase .product-asset-img {
    max-height: 312px;
  }

  .feature-showcase .showcase-feature h3 {
    font-size: clamp(28px, 3.4vw, 34px);
  }
}

@media (max-width: 768px) {
  .feature-showcase {
    padding: clamp(58px, 12vw, 78px) 0;
  }

  .feature-showcase::before {
    opacity: 0.14;
  }

  .feature-showcase .showcase-header {
    margin-bottom: 34px;
  }

  .feature-showcase .showcase-header h2 {
    font-size: clamp(32px, 8.8vw, 40px);
  }

  .feature-showcase .showcase-header p {
    font-size: 16px;
  }

  .showcase-feature,
  .showcase-feature--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    gap: 24px;
    padding: 42px 0;
  }

  .showcase-feature + .showcase-feature {
    margin-top: 18px;
  }

  .showcase-copy,
  .showcase-feature--reverse .showcase-copy {
    max-width: none;
    justify-self: stretch;
  }

  .showcase-media,
  .showcase-feature--reverse .showcase-media {
    max-width: none;
    justify-self: stretch;
  }

  .feature-showcase .showcase-feature h3 {
    font-size: clamp(28px, 7.6vw, 34px);
  }

  .feature-showcase .showcase-feature p {
    font-size: 16px;
  }

  .feature-showcase .showcase-card-btn,
  .feature-showcase .showcase-main-btn {
    width: 100%;
  }

  .showcase-media {
    min-height: 270px;
    padding: 18px;
    border-radius: 24px;
  }

  .showcase-media::before {
    border-radius: 24px;
  }

  .feature-showcase .product-asset-img {
    max-height: 250px;
    border-radius: 14px;
  }

  .showcase-floating-card {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    max-width: calc(100% - 28px);
    padding: 12px 14px;
  }

  .showcase-whatsapp-orb {
    width: 46px;
    height: 46px;
  }

  .showcase-whatsapp-orb svg {
    width: 26px;
    height: 26px;
  }

  .showcase-whatsapp-orb--one {
    top: 13%;
    right: 10%;
  }

  .showcase-whatsapp-orb--two {
    right: 7%;
    bottom: 15%;
  }

  .feature-showcase .showcase-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
    padding: 24px;
  }

  html.js-motion-ready .feature-showcase .showcase-header,
  html.js-motion-ready .feature-showcase .showcase-cta {
    transform: translateY(18px);
  }

  html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-copy,
  html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-media {
    transform: translateX(-18px);
  }

  html.js-motion-ready .feature-showcase .showcase-feature:not(.showcase-feature--reverse) .showcase-media,
  html.js-motion-ready .feature-showcase .showcase-feature--reverse .showcase-copy {
    transform: translateX(18px);
  }
}

@media (max-width: 390px) {
  .feature-showcase .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-showcase .showcase-eyebrow {
    font-size: 10px;
  }

  .showcase-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .showcase-media {
    min-height: 246px;
    padding: 14px;
  }

  .feature-showcase .product-asset-img {
    max-height: 220px;
  }

  .showcase-floating-card span {
    width: 36px;
    height: 36px;
  }

  .showcase-floating-card strong {
    font-size: 12px;
  }

  .showcase-floating-card small {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-motion-ready .feature-showcase .showcase-header,
  html.js-motion-ready .feature-showcase .showcase-copy,
  html.js-motion-ready .feature-showcase .showcase-media,
  html.js-motion-ready .feature-showcase .showcase-cta {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Section blue final composition: phone protagonist with external cards */
.section-blue {
  padding: clamp(42px, 4.8vw, 58px) var(--container-padding);
  background: #062fd3;
}

.section-blue::before {
  background: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: 0.14;
}

.section-blue > .container::before,
.section-blue > .container::after {
  content: none;
  display: none;
}

.section-blue .blue-content {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(22px, 2.5vw, 34px);
  max-width: 1240px;
  min-height: 600px;
  padding: clamp(38px, 3.4vw, 46px);
  border-radius: 32px;
  border: 0;
  outline: 0;
  overflow: visible;
  background-image: url("../images/backgrounds/section-blue-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 82px rgba(2, 35, 110, 0.18);
}

.section-blue .blue-content::before {
  z-index: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.12;
}

.section-blue .blue-content::after {
  content: none;
  display: none;
}

.section-blue .blue-label {
  margin-bottom: 24px;
}

.section-blue .blue-text h2 {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(40px, 3.45vw, 50px);
  line-height: 1.12;
  font-weight: 750;
}

.section-blue .blue-text h2 span {
  color: #3ee7ff;
}

.section-blue .blue-benefits {
  gap: 22px;
  max-width: 610px;
  margin-bottom: 30px;
}

.section-blue .blue-benefit {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
}

.section-blue .blue-benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.section-blue .blue-benefit p {
  max-width: 470px;
  font-size: 17px;
  line-height: 1.52;
}

.section-blue .blue-btn {
  min-width: 270px;
  min-height: 56px;
  border-radius: 9px;
  font-size: 18px;
}

.section-blue__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 610px);
  min-height: 560px;
  margin-left: auto;
  overflow: visible;
  isolation: isolate;
}

.section-blue__visual::before,
.section-blue__visual::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.section-blue__visual::before {
  display: none;
}

.section-blue__visual::after {
  right: 16%;
  bottom: 10%;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 211, 255, 0.28), transparent 62%);
  filter: blur(8px);
}

.section-blue__visual .section-blue__backdrop {
  inset: 68px 12px 68px 128px;
  z-index: -1;
  border-radius: 30px;
  opacity: 0.1;
  filter: blur(4px);
  transform: none;
}

.section-blue__visual .feature-phone {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center end;
  padding-right: 76px;
}

.section-blue__visual .feature-phone::before {
  left: auto;
  right: 96px;
  bottom: 22px;
  width: 240px;
  height: 28px;
  transform: none;
}

.section-blue__visual .feature-phone-frame {
  z-index: 4;
  width: clamp(292px, 24vw, 330px);
  aspect-ratio: 9 / 16.7;
  transform: rotate(-3deg);
  transform-origin: center bottom;
}

.section-blue__visual .feature-phone-screen {
  border-radius: 35px;
}

.section-blue__visual .section-blue__poster,
.section-blue__visual .section-blue__video,
.section-blue__visual .section-blue__video-overlay {
  border-radius: 0;
}

.section-blue__visual .feature-phone-app {
  inset: 58px 17px 16px;
  gap: 11px;
}

.section-blue__visual .feature-phone-app__stats span {
  min-height: 58px;
}

.section-blue__visual .feature-phone-app__schedule,
.section-blue__visual .feature-phone-app__chart {
  min-height: 160px;
}

.section-blue__visual .feature-phone-app__panel {
  min-height: 68px;
}

.section-blue__visual .feature-phone-app__table {
  min-height: 94px;
}

.section-blue__visual .section-blue__play {
  left: 50%;
  top: 50%;
  width: 66px;
  height: 66px;
}

.section-blue .feature-phone .section-video-card {
  z-index: 6;
  width: 178px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 15px;
  border-color: rgba(214, 235, 255, 0.9);
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 14px 32px rgba(0, 22, 88, 0.16),
    0 0 0 4px rgba(255, 255, 255, 0.08);
}

.section-blue .feature-phone .section-video-card__icon {
  width: 34px;
  height: 34px;
}

.section-blue .feature-phone .section-video-card strong {
  font-size: 11.5px;
}

.section-blue .feature-phone .section-video-card span {
  font-size: 9.5px;
  line-height: 1.32;
}

.section-blue .section-video-card--confirm {
  top: 2%;
  left: -10%;
}

.section-blue .section-video-card--agenda {
  top: 34%;
  right: -9%;
}

.section-blue .section-video-card--finance {
  bottom: 16%;
  left: -8%;
}

.section-blue .section-video-card--tasks {
  right: -9%;
  bottom: 12%;
}

@media (max-width: 1180px) {
  .section-blue .blue-content {
    min-height: 580px;
    padding: 38px;
  }

  .section-blue .blue-text h2 {
    font-size: clamp(40px, 3.7vw, 50px);
  }

  .section-blue .blue-benefit p {
    font-size: 17px;
  }

  .section-blue__visual,
  .section-blue__visual .feature-phone {
    min-height: 540px;
  }

  .section-blue__visual .feature-phone {
    padding-right: 48px;
  }

  .section-blue__visual .feature-phone-frame {
    width: clamp(280px, 29vw, 312px);
  }

  .section-blue .feature-phone .section-video-card {
    width: 166px;
  }

  .section-blue .section-video-card--confirm {
    left: -8%;
  }

  .section-blue .section-video-card--finance {
    left: -6%;
  }
}

@media (max-width: 920px) {
  .section-blue .blue-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-blue__visual {
    width: 100%;
    min-height: 560px;
    margin: 0;
  }

  .section-blue__visual .feature-phone {
    min-height: 560px;
    place-items: center;
    padding-right: 0;
  }

  .section-blue__visual .feature-phone-frame {
    width: min(72vw, 318px);
  }

  .section-blue .section-video-card--confirm {
    left: calc(50% - 310px);
    top: 9%;
  }

  .section-blue .section-video-card--agenda {
    right: calc(50% - 318px);
    top: 34%;
  }

  .section-blue .section-video-card--finance {
    left: calc(50% - 306px);
    bottom: 17%;
  }

  .section-blue .section-video-card--tasks {
    right: calc(50% - 314px);
    bottom: 12%;
  }
}

@media (max-width: 640px) {
  .section-blue {
    padding: 38px 14px;
  }

  .section-blue .blue-content {
    padding: 26px 22px 34px;
    border-radius: 26px;
  }

  .section-blue .blue-label {
    margin-bottom: 24px;
  }

  .section-blue .blue-text h2 {
    margin-bottom: 28px;
    font-size: clamp(31px, 8.5vw, 38px);
  }

  .section-blue .blue-benefits {
    gap: 22px;
    margin-bottom: 30px;
  }

  .section-blue .blue-benefit {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .section-blue .blue-benefit__icon {
    width: 46px;
    height: 46px;
  }

  .section-blue .blue-benefit p {
    font-size: 15px;
  }

  .section-blue__visual,
  .section-blue__visual .feature-phone {
    min-height: 510px;
  }

  .section-blue__visual::before {
    display: none;
  }

  .section-blue__visual .feature-phone-frame {
    width: min(72vw, 270px);
    transform: rotate(-2deg);
  }

  .section-blue__visual .feature-phone-app {
    inset: 52px 14px 14px;
    gap: 9px;
  }

  .section-blue__visual .feature-phone-app__brand strong {
    font-size: 15px;
  }

  .section-blue__visual .feature-phone-app__title {
    font-size: 14px;
  }

  .section-blue__visual .feature-phone-app__schedule,
  .section-blue__visual .feature-phone-app__chart {
    min-height: 138px;
  }

  .section-blue .section-video-card--agenda,
  .section-blue .section-video-card--finance {
    display: none;
  }

  .section-blue .feature-phone .section-video-card {
    width: min(210px, 78%);
  }

  .section-blue .section-video-card--confirm {
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
  }

  .section-blue .section-video-card--tasks {
    left: 50%;
    right: auto;
    bottom: -18px;
    transform: translateX(-50%);
  }
}

/***************************************************************************************/

/* Section blue: salon visual language, scoped to the Clinicas feature block. */
.section-blue.section-blue--salon-background {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 8%, rgba(110, 194, 255, 0.28), transparent 30%),
    radial-gradient(circle at 18% 62%, rgba(191, 226, 255, 0.34), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 45%, #f7fcff 100%);
}

.section-blue.section-blue--salon-background::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(0px, calc((100% - 1280px) / 2));
  bottom: 0;
  left: auto;
  width: min(760px, 62vw);
  z-index: -1;
  display: block;
  border-radius: 72px;
  background-image:
    linear-gradient(90deg, #f8fcff 0%, rgba(248, 252, 255, 0.62) 23%, rgba(248, 252, 255, 0.1) 63%, rgba(248, 252, 255, 0.3) 100%),
    url("../images/backgrounds/beleza.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1.2px) saturate(0.92) contrast(0.96);
  opacity: 0.78;
  transform: scale(1.01);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
  pointer-events: none;
}

.section-blue.section-blue--salon-background::after {
  content: "";
  position: absolute;
  inset: 0 0 -84px;
  z-index: -1;
  display: block;
  background:
    url("data:image/svg+xml,%3Csvg width='1440' height='220' viewBox='0 0 1440 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237FC5FF' stroke-opacity='.42' stroke-width='1.15'%3E%3Cpath d='M-80 74C148 152 322 180 557 140c258-44 410-102 655-17 119 42 214 54 308 30'/%3E%3Cpath d='M-80 94C151 172 326 198 560 158c257-44 407-98 651-15 120 41 215 52 309 27'/%3E%3Cpath d='M-80 114C154 192 330 216 563 176c255-43 404-94 647-13 120 40 216 49 310 24'/%3E%3C/g%3E%3C/svg%3E") center bottom / 100% 220px no-repeat,
    radial-gradient(circle at 76% 22%, rgba(110, 194, 255, 0.2), transparent 26%),
    radial-gradient(ellipse at 50% calc(100% - 70px), rgba(80, 174, 255, 0.14), transparent 66%);
  opacity: 0.8;
  pointer-events: none;
}

.section-blue.section-blue--salon-background > .container {
  position: relative;
  z-index: 1;
}

.section-blue.section-blue--salon-background .blue-content {
  background-image:
    linear-gradient(100deg, rgba(6, 47, 211, 0.98) 0%, rgba(6, 47, 211, 0.94) 43%, rgba(6, 47, 211, 0.78) 72%, rgba(6, 47, 211, 0.68) 100%),
    url("../images/backgrounds/beleza.jpg");
  background-position: center, center right;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .section-blue.section-blue--salon-background::before {
    width: 100%;
    right: 0;
    border-radius: 0;
    opacity: 0.62;
    filter: blur(2px) saturate(0.88);
    background-image:
      linear-gradient(180deg, rgba(248, 252, 255, 0.96) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.42) 72%, rgba(248, 252, 255, 0.24) 100%),
      url("../images/backgrounds/beleza.jpg");
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  }

  .section-blue.section-blue--salon-background .blue-content {
    background-image:
      linear-gradient(180deg, rgba(6, 47, 211, 0.97) 0%, rgba(6, 47, 211, 0.91) 58%, rgba(6, 47, 211, 0.82) 100%),
      url("../images/backgrounds/beleza.jpg");
    background-position: center, center;
  }

  .section-blue.section-blue--salon-background::after {
    inset: 0 0 -52px;
    background-size: auto 150px, auto, auto;
  }
}

/* Smooth transition between Clinicas hero and blue feature section */
.hero--clinicas-dashboard {
  background:
    radial-gradient(circle at 70% 22%, rgba(0, 82, 204, 0.12) 0, transparent 31%),
    radial-gradient(circle at 92% 58%, rgba(40, 164, 235, 0.13) 0, transparent 28%),
    radial-gradient(ellipse at 74% 100%, rgba(0, 96, 220, 0.12) 0%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, #eef6ff 100%),
    linear-gradient(96deg, #ffffff 0%, #ffffff 50%, #f5f9ff 100%);
}

.hero--clinicas-dashboard .container,
.hero--clinicas-dashboard .hero-content {
  position: relative;
  z-index: 1;
}

.section-blue {
  margin-top: -28px;
  padding-top: clamp(70px, 7.2vw, 96px);
  overflow: visible;
  isolation: isolate;
  z-index: 1;
  background:
    linear-gradient(180deg, #eef6ff 0%, rgba(145, 195, 255, 0.5) 8%, rgba(6, 47, 211, 0.94) 20%, #062fd3 42%),
    #062fd3;
}

.section-blue::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -116px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 87, 217, 0.14), transparent 11%),
    radial-gradient(ellipse at 50% calc(100% - 118px), rgba(84, 164, 255, 0.22), transparent 34%),
    linear-gradient(
      180deg,
      rgba(238, 246, 255, 0.94) 0%,
      rgba(238, 246, 255, 0.42) 5%,
      rgba(238, 246, 255, 0) 13%,
      rgba(238, 246, 255, 0) calc(100% - 260px),
      rgba(7, 57, 217, 0.1) calc(100% - 210px),
      rgba(105, 174, 255, 0.24) calc(100% - 164px),
      rgba(202, 231, 255, 0.58) calc(100% - 112px),
      rgba(230, 244, 255, 0.28) calc(100% - 58px),
      rgba(248, 251, 255, 0) 100%
    );
}

.feature-showcase {
  margin-top: -54px;
  padding-top: calc(clamp(78px, 8vw, 112px) + 54px);
  z-index: 0;
}

.feature-showcase::after {
  content: "";
  position: absolute;
  top: -112px;
  left: 0;
  right: 0;
  height: 178px;
  z-index: 0;
  pointer-events: none;
  clip-path: ellipse(78% 72% at 50% 48%);
  background:
    radial-gradient(circle at 50% 8%, rgba(29, 118, 255, 0.1), transparent 52%),
    linear-gradient(180deg, rgba(192, 224, 255, 0.34) 0%, rgba(230, 244, 255, 0.18) 52%, rgba(248, 251, 255, 0) 100%);
}

@media (max-width: 768px) {
  .section-blue {
    margin-top: -18px;
    padding-top: 64px;
    background:
      linear-gradient(180deg, #eef6ff 0%, rgba(145, 195, 255, 0.42) 10%, rgba(6, 47, 211, 0.94) 24%, #062fd3 46%),
      #062fd3;
  }

  .section-blue::after {
    bottom: -72px;
    background:
      radial-gradient(circle at 72% 18%, rgba(0, 87, 217, 0.12), transparent 10%),
      radial-gradient(ellipse at 50% calc(100% - 74px), rgba(84, 164, 255, 0.18), transparent 36%),
      linear-gradient(
        180deg,
        rgba(238, 246, 255, 0.94) 0%,
        rgba(238, 246, 255, 0.38) 6%,
        rgba(238, 246, 255, 0) 15%,
        rgba(238, 246, 255, 0) calc(100% - 154px),
        rgba(7, 57, 217, 0.08) calc(100% - 126px),
        rgba(105, 174, 255, 0.2) calc(100% - 94px),
        rgba(202, 231, 255, 0.5) calc(100% - 70px),
        rgba(230, 244, 255, 0.24) calc(100% - 34px),
        rgba(248, 251, 255, 0) 100%
      );
  }

  .feature-showcase::after {
    top: -72px;
    height: 112px;
    clip-path: ellipse(82% 72% at 50% 48%);
    background:
      radial-gradient(circle at 50% 8%, rgba(29, 118, 255, 0.08), transparent 56%),
      linear-gradient(180deg, rgba(192, 224, 255, 0.26) 0%, rgba(230, 244, 255, 0.14) 52%, rgba(248, 251, 255, 0) 100%);
  }

  .feature-showcase {
    margin-top: -36px;
    padding-top: calc(var(--section-padding-mobile) + 36px);
  }
}

/* Notebook responsiveness audit: keep approved desktop design proportional on short Windows viewports. */
@media (min-width: 1441px) {
  .hero--clinicas-dashboard .hero-content {
    max-width: 1320px;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(26px, 2.6vw, 40px);
  }

  .hero--clinicas-dashboard .hero-text,
  .hero--clinicas-dashboard .hero-text h1 {
    max-width: 620px;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 720px);
    transform: translateX(12px);
  }
}

@media (min-width: 769px) and (max-width: 1440px) {
  .header-content {
    min-height: 60px;
    padding: 10px 0;
  }

  header .btn {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 10px;
  }

  .brand-logo-img {
    height: 32px;
    max-width: 150px;
  }

  .hero--clinicas-dashboard {
    min-height: auto;
    padding: clamp(42px, 5.6vh, 58px) 0 clamp(44px, 5.2vh, 58px);
  }

  .hero--clinicas-dashboard .hero-content {
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    gap: clamp(18px, 2vw, 28px);
  }

  .hero--clinicas-dashboard .hero-text {
    max-width: 535px;
  }

  .hero--clinicas-dashboard .hero-text .badge {
    margin-bottom: 17px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .hero--clinicas-dashboard .hero-text h1 {
    max-width: 535px;
    margin-bottom: 14px;
    font-size: clamp(44px, 3.18vw, 48px);
    line-height: 1.055;
  }

  .hero--clinicas-dashboard .hero-text p {
    max-width: 470px;
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.56;
  }

  .hero--clinicas-dashboard .hero-buttons .btn {
    min-height: 52px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 15.5px;
  }

  .hero--clinicas-dashboard .hero-video-link {
    margin-top: 13px;
  }

  .hero--clinicas-dashboard .hero-image {
    min-height: 430px;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 690px);
    min-height: 438px;
    transform: translateX(18px);
  }

  .hero--clinicas-dashboard .hero-doctor {
    right: -34px;
    bottom: -42px;
    width: min(70%, 360px);
  }

  .hero--clinicas-dashboard .hero-float-card {
    width: min(204px, 28vw);
    padding: 11px 12px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .hero--clinicas-dashboard .hero-float-card__icon {
    width: 32px;
    height: 32px;
  }

  .hero--clinicas-dashboard .hero-float-card strong {
    font-size: 12.5px;
  }

  .hero--clinicas-dashboard .hero-float-card small {
    font-size: 10.5px;
  }

  .section-blue {
    padding-top: clamp(62px, 6vh, 78px);
    padding-bottom: 50px;
  }

  .section-blue .blue-content {
    max-width: 1160px;
    min-height: 530px;
    gap: 24px;
    padding: 34px;
  }

  .section-blue .blue-label {
    margin-bottom: 18px;
  }

  .section-blue .blue-text h2 {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: clamp(38px, 3vw, 44px);
  }

  .section-blue .blue-benefits {
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-blue .blue-benefit {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .section-blue .blue-benefit__icon {
    width: 48px;
    height: 48px;
  }

  .section-blue .blue-benefit p {
    font-size: 16px;
    line-height: 1.48;
  }

  .section-blue .blue-btn {
    min-width: 245px;
    min-height: 52px;
    font-size: 16px;
  }

  .section-blue__visual,
  .section-blue__visual .feature-phone {
    min-height: 500px;
  }

  .section-blue__visual {
    width: min(100%, 560px);
  }

  .section-blue__visual .feature-phone {
    padding-right: 50px;
  }

  .section-blue__visual .feature-phone-frame {
    width: clamp(276px, 21.5vw, 304px);
  }

  .section-blue .feature-phone .section-video-card {
    width: 158px;
    min-height: 60px;
    padding: 9px 11px;
  }

  .section-blue .section-video-card--confirm {
    left: -6%;
  }

  .section-blue .section-video-card--tasks {
    right: -6%;
  }

  .feature-showcase {
    margin-top: -44px;
    padding-top: calc(clamp(64px, 6vw, 86px) + 44px);
    padding-bottom: clamp(76px, 6vw, 90px);
  }

  .feature-showcase .showcase-header {
    max-width: 720px;
    margin-bottom: 42px;
  }

  .feature-showcase .showcase-header h2 {
    max-width: 720px;
    font-size: clamp(42px, 3.45vw, 48px);
  }

  .feature-showcase .showcase-header p {
    font-size: 17px;
    line-height: 1.62;
  }

  .showcase-flow {
    max-width: 1160px;
  }

  .showcase-feature {
    gap: clamp(36px, 3vw, 46px);
    padding: clamp(44px, 4vw, 56px) 0;
  }

  .showcase-feature + .showcase-feature {
    margin-top: 28px;
  }

  .showcase-copy {
    max-width: 410px;
  }

  .feature-showcase .showcase-feature h3 {
    font-size: clamp(30px, 2.6vw, 36px);
  }

  .feature-showcase .showcase-feature p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.62;
  }

  .showcase-media {
    max-width: 600px;
    min-height: clamp(318px, 28vw, 390px);
    padding: 28px;
  }

  .feature-showcase .product-asset-img {
    max-height: 320px;
  }

  .feature-showcase .showcase-cta {
    max-width: 1080px;
    margin-top: 44px;
    padding: 28px;
  }

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

  .mobile-section__intro h2 {
    max-width: 700px;
    font-size: clamp(42px, 3.7vw, 50px);
  }

  .mobile-section__intro p {
    font-size: 17px;
  }

  .mobile-section__showcase {
    max-width: 1080px;
    margin-top: 52px;
    grid-template-columns: minmax(220px, 1fr) minmax(270px, 330px) minmax(220px, 1fr);
    gap: 32px;
  }

  .phone-mockup {
    min-height: 590px;
  }

  .phone-mockup::before {
    width: 380px;
    height: 380px;
  }

  .phone-frame {
    width: 302px;
    height: 604px;
  }

  .mobile-benefit-card {
    max-width: 300px;
    padding: 24px;
    border-radius: 28px;
  }

  .mobile-benefit-card--left {
    transform: translateY(38px);
  }

  .mobile-benefit-card--right {
    transform: translateY(60px);
  }

  .mobile-benefit-card--left:hover {
    transform: translateY(32px);
  }

  .mobile-benefit-card--right:hover {
    transform: translateY(54px);
  }

  .plans-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .plans-section .plans-intro {
    margin-bottom: 38px;
  }

  .plans-section .plans-intro h2 {
    font-size: clamp(38px, 3.45vw, 46px);
  }

  .plans-section .plans-content {
    gap: 44px;
  }

  .plans-section .plan-brand-logo {
    width: 260px;
  }

  .plans-section .plan-price {
    font-size: clamp(44px, 3.6vw, 50px);
  }

  .plans-section .modular-section h3 {
    font-size: clamp(30px, 2.8vw, 36px);
  }

  .plans-section .user-type-card {
    column-gap: 20px;
  }

  .cta-final {
    padding: 56px 0;
  }

  .cta-final-card {
    width: min(100%, 1040px);
    padding: 44px 48px 58px;
    border-radius: 28px;
  }

  .cta-specialists img {
    width: 66px;
    height: 66px;
  }

  .cta-final .cta-final-card h2 {
    max-width: 720px;
    font-size: clamp(34px, 3vw, 42px);
  }

  .cta-final .cta-final-card p {
    max-width: 660px;
    margin-bottom: 26px;
    font-size: 16px;
  }

  .cta-final-actions {
    margin-bottom: 28px;
  }

  .cta-final .cta-final-actions .btn {
    min-height: 52px;
    padding: 13px 24px;
    font-size: 15px;
  }

  .cta-final-trust {
    font-size: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1366px) {
  .hero--clinicas-dashboard {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero--clinicas-dashboard .hero-content {
    gap: 18px;
  }

  .hero--clinicas-dashboard .hero-text h1 {
    max-width: 505px;
    font-size: clamp(40px, 3.05vw, 44px);
  }

  .hero--clinicas-dashboard .hero-text p {
    max-width: 455px;
    font-size: 16px;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 650px);
    min-height: 414px;
    transform: translateX(10px);
  }

  .hero--clinicas-dashboard .hero-doctor {
    width: min(66%, 330px);
  }

  .hero--clinicas-dashboard .hero-float-card {
    width: min(194px, 27vw);
  }

  .section-blue .blue-content {
    max-width: 1110px;
    min-height: 500px;
    padding: 30px;
  }

  .section-blue .blue-text h2 {
    font-size: clamp(36px, 2.8vw, 40px);
  }

  .section-blue__visual,
  .section-blue__visual .feature-phone {
    min-height: 476px;
  }

  .section-blue__visual .feature-phone-frame {
    width: clamp(266px, 20vw, 288px);
  }

  .feature-showcase .showcase-header {
    margin-bottom: 36px;
  }

  .feature-showcase .showcase-header h2 {
    font-size: clamp(38px, 3.1vw, 42px);
  }

  .showcase-feature {
    gap: 34px;
    padding: 42px 0;
  }

  .showcase-media {
    max-width: 560px;
    min-height: 340px;
    padding: 24px;
  }

  .feature-showcase .product-asset-img {
    max-height: 292px;
  }

  .section-mobile {
    padding: 78px 0;
  }

  .mobile-section__intro h2 {
    font-size: clamp(38px, 3.25vw, 44px);
  }

  .mobile-section__showcase {
    margin-top: 44px;
    grid-template-columns: minmax(210px, 1fr) minmax(250px, 306px) minmax(210px, 1fr);
    gap: 28px;
  }

  .phone-mockup {
    min-height: 560px;
  }

  .phone-frame {
    width: 286px;
    height: 572px;
  }

  .plans-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .plans-section .plans-intro h2 {
    font-size: clamp(36px, 3.15vw, 42px);
  }

  .plans-section .plans-content {
    grid-template-columns: minmax(340px, 0.41fr) minmax(0, 0.59fr);
    gap: 36px;
  }

  .cta-final {
    padding: 48px 0;
  }

  .cta-final-card {
    width: min(100%, 980px);
    padding: 38px 44px 50px;
  }

  .cta-final .cta-final-card h2 {
    font-size: clamp(32px, 2.8vw, 38px);
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .hero--clinicas-dashboard .hero-text h1 {
    font-size: 40px;
  }

  .hero--clinicas-dashboard .hero-dashboard-wrap {
    width: min(100%, 610px);
  }

  .hero--clinicas-dashboard .hero-float-card {
    width: 184px;
    padding: 10px;
  }

  .section-blue .blue-content {
    min-height: 480px;
    padding: 28px;
  }

  .section-blue .feature-phone .section-video-card {
    width: 148px;
  }

  .section-blue__visual .feature-phone {
    padding-right: 38px;
  }

  .section-blue__visual .feature-phone-frame {
    width: 270px;
  }

  .feature-showcase .showcase-header h2 {
    font-size: 40px;
  }

  .showcase-feature {
    gap: 30px;
  }

  .showcase-media {
    max-width: 528px;
    min-height: 320px;
  }

  .section-mobile {
    padding: 72px 0;
  }

  .mobile-section__intro h2,
  .plans-section .plans-intro h2,
  .cta-final .cta-final-card h2 {
    font-size: 36px;
  }

  .mobile-section__showcase {
    gap: 24px;
  }

  .phone-frame {
    width: 274px;
    height: 548px;
  }

  .phone-mockup {
    min-height: 536px;
  }

  .plans-section .plans-content {
    gap: 30px;
  }

  .plans-section .user-type-card strong {
    white-space: normal;
  }
}

/* Clinicas hero: compact supporting cards, kept clear of the doctor. */
.hero--clinicas-dashboard .hero-float-card {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 11px;
  width: 210px;
  padding: 11px 12px;
  border: 1px solid rgba(61, 126, 226, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(18, 65, 137, 0.12), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px);
}

.hero--clinicas-dashboard .hero-float-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, #0757d9 0%, #1677f2 100%);
  box-shadow: 0 7px 15px rgba(7, 87, 217, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero--clinicas-dashboard .hero-float-card__icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.hero--clinicas-dashboard .hero-float-card strong { margin-top: 2px; }

.hero--clinicas-dashboard .hero-float-card--agenda {
  top: 6%;
  right: 4%;
}

.hero--clinicas-dashboard .hero-float-card--records {
  right: 0;
  bottom: 3%;
}

.hero--clinicas-dashboard .hero-float-card--finance {
  left: 7%;
  bottom: 5%;
}

@media (min-width: 1281px) and (max-width: 1500px) {
  .hero--clinicas-dashboard .hero-float-card {
    width: 194px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 10px 11px;
  }

  .hero--clinicas-dashboard .hero-float-card__icon { width: 38px; height: 38px; }
  .hero--clinicas-dashboard .hero-float-card--records { display: none; }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .hero--clinicas-dashboard .hero-float-card {
    width: 180px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 9px;
    padding: 9px 10px;
  }

  .hero--clinicas-dashboard .hero-float-card__icon { width: 36px; height: 36px; border-radius: 11px; }
  .hero--clinicas-dashboard .hero-float-card__icon svg { width: 18px; height: 18px; }
  .hero--clinicas-dashboard .hero-float-card--agenda { top: 4%; right: 2%; }
  .hero--clinicas-dashboard .hero-float-card--records { display: none; }
  .hero--clinicas-dashboard .hero-float-card--finance { display: block; left: 6%; bottom: 2%; }
}

@media (max-width: 768px) {
  .hero--clinicas-dashboard .hero-float-card { display: none; }
}

@media (max-width: 390px) {
  header .btn {
    max-width: none;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
}

/* Section blue: refined supporting cards around the phone. */
.section-blue .feature-phone .section-video-card {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 190px;
  min-height: 64px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 31, 105, 0.17), inset 0 1px 0 #fff;
  backdrop-filter: blur(10px);
}

.section-blue .feature-phone .section-video-card__icon {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #0874f9 0%, #064dcc 100%);
  box-shadow: 0 7px 16px rgba(0, 75, 204, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.section-blue .feature-phone .section-video-card__icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.section-blue .feature-phone .section-video-card strong { font-size: 12px; line-height: 1.24; }
.section-blue .feature-phone .section-video-card span { margin-top: 3px; font-size: 9.75px; line-height: 1.3; }
.section-blue .section-video-card--confirm { top: 7%; left: -5%; }
.section-blue .section-video-card--tasks { right: -5%; bottom: 8%; }

@media (min-width: 769px) and (max-width: 1366px) {
  .section-blue .feature-phone .section-video-card {
    width: 170px;
    min-height: 58px;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .section-blue .feature-phone .section-video-card__icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .section-blue .feature-phone .section-video-card__icon svg { width: 18px; height: 18px; }
  .section-blue .feature-phone .section-video-card strong { font-size: 11px; }
  .section-blue .feature-phone .section-video-card span { font-size: 9px; }
  .section-blue .section-video-card--confirm { top: 8%; left: -3%; }
  .section-blue .section-video-card--tasks { right: -3%; bottom: 9%; }
}

@media (max-width: 768px) {
  .section-blue .feature-phone .section-video-card { display: none; }
}

/* Targeted CTA interaction fixes. */
.hero--clinicas-dashboard .hero-buttons .btn-primary:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 83, 214, 0.28);
  transform: translateY(-1px);
}

.hero--clinicas-dashboard .hero-buttons .btn-primary:hover span {
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.cta-final .cta-final-primary .cta-btn-arrow {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-final .cta-final-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 20, 82, 0.18);
  transform: translateY(-1px);
}

.cta-final .cta-final-secondary:hover span,
.cta-final .cta-final-secondary:hover svg {
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.cta-final .cta-final-secondary:hover svg {
  stroke: currentColor;
}

/* Standalone vertical-video demos. */
.section-video-demo {
  padding: clamp(58px, 6vw, 88px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(71, 202, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #062c83 0%, #0757d9 54%, #0877e7 100%);
  overflow: hidden;
}

.section-video-demo--psicologia {
  background:
    radial-gradient(circle at 22% 30%, rgba(91, 218, 255, 0.18), transparent 31%),
    linear-gradient(225deg, #052978 0%, #084ebd 52%, #0766cd 100%);
}

.section-video-demo + .section-video-demo { border-top: 1px solid rgba(255, 255, 255, 0.12); }

.section-video-demo__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
  max-width: 1180px;
}

.section-video-demo--psicologia .section-video-demo__content { order: 2; }
.section-video-demo--psicologia .section-video-demo__media { order: 1; }

.section-video-demo__content { position: relative; z-index: 2; }
.section-video-demo__badge {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.section-video-demo h2 {
  max-width: 650px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(36px, 3.45vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-video-demo h2 span { color: #74dcff; }
.section-video-demo__content > p {
  max-width: 620px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.62;
}

.section-video-demo__benefits {
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.section-video-demo__benefits li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.section-video-demo__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: rgba(116, 220, 255, 0.2);
  color: #8ee4ff;
  font-size: 12px;
}

.section-video-demo .section-video-demo__btn {
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: #fff;
  color: #0757d9;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 26, 92, 0.2);
}

.section-video-demo .section-video-demo__btn:hover {
  background: #f2f9ff;
  color: #054bbd;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 26, 92, 0.26);
}

.section-video-demo__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.section-video-demo__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 198, 255, 0.2), transparent 68%);
}

.section-video-demo__phone {
  position: relative;
  z-index: 2;
  width: 286px;
  height: 550px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 40px;
  background: linear-gradient(145deg, #eff7ff, #8cb5e6 52%, #fff);
  box-shadow: 0 34px 60px rgba(0, 19, 76, 0.34), inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.section-video-demo__speaker {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 70px;
  height: 20px;
  border-radius: 999px;
  background: #07152e;
  transform: translateX(-50%);
}

.section-video-demo__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(155deg, #e9f6ff, #b9dcfa);
}

.section-video-demo__screen video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.section-video-demo__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  color: #0757d9;
  text-align: center;
}

.section-video-demo__fallback strong { font-size: 29px; }
.section-video-demo__fallback span { color: #4b6f9c; font-size: 14px; }
.section-video-demo__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 204px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 25, 92, 0.2);
}

.section-video-demo__card--top { top: 11%; left: -4%; }
.section-video-demo__card--bottom { right: -4%; bottom: 12%; }
.section-video-demo__card-icon {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, #0874f9, #064dcc);
  color: #fff;
}

.section-video-demo__card-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.section-video-demo__card strong, .section-video-demo__card small { display: block; }
.section-video-demo__card strong { color: #142848; font-size: 11.5px; line-height: 1.25; }
.section-video-demo__card small { margin-top: 3px; color: #63728a; font-size: 9px; line-height: 1.3; }

@media (max-width: 1366px) {
  .section-video-demo__container { max-width: 1080px; gap: 48px; }
  .section-video-demo__media { min-height: 510px; }
  .section-video-demo__phone { width: 254px; height: 490px; border-radius: 36px; }
  .section-video-demo__screen { border-radius: 28px; }
  .section-video-demo__card { width: 184px; padding: 9px 10px; }
  .section-video-demo__card--top { left: 0; }
  .section-video-demo__card--bottom { right: 0; }
}

@media (max-width: 900px) {
  .section-video-demo__container { grid-template-columns: 1fr; gap: 34px; }
  .section-video-demo--psicologia .section-video-demo__content { order: 1; }
  .section-video-demo--psicologia .section-video-demo__media { order: 2; }
  .section-video-demo__content { max-width: 680px; }
}

@media (max-width: 600px) {
  .section-video-demo { padding: 48px 0 54px; }
  .section-video-demo__container { padding-inline: 20px; }
  .section-video-demo h2 { font-size: clamp(31px, 9vw, 38px); }
  .section-video-demo__content > p { font-size: 15px; }
  .section-video-demo__media { min-height: 470px; }
  .section-video-demo__phone { width: 230px; height: 445px; }
  .section-video-demo__glow { width: 330px; height: 330px; }
  .section-video-demo__card { display: none; }
  .section-video-demo .section-video-demo__btn { width: 100%; }
}

/* Organic composition and soft continuity for demos two and three. */
.section-video-demo {
  position: relative;
  isolation: isolate;
}

.section-video-demo::before,
.section-video-demo::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
}

.section-video-demo::before {
  top: 0;
  background: linear-gradient(180deg, rgba(5, 47, 133, 0.3), transparent);
}

.section-video-demo::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(4, 42, 119, 0.34), transparent);
}

.section-video-demo__container { position: relative; z-index: 1; }

.section-video-demo--saloes .section-video-demo__media {
  justify-items: end;
  padding-right: clamp(24px, 4vw, 58px);
}

.section-video-demo--saloes .section-video-demo__phone {
  transform: rotate(2.6deg) translateY(-4px);
  transform-origin: 50% 70%;
}

.section-video-demo--saloes .section-video-demo__glow {
  right: -3%;
  width: 480px;
  height: 480px;
  border-color: rgba(134, 225, 255, 0.2);
  background: radial-gradient(circle at 58% 44%, rgba(98, 218, 255, 0.3), rgba(47, 142, 245, 0.12) 42%, transparent 70%);
  filter: blur(2px);
}

.section-video-demo--saloes .section-video-demo__card--top {
  top: 15%;
  left: 3%;
  transform: rotate(-1.5deg);
}

.section-video-demo--saloes .section-video-demo__card--bottom {
  right: 0;
  bottom: 8%;
  transform: rotate(1deg);
}

.section-video-demo--psicologia .section-video-demo__content {
  align-self: center;
  padding-top: 18px;
}

.section-video-demo--psicologia .section-video-demo__media {
  justify-items: start;
  padding-left: clamp(24px, 4vw, 54px);
}

.section-video-demo--psicologia .section-video-demo__phone {
  transform: rotate(-2.8deg) translateY(7px);
  transform-origin: 50% 68%;
}

.section-video-demo--psicologia .section-video-demo__glow {
  left: -4%;
  width: 460px;
  height: 460px;
  border-color: rgba(127, 220, 255, 0.18);
  background: radial-gradient(circle at 42% 46%, rgba(106, 216, 255, 0.27), rgba(36, 124, 225, 0.1) 44%, transparent 71%);
  filter: blur(3px);
}

.section-video-demo--psicologia .section-video-demo__card--top {
  top: 9%;
  left: auto;
  right: 1%;
  transform: rotate(1.8deg);
}

.section-video-demo--psicologia .section-video-demo__card--bottom {
  right: auto;
  left: -2%;
  bottom: 10%;
  transform: rotate(-1.2deg);
}

@media (max-width: 1366px) {
  .section-video-demo--saloes .section-video-demo__media { padding-right: 30px; }
  .section-video-demo--psicologia .section-video-demo__media { padding-left: 30px; }
  .section-video-demo--saloes .section-video-demo__card--top { left: 0; }
  .section-video-demo--psicologia .section-video-demo__card--top { right: 0; }
  .section-video-demo--psicologia .section-video-demo__card--bottom { left: 0; }
}

@media (max-width: 900px) {
  .section-video-demo--saloes .section-video-demo__media,
  .section-video-demo--psicologia .section-video-demo__media {
    justify-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .section-video-demo--psicologia .section-video-demo__content { padding-top: 0; }
}

@media (max-width: 600px) {
  .section-video-demo--saloes .section-video-demo__phone { transform: rotate(1.5deg); }
  .section-video-demo--psicologia .section-video-demo__phone { transform: rotate(-1.5deg); }
  .section-video-demo::before,
  .section-video-demo::after { height: 72px; }
}

/* Contained premium panels: scoped exclusively to demos two and three. */
#video-saloes,
#video-psicologia {
  padding: clamp(34px, 4vw, 58px) max(var(--container-padding, 24px), 20px);
  background: #f3f8ff;
  overflow: visible;
}

#video-saloes::before,
#video-saloes::after,
#video-psicologia::before,
#video-psicologia::after {
  display: none;
}

#video-saloes .section-video-demo__container,
#video-psicologia .section-video-demo__container {
  width: min(100%, 1180px);
  min-height: 650px;
  padding: clamp(42px, 4.7vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(19, 65, 142, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

#video-saloes .section-video-demo__container {
  background:
    radial-gradient(circle at 84% 32%, rgba(100, 220, 255, 0.25), transparent 29%),
    linear-gradient(135deg, #073387 0%, #0756ce 56%, #0878dc 100%);
}

#video-psicologia {
  padding-top: 18px;
  background: linear-gradient(180deg, #f3f8ff 0%, #edf5ff 48%, #f5f9ff 100%);
}

#video-psicologia .section-video-demo__container {
  background:
    radial-gradient(circle at 17% 45%, rgba(107, 218, 255, 0.23), transparent 30%),
    linear-gradient(225deg, #052b7d 0%, #084fbb 56%, #0868ca 100%);
}

#video-psicologia .section-video-demo__container::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -90px;
  left: 50%;
  width: 72%;
  height: 160px;
  border-radius: 50%;
  background: rgba(99, 206, 255, 0.1);
  filter: blur(34px);
  transform: translateX(-50%);
  pointer-events: none;
}

#video-saloes .section-video-demo__media,
#video-psicologia .section-video-demo__media { min-height: 530px; }

#video-saloes .section-video-demo__card--top { left: 8%; top: 17%; }
#video-saloes .section-video-demo__card--bottom { right: 3%; bottom: 10%; }
#video-psicologia .section-video-demo__card--top { right: 7%; top: 13%; }
#video-psicologia .section-video-demo__card--bottom { left: 4%; bottom: 12%; }

#video-saloes .section-video-demo__screen video,
#video-psicologia .section-video-demo__screen video {
  opacity: 0;
  transition: opacity 300ms ease;
}

#video-saloes .section-video-demo__screen video.is-ready,
#video-psicologia .section-video-demo__screen video.is-ready { opacity: 1; }

#video-saloes .section-video-demo__fallback,
#video-psicologia .section-video-demo__fallback {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(229, 244, 255, 0.82) 35%, transparent 66%),
    linear-gradient(155deg, #e8f5ff, #b7ddfa);
}

.section-video-demo__fallback small {
  color: #41658f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-video-demo__fallback .section-video-demo__play-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0874f9, #064dcc);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 13px 28px rgba(7, 87, 217, 0.24);
}

@media (max-width: 1366px) {
  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container {
    min-height: 570px;
    padding: 42px 50px;
    border-radius: 30px;
  }

  #video-saloes .section-video-demo__media,
  #video-psicologia .section-video-demo__media { min-height: 490px; }
  #video-saloes .section-video-demo__card--top { left: 3%; }
  #video-psicologia .section-video-demo__card--top { right: 2%; }
}

@media (max-width: 900px) {
  #video-saloes,
  #video-psicologia { padding-inline: 18px; }

  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container {
    padding: 40px 32px 46px;
  }
}

/* Beauty demo composition — scoped exclusively to video-saloes. */
#video-saloes .section-video-demo__container {
  min-height: 640px;
  grid-template-columns: minmax(0, 0.48fr) minmax(390px, 0.52fr);
  gap: clamp(36px, 4vw, 60px);
  padding: clamp(44px, 4vw, 62px);
  border: 1px solid rgba(185, 222, 255, 0.48);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(5, 55, 145, 0.97) 0%, rgba(7, 75, 174, 0.93) 42%, rgba(5, 73, 161, 0.61) 67%, rgba(2, 48, 121, 0.43) 100%),
    linear-gradient(180deg, rgba(10, 93, 198, 0.12), rgba(0, 35, 104, 0.46)),
    url('../images/backgrounds/beleza.jpg') center right / cover no-repeat;
  box-shadow: 0 32px 76px rgba(16, 64, 137, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#video-saloes .section-video-demo__container::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 79% 50%, rgba(76, 180, 255, 0.18), transparent 31%),
    linear-gradient(90deg, rgba(5, 62, 157, 0.17), transparent 58%);
  pointer-events: none;
}

#video-saloes .section-video-demo__content,
#video-saloes .section-video-demo__media { position: relative; z-index: 1; }

#video-saloes .section-video-demo__content { max-width: 570px; }
#video-saloes .section-video-demo__badge {
  margin-bottom: 22px;
  padding: 9px 15px;
  border-color: rgba(203, 232, 255, 0.4);
  background: rgba(12, 78, 174, 0.3);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

#video-saloes h2 {
  max-width: 570px;
  margin-bottom: 22px;
  font-size: clamp(40px, 3.5vw, 54px);
  line-height: 1.08;
}

#video-saloes h2 span { color: #66d8ff; }
#video-saloes .section-video-demo__content > p {
  max-width: 555px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
}

#video-saloes .section-video-demo__benefits { gap: 10px; margin: 22px 0 26px; }
#video-saloes .section-video-demo__benefits li { padding-left: 31px; color: #fff; font-size: 15px; }
#video-saloes .section-video-demo__benefits li::before {
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: linear-gradient(145deg, #37b9ef, #1788d9);
  color: #fff;
}

#video-saloes .section-video-demo__btn {
  min-height: 56px;
  padding-inline: 27px;
  border-radius: 14px;
  background: #fff;
  color: #0762d4;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(0, 29, 94, 0.25);
}

#video-saloes .section-video-demo__media {
  min-height: 550px;
  justify-items: end;
  padding-right: clamp(25px, 4vw, 58px);
}

#video-saloes .section-video-demo__phone {
  width: 292px;
  height: 562px;
  border-radius: 42px;
  transform: rotate(3deg) translateY(4px);
  box-shadow: 0 36px 64px rgba(0, 21, 70, 0.42), 0 0 42px rgba(61, 173, 255, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

#video-saloes .section-video-demo__screen { border-radius: 34px; }
#video-saloes .section-video-demo__glow {
  right: -5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(93, 205, 255, 0.24), transparent 66%);
  filter: blur(7px);
}

#video-saloes .section-video-demo__card {
  width: 196px;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 17px 36px rgba(0, 28, 91, 0.22);
}

#video-saloes .section-video-demo__card-icon { flex-basis: 40px; width: 40px; height: 40px; border-radius: 12px; }
#video-saloes .section-video-demo__card-icon svg { width: 20px; height: 20px; }
#video-saloes .section-video-demo__card strong { font-size: 11.5px; }
#video-saloes .section-video-demo__card small { font-size: 9px; }
#video-saloes .section-video-demo__card--top { top: 14%; left: 2%; transform: rotate(-1deg); }
#video-saloes .section-video-demo__card--bottom { right: -1%; bottom: 8%; transform: rotate(1deg); }

@media (max-width: 1366px) {
  #video-saloes .section-video-demo__container {
    min-height: 560px;
    grid-template-columns: minmax(0, 0.5fr) minmax(330px, 0.5fr);
    gap: 30px;
    padding: 38px 42px;
  }

  #video-saloes h2 { font-size: clamp(36px, 3.2vw, 45px); }
  #video-saloes .section-video-demo__content > p { font-size: 14.5px; }
  #video-saloes .section-video-demo__media { min-height: 490px; padding-right: 28px; }
  #video-saloes .section-video-demo__phone { width: 255px; height: 492px; }
  #video-saloes .section-video-demo__card { width: 174px; padding: 9px 10px; }
  #video-saloes .section-video-demo__card--top { left: 0; }
}

@media (max-width: 900px) {
  #video-saloes .section-video-demo__container { grid-template-columns: 1fr; }
  #video-saloes .section-video-demo__content { max-width: 650px; }
  #video-saloes .section-video-demo__media { justify-items: center; padding-right: 0; }
}

@media (max-width: 600px) {
  #video-saloes .section-video-demo__container {
    min-height: 0;
    padding: 34px 20px 40px;
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(5, 57, 150, 0.97) 0%, rgba(5, 67, 160, 0.91) 58%, rgba(3, 51, 126, 0.74) 100%),
      url('../images/backgrounds/beleza.jpg') 68% center / cover no-repeat;
  }

  #video-saloes h2 { font-size: clamp(31px, 9vw, 38px); }
  #video-saloes .section-video-demo__content > p { font-size: 14px; }
  #video-saloes .section-video-demo__btn { width: 100%; }
  #video-saloes .section-video-demo__media { min-height: 445px; }
  #video-saloes .section-video-demo__phone { width: 225px; height: 434px; transform: rotate(1.5deg); }
  #video-saloes .section-video-demo__card { display: none; }
}

/* Comparative segment demo — isolated test section. */
.segment-video-compare {
  position: relative;
  z-index: 1;
  padding: 48px 20px 56px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9ff, #e9f4ff 48%, #f4f9ff);
}

.segment-video-compare::before,
.segment-video-compare::after { content: ''; position: absolute; left: 0; width: 100%; height: 100px; pointer-events: none; }
.segment-video-compare::before { top: 0; background: linear-gradient(180deg, rgba(73, 157, 240, 0.12), transparent); }
.segment-video-compare::after { bottom: 0; background: linear-gradient(0deg, rgba(104, 177, 243, 0.1), transparent); }
.segment-video-compare > .container { position: relative; z-index: 1; max-width: 1440px; }

.segment-video-compare__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px minmax(0, 1fr);
  min-height: 680px;
  padding: clamp(38px, 3.5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(104, 177, 255, 0.42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 26% 48%, rgba(16, 91, 247, 0.3), transparent 29%),
    radial-gradient(circle at 75% 46%, rgba(20, 91, 244, 0.25), transparent 30%),
    radial-gradient(rgba(80, 148, 255, 0.24) 1px, transparent 1px),
    linear-gradient(120deg, #061b60 0%, #031044 48%, #061b63 100%);
  background-size: auto, auto, 24px 24px, auto;
  box-shadow: 0 34px 80px rgba(11, 48, 115, 0.2), inset 0 1px 0 rgba(255,255,255,.16);
}

.segment-video-compare__panel::before,
.segment-video-compare__panel::after { content: ''; position: absolute; top: -18%; width: 48%; height: 136%; border: 1px solid rgba(70, 139, 255, 0.3); border-radius: 48%; pointer-events: none; }
.segment-video-compare__panel::before { left: -15%; }
.segment-video-compare__panel::after { right: -15%; }

.segment-video-compare__side { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(220px, 1fr) 220px; align-items: center; gap: 22px; }
.segment-video-compare__side--clinic { grid-template-columns: 220px minmax(220px, 1fr); }
.segment-video-compare__copy h2 { margin: 15px 0; color: #fff; font-size: clamp(27px, 2vw, 36px); line-height: 1.14; letter-spacing: -.025em; }
.segment-video-compare__side--beauty h2 span { color: #ff9cc6; }
.segment-video-compare__side--clinic h2 span { color: #3b8cff; }
.segment-video-compare__copy > p { margin: 0; color: rgba(255,255,255,.76); font-size: 13.5px; line-height: 1.55; }
.segment-video-compare__badge { display: inline-flex; padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); color: #dceaff; font-size: 11px; font-weight: 750; }
.segment-video-compare__side--beauty .segment-video-compare__badge { color: #ffafd0; }

.segment-video-compare__benefits { display: grid; gap: 13px; margin: 22px 0; padding: 0; list-style: none; }
.segment-video-compare__benefits li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 10px; align-items: start; }
.segment-video-compare__benefits li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(81,149,255,.5); border-radius: 10px; color: #64a5ff; background: rgba(19,75,174,.22); font-weight: 800; }
.segment-video-compare__side--beauty .segment-video-compare__benefits li > span { border-color: rgba(255,121,181,.45); color: #ff93c1; }
.segment-video-compare__benefits strong,.segment-video-compare__benefits small { display: block; }
.segment-video-compare__benefits strong { color: #fff; font-size: 12px; }
.segment-video-compare__benefits small { margin-top: 2px; color: rgba(255,255,255,.62); font-size: 9.5px; line-height: 1.35; }
.segment-video-compare .segment-video-compare__btn { min-height: 46px; padding: 0 18px; border-radius: 11px; background: linear-gradient(135deg,#1268f4,#2d82ff); color:#fff; font-size:13px; font-weight:800; box-shadow:0 12px 25px rgba(3,51,152,.3); }
.segment-video-compare__side--beauty .segment-video-compare__btn { background:linear-gradient(135deg,#ea609e,#ff78b3); }

.segment-video-compare__center { position: relative; z-index: 3; display: grid; place-items: center; align-content: center; }
.segment-video-compare__center::before { content:''; position:absolute; width:1px; height:78%; background:linear-gradient(transparent,rgba(72,139,255,.28),transparent); }
.segment-video-compare__center span { position:absolute; width:116px; height:116px; border-radius:50%; background:rgba(30,103,255,.2); filter:blur(25px); }
.segment-video-compare__center img { position:relative; width:116px; height:auto; filter:drop-shadow(0 0 18px rgba(44,121,255,.55)); }

.segment-video-compare__visual { position: relative; display:grid; place-items:center; min-height:540px; }
.segment-video-compare__phone { position:relative; z-index:2; width:210px; height:410px; padding:7px; border:1px solid rgba(210,233,255,.75); border-radius:32px; background:linear-gradient(145deg,#fff,#83a9d8,#eef7ff); box-shadow:0 25px 48px rgba(0,8,43,.5),0 0 28px rgba(20,105,255,.26); transform:rotate(2deg); }
.segment-video-compare__side--clinic .segment-video-compare__phone { transform:rotate(-2deg); }
.segment-video-compare__phone > i { position:absolute; z-index:5; top:13px; left:50%; width:55px; height:16px; border-radius:999px; background:#050b19; transform:translateX(-50%); }
.segment-video-compare__screen { position:relative; width:100%; height:100%; overflow:hidden; border-radius:25px; background:linear-gradient(155deg,#e5f3ff,#aecff1); }
.segment-video-compare__screen video { position:relative; z-index:2; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .3s ease; }
.segment-video-compare__screen video.is-ready { opacity:1; }
.segment-video-compare__fallback { position:absolute; inset:0; display:grid; align-content:center; justify-items:center; gap:8px; padding:22px; text-align:center; color:#245999; }
.segment-video-compare__fallback img { width:112px; height:auto; border-radius:5px; mix-blend-mode:multiply; }
.segment-video-compare__fallback b { display:grid; place-items:center; width:48px; height:48px; padding-left:3px; border-radius:50%; background:#1268f4; color:#fff; }
.segment-video-compare__fallback small { font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.segment-video-compare__fallback span { font-size:11px; }
.segment-video-compare__float { position:absolute; z-index:4; width:145px; padding:11px; border:1px solid rgba(255,255,255,.8); border-radius:13px; background:rgba(255,255,255,.95); box-shadow:0 14px 28px rgba(0,17,68,.23); }
.segment-video-compare__float strong,.segment-video-compare__float small { display:block; }
.segment-video-compare__float strong { color:#172642; font-size:10.5px; }
.segment-video-compare__float small { margin-top:4px; color:#647189; font-size:8px; line-height:1.35; }
.segment-video-compare__float--one { top:23%; left:-12px; }
.segment-video-compare__float--two { right:-8px; bottom:16%; }
.segment-video-compare__side--clinic .segment-video-compare__float--one { left:auto; right:-8px; }
.segment-video-compare__side--clinic .segment-video-compare__float--two { right:auto; left:-10px; }

#segment-video-compare + .feature-showcase { margin-top:-18px; }

@media (max-width:1366px) {
  .segment-video-compare__panel { min-height:620px; padding:34px 30px; grid-template-columns:minmax(0,1fr) 92px minmax(0,1fr); }
  .segment-video-compare__side { grid-template-columns:minmax(190px,1fr) 190px; gap:16px; }
  .segment-video-compare__side--clinic { grid-template-columns:190px minmax(190px,1fr); }
  .segment-video-compare__phone { width:184px; height:360px; }
  .segment-video-compare__visual { min-height:470px; }
  .segment-video-compare__copy h2 { font-size:clamp(25px,2vw,31px); }
  .segment-video-compare__center img { width:88px; }
  .segment-video-compare__float { width:126px; }
}

@media (max-width:1100px) {
  .segment-video-compare__panel { grid-template-columns:1fr; gap:42px; }
  .segment-video-compare__center { min-height:90px; }
  .segment-video-compare__center::before { width:70%; height:1px; }
  .segment-video-compare__side { grid-template-columns:minmax(260px,1fr) 230px; max-width:720px; margin:auto; }
  .segment-video-compare__side--clinic { grid-template-columns:230px minmax(260px,1fr); }
}

@media (max-width:650px) {
  .segment-video-compare { padding:28px 12px 38px; }
  .segment-video-compare__panel { padding:34px 20px; border-radius:25px; }
  .segment-video-compare__side,.segment-video-compare__side--clinic { grid-template-columns:1fr; }
  .segment-video-compare__side--clinic .segment-video-compare__visual { order:2; }
  .segment-video-compare__visual { min-height:430px; }
  .segment-video-compare__phone { width:210px; height:410px; }
  .segment-video-compare__float { display:none; }
  .segment-video-compare__copy h2 { font-size:30px; }
  .segment-video-compare .segment-video-compare__btn { width:100%; }
}

@media (max-width: 600px) {
  #video-saloes,
  #video-psicologia { padding: 18px 12px; }

  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container {
    min-height: 0;
    padding: 34px 20px 38px;
    border-radius: 25px;
  }

  #video-saloes .section-video-demo__media,
  #video-psicologia .section-video-demo__media { min-height: 460px; }
}

/* Match the approved video panel's visual proportions. */
#video-saloes,
#video-psicologia {
  padding-top: 26px;
  padding-bottom: 26px;
}

#video-saloes .section-video-demo__container,
#video-psicologia .section-video-demo__container {
  width: min(100%, 1240px);
  min-height: 580px;
  grid-template-columns: minmax(0, 0.47fr) minmax(330px, 0.53fr);
  gap: clamp(40px, 4.5vw, 58px);
  padding: clamp(38px, 3.4vw, 46px);
  border-radius: 32px;
}

#video-saloes .section-video-demo__content,
#video-psicologia .section-video-demo__content { max-width: 545px; }

#video-saloes .section-video-demo__badge,
#video-psicologia .section-video-demo__badge {
  margin-bottom: 16px;
  padding: 7px 12px;
  font-size: 12px;
}

#video-saloes h2,
#video-psicologia h2 {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(35px, 3vw, 44px);
  line-height: 1.09;
}

#video-saloes .section-video-demo__content > p,
#video-psicologia .section-video-demo__content > p {
  max-width: 535px;
  margin-bottom: 9px;
  font-size: 14.5px;
  line-height: 1.5;
}

#video-saloes .section-video-demo__benefits,
#video-psicologia .section-video-demo__benefits {
  gap: 7px;
  margin: 16px 0 19px;
}

#video-saloes .section-video-demo__benefits li,
#video-psicologia .section-video-demo__benefits li { font-size: 14px; }

#video-saloes .section-video-demo__btn,
#video-psicologia .section-video-demo__btn {
  min-height: 50px;
  padding-inline: 21px;
}

#video-saloes .section-video-demo__media,
#video-psicologia .section-video-demo__media { min-height: 500px; }

#video-saloes .section-video-demo__phone,
#video-psicologia .section-video-demo__phone {
  width: 266px;
  height: 512px;
  border-radius: 37px;
}

#video-saloes .section-video-demo__glow,
#video-psicologia .section-video-demo__glow {
  width: 410px;
  height: 410px;
}

#video-saloes .section-video-demo__card,
#video-psicologia .section-video-demo__card {
  width: 174px;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 14px;
}

#video-saloes .section-video-demo__card-icon,
#video-psicologia .section-video-demo__card-icon {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

#video-saloes .section-video-demo__card-icon svg,
#video-psicologia .section-video-demo__card-icon svg { width: 17px; height: 17px; }
#video-saloes .section-video-demo__card strong,
#video-psicologia .section-video-demo__card strong { font-size: 10.5px; }
#video-saloes .section-video-demo__card small,
#video-psicologia .section-video-demo__card small { font-size: 8.5px; }

#video-saloes .section-video-demo__card--top { top: 15%; left: 7%; }
#video-saloes .section-video-demo__card--bottom { right: 4%; bottom: 9%; }
#video-psicologia .section-video-demo__card--top { top: 12%; right: 7%; }
#video-psicologia .section-video-demo__card--bottom { left: 5%; bottom: 11%; }

@media (max-width: 1366px) {
  #video-saloes,
  #video-psicologia { padding-top: 20px; padding-bottom: 20px; }

  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container {
    min-height: 520px;
    gap: 34px;
    padding: 34px 40px;
  }

  #video-saloes h2,
  #video-psicologia h2 { font-size: clamp(33px, 2.8vw, 39px); }
  #video-saloes .section-video-demo__content > p,
  #video-psicologia .section-video-demo__content > p { font-size: 14px; }
  #video-saloes .section-video-demo__media,
  #video-psicologia .section-video-demo__media { min-height: 450px; }
  #video-saloes .section-video-demo__phone,
  #video-psicologia .section-video-demo__phone { width: 238px; height: 458px; }
  #video-saloes .section-video-demo__glow,
  #video-psicologia .section-video-demo__glow { width: 350px; height: 350px; }
}

@media (max-width: 900px) {
  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container {
    grid-template-columns: 1fr;
    padding: 38px 30px 42px;
  }
}

@media (max-width: 600px) {
  #video-saloes,
  #video-psicologia { padding: 14px 12px; }
  #video-saloes .section-video-demo__container,
  #video-psicologia .section-video-demo__container { padding: 32px 20px 36px; }
  #video-saloes h2,
  #video-psicologia h2 { font-size: clamp(30px, 8.6vw, 36px); }
  #video-saloes .section-video-demo__media,
  #video-psicologia .section-video-demo__media { min-height: 430px; }
  #video-saloes .section-video-demo__phone,
  #video-psicologia .section-video-demo__phone { width: 220px; height: 425px; }
}

/* External seams between the approved video sequence and product showcase. */
#video-saloes {
  z-index: 1;
  padding-top: 48px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 157, 255, 0.24), transparent 52%),
    linear-gradient(180deg, #dceeff 0%, #edf6ff 34%, #f3f8ff 100%);
}

#video-saloes::before {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -48px;
  left: 0;
  width: 100%;
  height: 132px;
  background: linear-gradient(180deg, rgba(7, 105, 222, 0.2), rgba(119, 190, 255, 0.12) 48%, transparent 100%);
  filter: blur(10px);
  pointer-events: none;
}

#video-saloes::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  right: 8%;
  bottom: -54px;
  width: 58%;
  height: 118px;
  border-radius: 50%;
  background: rgba(70, 158, 247, 0.1);
  filter: blur(34px);
  pointer-events: none;
}

#video-psicologia {
  z-index: 1;
  padding-top: 48px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(71, 157, 244, 0.13), transparent 50%),
    linear-gradient(180deg, #f3f8ff 0%, #edf5ff 56%, #f5f9ff 100%);
}

#video-psicologia::before {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -38px;
  left: 12%;
  width: 76%;
  height: 116px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(38, 125, 226, 0.14), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

#video-psicologia::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, rgba(94, 172, 248, 0.12), rgba(214, 235, 255, 0.28) 48%, rgba(247, 251, 255, 0) 100%);
  filter: blur(8px);
  pointer-events: none;
}

#video-psicologia + .feature-showcase {
  margin-top: -20px;
  padding-top: calc(clamp(78px, 8vw, 112px) + 30px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(72, 154, 239, 0.11), transparent 38%),
    radial-gradient(circle at 0% 18%, rgba(13, 204, 255, 0.075), transparent 30%),
    radial-gradient(circle at 100% 46%, rgba(71, 96, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #eaf4ff 0%, #f6faff 12%, #edf5ff 52%, #f7fbff 100%);
}

#video-psicologia + .feature-showcase::after {
  content: '';
  top: -62px;
  left: 0;
  right: 0;
  width: auto;
  height: 132px;
  border: 0;
  border-radius: 0;
  clip-path: none;
  opacity: 1;
  background: linear-gradient(180deg, rgba(94, 169, 241, 0.13), rgba(223, 240, 255, 0.22) 48%, transparent 100%);
  filter: blur(7px);
}

@media (max-width: 1366px) {
  #video-saloes,
  #video-psicologia { padding-top: 40px; }
  #video-psicologia + .feature-showcase {
    margin-top: -16px;
    padding-top: calc(clamp(64px, 6vw, 86px) + 26px);
  }
}

@media (max-width: 600px) {
  #video-saloes,
  #video-psicologia { padding-top: 26px; padding-bottom: 18px; }
  #video-saloes::before { top: -26px; height: 82px; filter: blur(7px); }
  #video-saloes::after,
  #video-psicologia::before { height: 76px; filter: blur(18px); }
  #video-psicologia::after { bottom: -42px; height: 94px; }
  #video-psicologia + .feature-showcase {
    margin-top: -10px;
    padding-top: calc(clamp(58px, 12vw, 72px) + 18px);
  }
}

/* Final cascade lock for the beauty composition. */
#video-saloes.section-video-demo--saloes .section-video-demo__container {
  min-height: 640px;
  grid-template-columns: minmax(0, .48fr) minmax(390px, .52fr);
  gap: clamp(36px, 4vw, 60px);
  padding: clamp(44px, 4vw, 62px);
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(5,55,145,.97), rgba(7,75,174,.93) 42%, rgba(5,73,161,.61) 67%, rgba(2,48,121,.43)), linear-gradient(180deg, rgba(10,93,198,.12), rgba(0,35,104,.46)), url('../images/backgrounds/beleza.jpg') center right / cover no-repeat;
}
#video-saloes.section-video-demo--saloes h2 { font-size:clamp(40px,3.5vw,54px); margin-bottom:22px; }
#video-saloes.section-video-demo--saloes .section-video-demo__content>p { font-size:16px; line-height:1.55; margin-bottom:13px; }
#video-saloes.section-video-demo--saloes .section-video-demo__media { min-height:550px; justify-items:end; padding-right:clamp(25px,4vw,58px); }
#video-saloes.section-video-demo--saloes .section-video-demo__phone { width:292px; height:562px; transform:rotate(3deg) translateY(4px); }
#video-saloes.section-video-demo--saloes .section-video-demo__card { width:196px; padding:11px 12px; }
#video-saloes.section-video-demo--saloes .section-video-demo__card--top { top:14%; left:2%; }
#video-saloes.section-video-demo--saloes .section-video-demo__card--bottom { right:-1%; bottom:8%; }

@media (max-width:1366px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__container { min-height:560px; grid-template-columns:minmax(0,.5fr) minmax(330px,.5fr); gap:30px; padding:38px 42px; }
  #video-saloes.section-video-demo--saloes h2 { font-size:clamp(36px,3.2vw,45px); }
  #video-saloes.section-video-demo--saloes .section-video-demo__content>p { font-size:14.5px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__media { min-height:490px; padding-right:28px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__phone { width:255px; height:492px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__card { width:174px; padding:9px 10px; }
}
@media (max-width:900px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__container { grid-template-columns:1fr; }
  #video-saloes.section-video-demo--saloes .section-video-demo__media { justify-items:center; padding-right:0; }
}
@media (max-width:600px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__container { min-height:0; padding:34px 20px 40px; border-radius:26px; background:linear-gradient(180deg,rgba(5,57,150,.97),rgba(5,67,160,.91) 58%,rgba(3,51,126,.74)),url('../images/backgrounds/beleza.jpg') 68% center/cover no-repeat; }
  #video-saloes.section-video-demo--saloes h2 { font-size:clamp(31px,9vw,38px); }
  #video-saloes.section-video-demo--saloes .section-video-demo__content>p { font-size:14px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__media { min-height:445px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__phone { width:225px; height:434px; transform:rotate(1.5deg); }
  #video-saloes.section-video-demo--saloes .section-video-demo__card { display:none; }
}

/* Beauty background balance: preserve the photo and soften the blue treatment. */
#video-saloes.section-video-demo--saloes .section-video-demo__container {
  background:
    linear-gradient(90deg, rgba(5,49,145,.96) 0%, rgba(7,75,175,.88) 34%, rgba(9,96,200,.58) 56%, rgba(8,78,170,.30) 74%, rgba(5,42,120,.34) 100%),
    url('../images/backgrounds/beleza.jpg') center right / cover no-repeat;
}

#video-saloes.section-video-demo--saloes .section-video-demo__container::after {
  background:
    radial-gradient(circle at 79% 47%, rgba(174, 226, 255, 0.17), transparent 32%),
    linear-gradient(90deg, rgba(4, 53, 145, 0.12), transparent 55%);
}

#video-saloes.section-video-demo--saloes .section-video-demo__glow {
  right: 1%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(153, 222, 255, 0.2), rgba(71, 168, 244, 0.08) 44%, transparent 68%);
  filter: blur(5px);
}

#video-saloes.section-video-demo--saloes .section-video-demo__media {
  padding-right: clamp(38px, 5vw, 72px);
}

#video-saloes.section-video-demo--saloes .section-video-demo__phone {
  width: 270px;
  height: 520px;
  transform: rotate(2.5deg) translateY(4px);
  box-shadow: 0 30px 55px rgba(0, 30, 78, 0.3), 0 0 36px rgba(113, 203, 255, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

#video-saloes.section-video-demo--saloes .section-video-demo__card--top {
  top: 16%;
  left: 7%;
}

#video-saloes.section-video-demo--saloes .section-video-demo__card--bottom {
  right: 3%;
  bottom: 10%;
}

@media (max-width:1366px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__media { padding-right: 38px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__phone { width: 242px; height: 466px; }
  #video-saloes.section-video-demo--saloes .section-video-demo__card--top { left: 4%; }
  #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom { right: 2%; }
}

@media (max-width:900px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__media { padding-right: 0; }
}

@media (max-width:600px) {
  #video-saloes.section-video-demo--saloes .section-video-demo__container {
    background:
      linear-gradient(180deg, rgba(5,57,150,.95) 0%, rgba(7,75,167,.82) 58%, rgba(4,51,124,.58) 100%),
      url('../images/backgrounds/beleza.jpg') 68% center / cover no-repeat;
  }
  #video-saloes.section-video-demo--saloes .section-video-demo__phone { width: 218px; height: 420px; transform: rotate(1.5deg); }
}

/* Psychology demo composition — scoped exclusively to video-psicologia. */
#video-psicologia.section-video-demo--psicologia .section-video-demo__container {
  min-height:640px; grid-template-columns:minmax(390px,.52fr) minmax(0,.48fr); gap:clamp(36px,4vw,60px); padding:clamp(44px,4vw,62px); border:1px solid rgba(168,213,255,.42); border-radius:36px;
  background:linear-gradient(90deg,rgba(4,24,80,.48),rgba(4,47,130,.62) 34%,rgba(5,57,150,.82) 58%,rgba(3,31,95,.95)),url('../images/backgrounds/psicologia.jpg') center left/cover no-repeat;
  box-shadow:0 32px 76px rgba(13,53,124,.2),inset 0 1px 0 rgba(255,255,255,.2);
}
#video-psicologia.section-video-demo--psicologia .section-video-demo__container::before { top:0; left:0; width:100%; height:100%; border-radius:inherit; background:radial-gradient(circle at 23% 48%,rgba(113,208,255,.19),transparent 32%),linear-gradient(90deg,transparent 35%,rgba(1,27,85,.1) 62%,rgba(1,21,70,.22)); filter:none; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__content,#video-psicologia.section-video-demo--psicologia .section-video-demo__media { position:relative; z-index:1; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__content { max-width:590px; padding-top:0; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__badge { margin-bottom:22px; padding:9px 15px; border-color:rgba(164,210,255,.48); background:rgba(5,55,145,.28); font-size:13px; backdrop-filter:blur(10px); }
#video-psicologia.section-video-demo--psicologia h2 { max-width:590px; margin-bottom:22px; font-size:clamp(40px,3.5vw,54px); line-height:1.08; }
#video-psicologia.section-video-demo--psicologia h2 span { color:#27c9f4; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__content>p { max-width:575px; margin-bottom:13px; color:rgba(255,255,255,.88); font-size:16px; line-height:1.55; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__benefits { gap:10px; margin:22px 0 26px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__benefits li { padding-left:31px; color:#fff; font-size:15px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__benefits li::before { width:21px; height:21px; border-radius:50%; background:linear-gradient(145deg,#168cff,#0864df); color:#fff; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__btn { min-height:56px; padding-inline:27px; border-radius:14px; background:#fff; color:#0762d4; font-size:16px; box-shadow:0 16px 34px rgba(0,20,78,.26); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__media { min-height:550px; justify-items:start; padding-left:clamp(38px,5vw,72px); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__phone { width:270px; height:520px; transform:rotate(-2.5deg) translateY(4px); box-shadow:0 30px 55px rgba(0,20,70,.34),0 0 38px rgba(93,194,255,.25),inset 0 0 0 2px rgba(255,255,255,.72); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__screen { border-radius:34px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__glow { left:0; width:420px; height:420px; background:radial-gradient(circle,rgba(132,218,255,.22),rgba(61,153,242,.08) 44%,transparent 68%); filter:blur(5px); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card { width:196px; gap:10px; padding:11px 12px; border-radius:16px; background:rgba(255,255,255,.97); box-shadow:0 17px 36px rgba(0,20,78,.24); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card-icon { flex-basis:40px; width:40px; height:40px; border-radius:12px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card-icon svg { width:20px; height:20px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card strong { font-size:11.5px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card small { font-size:9px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card--top { top:15%; left:auto; right:5%; transform:rotate(1deg); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom { left:1%; right:auto; bottom:10%; transform:rotate(-1deg); }
@media(max-width:1366px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container{min-height:560px;grid-template-columns:minmax(330px,.5fr) minmax(0,.5fr);gap:30px;padding:38px 42px}
  #video-psicologia.section-video-demo--psicologia h2{font-size:clamp(36px,3.2vw,45px)}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__content>p{font-size:14.5px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media{min-height:490px;padding-left:38px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__phone{width:242px;height:466px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__card{width:174px;padding:9px 10px}
}
@media(max-width:900px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container{grid-template-columns:1fr}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__content{order:1;max-width:650px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media{order:2;justify-items:center;padding-left:0}
}
@media(max-width:600px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container{min-height:0;padding:34px 20px 40px;border-radius:26px;background:linear-gradient(180deg,rgba(3,31,95,.94),rgba(5,55,145,.84) 58%,rgba(3,29,88,.68)),url('../images/backgrounds/psicologia.jpg') 38% center/cover no-repeat}
  #video-psicologia.section-video-demo--psicologia h2{font-size:clamp(31px,9vw,38px)}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__content>p{font-size:14px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__btn{width:100%}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media{min-height:445px}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__phone{width:218px;height:420px;transform:rotate(-1.5deg)}
  #video-psicologia.section-video-demo--psicologia .section-video-demo__card{display:none}
}

/* Psychology proportions aligned with the compact beauty demo. */
#video-psicologia.section-video-demo--psicologia .section-video-demo__container {
  min-height:580px;
  gap:clamp(32px,3.5vw,48px);
  padding:clamp(38px,3.4vw,46px);
}
#video-psicologia.section-video-demo--psicologia .section-video-demo__badge { margin-bottom:16px; padding:8px 13px; font-size:12px; }
#video-psicologia.section-video-demo--psicologia h2 { max-width:550px; margin-bottom:16px; font-size:clamp(36px,3vw,44px); line-height:1.09; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__content>p { max-width:545px; margin-bottom:9px; font-size:14.5px; line-height:1.5; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__benefits { gap:7px; margin:16px 0 19px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__benefits li { font-size:14px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__btn { min-height:50px; padding-inline:22px; font-size:15px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__media { min-height:480px; padding-left:clamp(34px,4.5vw,62px); }
#video-psicologia.section-video-demo--psicologia .section-video-demo__phone { width:248px; height:478px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__glow { width:370px; height:370px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card { width:174px; gap:8px; padding:9px 10px; border-radius:14px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card-icon { flex-basis:34px; width:34px; height:34px; border-radius:10px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card-icon svg { width:17px; height:17px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card strong { font-size:10.5px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card small { font-size:8.5px; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card--top { top:14%; right:6%; }
#video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom { left:4%; bottom:11%; }

@media(max-width:1366px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container { min-height:520px; gap:28px; padding:34px 40px; }
  #video-psicologia.section-video-demo--psicologia h2 { margin-bottom:14px; font-size:clamp(33px,2.8vw,39px); }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__content>p { margin-bottom:8px; font-size:14px; line-height:1.46; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__benefits { margin:14px 0 17px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media { min-height:435px; padding-left:32px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__phone { width:220px; height:424px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__glow { width:330px; height:330px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__card { width:158px; padding:8px 9px; }
}

@media(max-width:900px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container { padding:38px 30px 42px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media { min-height:430px; padding-left:0; }
}

@media(max-width:600px){
  #video-psicologia.section-video-demo--psicologia .section-video-demo__container { min-height:0; padding:32px 20px 36px; }
  #video-psicologia.section-video-demo--psicologia h2 { font-size:clamp(30px,8.6vw,36px); }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__media { min-height:415px; }
  #video-psicologia.section-video-demo--psicologia .section-video-demo__phone { width:210px; height:405px; }
}

/* Premium video demo group: one visual stage, two connected panels. */
.video-demo-sequence {
  position:relative;
  isolation:isolate;
  padding:clamp(70px,6vw,92px) 0 clamp(86px,7vw,112px);
  background:
    linear-gradient(180deg,#eff7ff 0%,#dceeff 14%,#bfdcff 49%,#e8f5ff 100%);
  overflow:hidden;
}

.video-demo-sequence::before,
.video-demo-sequence::after {
  content:'';
  position:absolute;
  pointer-events:none;
}

.video-demo-sequence::before {
  z-index:-2;
  top:34px;
  bottom:50px;
  left:max(22px,calc((100% - 1320px) / 2));
  right:max(22px,calc((100% - 1320px) / 2));
  border:1px solid rgba(144,199,255,.36);
  border-radius:48px;
  background:
    linear-gradient(180deg,rgba(4,45,130,.9) 0%,rgba(8,91,204,.72) 44%,rgba(4,56,151,.88) 100%),
    radial-gradient(circle at 22% 18%,rgba(123,214,255,.32),transparent 34%),
    radial-gradient(circle at 84% 56%,rgba(58,145,255,.26),transparent 38%),
    url('../images/backgrounds/padrao_abstrato_em_tons_azuis.png') center / cover no-repeat;
  box-shadow:0 34px 90px rgba(17,77,164,.2),inset 0 1px 0 rgba(255,255,255,.22);
}

.video-demo-sequence::after {
  z-index:-1;
  left:0;
  right:0;
  bottom:-1px;
  height:190px;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(83,158,245,.18),transparent 54%),
    linear-gradient(180deg,rgba(226,242,255,0) 0%,rgba(236,247,255,.82) 66%,#f8fbff 100%);
}

.video-demo-sequence > .section-video-demo {
  position:relative;
  z-index:1;
  padding:0;
  overflow:visible;
  border:0;
  background:transparent;
}

.video-demo-sequence > .section-video-demo + .section-video-demo {
  margin-top:38px;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia {
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia::after {
  content:none;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::after {
  content:'';
  position:absolute;
  z-index:0;
  left:50%;
  bottom:-74px;
  width:min(760px,74vw);
  height:150px;
  transform:translateX(-50%);
  border-radius:999px;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(118,208,255,.26),rgba(35,126,245,.17) 46%,transparent 72%);
  filter:blur(22px);
  pointer-events:none;
}

.video-demo-sequence > .section-video-demo > .section-video-demo__container {
  position:relative;
  z-index:1;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(190,225,255,.3);
  background:linear-gradient(135deg,rgba(6,53,151,.84),rgba(7,91,204,.56) 48%,rgba(4,35,115,.78));
  box-shadow:0 24px 62px rgba(0,36,113,.22),inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container {
  background:
    radial-gradient(circle at 78% 44%,rgba(105,210,255,.18),transparent 32%),
    linear-gradient(90deg,rgba(5,48,142,.94) 0%,rgba(7,73,176,.82) 38%,rgba(8,100,208,.6) 63%,rgba(5,48,142,.72) 100%);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container {
  background:
    radial-gradient(circle at 20% 52%,rgba(112,211,255,.18),transparent 32%),
    linear-gradient(90deg,rgba(4,39,126,.76) 0%,rgba(7,81,190,.62) 37%,rgba(5,57,154,.8) 64%,rgba(3,27,94,.94) 100%);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container::before,
.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container::after,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container::before {
  z-index:0;
  background:
    linear-gradient(180deg,rgba(255,255,255,.1),transparent 38%,rgba(0,28,94,.12)),
    radial-gradient(ellipse at 50% 115%,rgba(76,173,255,.2),transparent 58%);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container::after,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container::after {
  z-index:0;
  inset:auto 9% -1px 9%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(190,230,255,.62),transparent);
  opacity:.82;
}

.video-demo-sequence > .section-video-demo .section-video-demo__content,
.video-demo-sequence > .section-video-demo .section-video-demo__media {
  position:relative;
  z-index:1;
}

.video-demo-sequence + .feature-showcase {
  position:relative;
  z-index:1;
  margin-top:0;
}

@media(max-width:1366px){
  .video-demo-sequence{padding:64px 0 86px}
  .video-demo-sequence::before{top:28px;bottom:42px;border-radius:42px}
  .video-demo-sequence > .section-video-demo + .section-video-demo{margin-top:32px}
  .video-demo-sequence > #video-saloes.section-video-demo--saloes::after{bottom:-62px;height:126px}
}

@media(max-width:900px){
  .video-demo-sequence{padding:52px 0 74px}
  .video-demo-sequence::before{left:14px;right:14px;border-radius:32px}
  .video-demo-sequence > .section-video-demo + .section-video-demo{margin-top:28px}
}

@media(max-width:600px){
  .video-demo-sequence{padding:38px 0 58px}
  .video-demo-sequence::before{top:16px;bottom:24px;left:10px;right:10px;border-radius:26px}
  .video-demo-sequence::after{height:126px}
  .video-demo-sequence > .section-video-demo + .section-video-demo{margin-top:24px}
  .video-demo-sequence > #video-saloes.section-video-demo--saloes::after{bottom:-44px;height:88px;filter:blur(16px)}
  .video-demo-sequence > .section-video-demo > .section-video-demo__container{border-radius:24px}
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container{
    background:
      radial-gradient(circle at 50% 36%,rgba(116,210,255,.18),transparent 36%),
      linear-gradient(180deg,rgba(4,45,139,.94),rgba(7,78,180,.78) 58%,rgba(3,31,101,.9));
  }
}

/* Final phone/card polish for the two video demos, based on the approved section-blue mockup. */
.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__media,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__media {
  isolation:isolate;
  overflow:visible;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
  width:clamp(246px,20vw,292px);
  height:auto;
  aspect-ratio:9 / 16;
  padding:10px;
  overflow:visible;
  border:1px solid rgba(230,243,255,.5);
  border-radius:31px;
  background:
    radial-gradient(circle at 50% 18%,rgba(87,202,255,.22),transparent 44%),
    linear-gradient(180deg,#06256f 0%,#03184d 100%);
  box-shadow:
    0 30px 70px rgba(0,20,82,.32),
    0 0 0 8px rgba(255,255,255,.07),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone {
  transform:rotate(2.2deg) translateY(3px);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
  transform:rotate(-2.2deg) translateY(3px);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone::before,
.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone::after,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone::after {
  content:'';
  position:absolute;
  inset:10px;
  border-radius:24px;
  pointer-events:none;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone::before {
  z-index:4;
  background:linear-gradient(135deg,rgba(255,255,255,.16),transparent 35%);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone::after,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone::after {
  z-index:1;
  background:radial-gradient(circle at 50% 48%,rgba(255,255,255,.14),transparent 42%);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__speaker,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__speaker {
  top:18px;
  width:70px;
  height:19px;
  z-index:6;
  background:#07152e;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen {
  height:100%;
  overflow:hidden;
  border-radius:24px;
  background:
    radial-gradient(circle at 50% 36%,rgba(255,255,255,.14),transparent 43%),
    linear-gradient(180deg,#082a7d,#04184c);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen video,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen video {
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  border-radius:24px;
  object-fit:contain;
  object-position:center;
  background:#03194f;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__fallback,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__fallback {
  z-index:1;
  border-radius:24px;
  background:
    radial-gradient(circle at 50% 40%,rgba(255,255,255,.94),rgba(230,244,255,.84) 39%,transparent 68%),
    linear-gradient(180deg,#eaf6ff,#c3e5ff);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__glow,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__glow {
  z-index:0;
  width:390px;
  height:390px;
  background:radial-gradient(circle,rgba(117,211,255,.2),rgba(58,154,245,.08) 45%,transparent 70%);
  filter:blur(8px);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card {
  z-index:5;
  width:166px;
  gap:8px;
  padding:9px 10px;
  border-radius:15px;
  border-color:rgba(215,234,255,.9);
  box-shadow:0 16px 34px rgba(0,24,90,.2);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card-icon,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card-icon {
  flex-basis:34px;
  width:34px;
  height:34px;
  border-radius:10px;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom {
  left:calc(50% + 128px);
  right:auto;
  bottom:13%;
  transform:rotate(1deg) translateY(8px);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom {
  right:calc(50% + 128px);
  left:auto;
  bottom:13%;
  transform:rotate(-1deg) translateY(8px);
}

@media(max-width:1366px){
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
    width:clamp(220px,18vw,242px);
    border-radius:29px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen,
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen video,
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__fallback,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen video,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__fallback {
    border-radius:22px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card {
    width:152px;
    padding:8px 9px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom {
    left:calc(50% + 108px);
    bottom:12%;
  }

  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom {
    right:calc(50% + 108px);
    bottom:12%;
  }
}

@media(max-width:900px){
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__media,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__media {
    min-height:430px;
    padding-inline:0;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom {
    display:none;
  }
}

@media(max-width:600px){
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
    width:min(220px,70vw);
    padding:8px;
    border-radius:27px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen,
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen video,
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__fallback,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen video,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__fallback {
    border-radius:21px;
  }
}

/* Light premium redesign for the salons and psychology video sequence. */
.video-demo-sequence {
  position:relative;
  isolation:isolate;
  padding:clamp(52px,4vw,72px) 0 clamp(64px,5vw,84px);
  color:#0b1f4d;
  background:
    radial-gradient(circle at 78% 8%,rgba(110,194,255,.28),transparent 30%),
    radial-gradient(circle at 18% 62%,rgba(191,226,255,.34),transparent 34%),
    linear-gradient(180deg,#f8fcff 0%,#eef8ff 45%,#f7fcff 100%);
  overflow:hidden;
}

.video-demo-sequence::before,
.video-demo-sequence::after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  z-index:-1;
  pointer-events:none;
  background-repeat:no-repeat;
  background-size:100% 100%;
}

.video-demo-sequence::before {
  top:0;
  height:210px;
  background-image:url("data:image/svg+xml,%3Csvg width='1440' height='210' viewBox='0 0 1440 210' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237FC5FF' stroke-opacity='.28' stroke-width='1.2'%3E%3Cpath d='M-80 148C170 92 312 96 514 128c250 40 420 46 670-72 116-55 214-65 336-37'/%3E%3Cpath d='M-80 166C174 111 318 114 522 146c250 39 417 42 664-74 118-55 216-64 338-35'/%3E%3Cpath d='M-80 184C178 130 326 132 530 164c248 38 414 38 660-75 119-55 218-63 340-34'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.78;
}

.video-demo-sequence::after {
  bottom:-4px;
  height:245px;
  background:
    url("data:image/svg+xml,%3Csvg width='1440' height='245' viewBox='0 0 1440 245' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237FC5FF' stroke-opacity='.32' stroke-width='1.15'%3E%3Cpath d='M-70 92C151 163 312 179 540 138c256-46 383-87 636 10 121 46 230 61 344 30'/%3E%3Cpath d='M-70 112C153 183 315 197 542 156c254-46 381-84 633 11 122 46 231 59 345 28'/%3E%3Cpath d='M-70 132C155 203 318 215 544 174c252-45 379-81 630 12 122 45 232 57 346 26'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg,rgba(248,252,255,0),#f8fbff 82%);
  opacity:.9;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo {
  position:relative;
  z-index:1;
  padding:0;
  overflow:visible;
  border:0;
  background:transparent;
  color:#0b1f4d;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo + .section-video-demo {
  margin-top:clamp(28px,2.4vw,40px);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::before,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia::before {
  content:'';
  position:absolute;
  z-index:0;
  top:0;
  bottom:0;
  height:auto;
  width:min(760px,62vw);
  display:block;
  border-radius:72px;
  background-repeat:no-repeat;
  background-size:cover;
  filter:blur(1.2px) saturate(.92) contrast(.96);
  opacity:.78;
  transform:scale(1.01);
  pointer-events:none;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::before {
  left:auto;
  right:max(0px,calc((100% - 1280px) / 2));
  background-image:
    linear-gradient(90deg,#f8fcff 0%,rgba(248,252,255,.62) 23%,rgba(248,252,255,.1) 63%,rgba(248,252,255,.3) 100%),
    url('../images/backgrounds/beleza.jpg');
  background-position:center right;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 18%,#000 88%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 18%,#000 88%,transparent 100%);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia::before {
  left:max(0px,calc((100% - 1280px) / 2));
  right:auto;
  background-image:
    linear-gradient(90deg,rgba(248,252,255,.28) 0%,rgba(248,252,255,.08) 40%,rgba(248,252,255,.7) 78%,#f8fcff 100%),
    url('../images/backgrounds/psicologia.jpg');
  background-position:center left;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 82%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 82%,transparent 100%);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::after,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia::after {
  content:'';
  position:absolute;
  z-index:0;
  display:block;
  inset:auto 7% -36px 7%;
  height:96px;
  border-radius:999px;
  background:radial-gradient(ellipse at 50% 50%,rgba(80,174,255,.16),transparent 70%);
  filter:blur(18px);
  pointer-events:none;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes::after {
  inset:auto 0 -122px;
  height:220px;
  border-radius:0;
  background:
    url("data:image/svg+xml,%3Csvg width='1440' height='220' viewBox='0 0 1440 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237FC5FF' stroke-opacity='.42' stroke-width='1.15'%3E%3Cpath d='M-80 74C148 152 322 180 557 140c258-44 410-102 655-17 119 42 214 54 308 30'/%3E%3Cpath d='M-80 94C151 172 326 198 560 158c257-44 407-98 651-15 120 41 215 52 309 27'/%3E%3Cpath d='M-80 114C154 192 330 216 563 176c255-43 404-94 647-13 120 40 216 49 310 24'/%3E%3C/g%3E%3C/svg%3E") center/100% 100% no-repeat,
    radial-gradient(ellipse at 50% 54%,rgba(80,174,255,.12),transparent 68%);
  filter:none;
  opacity:.72;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo > .section-video-demo__container {
  position:relative;
  z-index:1;
  display:grid;
  align-items:center;
  max-width:1180px;
  min-height:clamp(520px,34vw,600px);
  gap:clamp(34px,3.2vw,54px);
  padding:clamp(26px,2.2vw,38px) clamp(28px,2.6vw,42px);
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container {
  grid-template-columns:minmax(0,.95fr) minmax(360px,.95fr);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container {
  grid-template-columns:minmax(360px,.95fr) minmax(0,.95fr);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo > .section-video-demo__container::before,
.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo > .section-video-demo__container::after {
  content:none;
  display:none;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content,
.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__media {
  position:relative;
  z-index:1;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content {
  max-width:540px;
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__content {
  order:2;
  max-width:560px;
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__media {
  order:1;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__badge {
  margin-bottom:16px;
  padding:8px 14px;
  border:1px solid rgba(64,151,238,.28);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#0967d8;
  box-shadow:0 10px 28px rgba(32,118,220,.08);
  backdrop-filter:blur(12px);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo h2 {
  max-width:560px;
  margin-bottom:18px;
  color:#0a1d49;
  font-size:clamp(40px,2.9vw,50px);
  line-height:1.1;
  letter-spacing:-.01em;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo h2 span {
  color:#35bceb;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content > p {
  max-width:520px;
  margin-bottom:10px;
  color:#33456b;
  font-size:clamp(16px,.9vw,17px);
  line-height:1.5;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits {
  gap:9px;
  margin:18px 0 22px;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits li {
  min-height:26px;
  padding-left:40px;
  color:#0b2a62;
  font-size:14.5px;
  font-weight:750;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits li::before {
  width:26px;
  height:26px;
  border-radius:50%;
  background:linear-gradient(145deg,#168cff,#0864df);
  color:#fff;
  box-shadow:0 9px 20px rgba(8,100,223,.22);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__btn {
  min-height:52px;
  padding:0 26px;
  border:1px solid rgba(202,224,250,.72);
  border-radius:15px;
  background:#fff;
  color:#075fd8;
  box-shadow:0 16px 34px rgba(15,74,150,.14);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,color .25s ease,background .25s ease;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__btn:hover {
  background:#fff;
  color:#064fc0;
  border-color:rgba(149,196,244,.75);
  box-shadow:0 20px 42px rgba(15,74,150,.18);
  transform:translateY(-1px);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__media {
  display:grid;
  place-items:center;
  min-height:clamp(500px,37vw,600px);
  overflow:visible;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__media {
  justify-items:center;
  padding-right:clamp(24px,4vw,54px);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__media {
  justify-items:center;
  padding-left:clamp(20px,4vw,46px);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__glow {
  width:390px;
  height:390px;
  background:radial-gradient(circle,rgba(82,176,255,.22),rgba(102,191,255,.1) 45%,transparent 72%);
  filter:blur(9px);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
  width:clamp(270px,21vw,330px);
  height:auto;
  aspect-ratio:9 / 16;
  padding:10px;
  border:1px solid rgba(207,226,249,.72);
  border-radius:33px;
  background:linear-gradient(180deg,#f7fbff 0%,#c7d9ef 42%,#07172f 100%);
  box-shadow:0 32px 72px rgba(17,60,128,.2),0 0 0 8px rgba(255,255,255,.62),inset 0 1px 0 rgba(255,255,255,.88);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone {
  transform:rotate(5deg) translateY(2px);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
  transform:rotate(-4deg) translateY(4px);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen,
.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen video,
.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__fallback {
  border-radius:25px;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen {
  background:#eaf5ff;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen video {
  object-fit:cover;
  object-position:center;
  background:transparent;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card {
  display:flex;
  z-index:6;
  width:172px;
  gap:10px;
  padding:12px 13px;
  border:1px solid rgba(214,231,250,.92);
  border-radius:16px;
  background:rgba(255,255,255,.96);
  box-shadow:0 18px 40px rgba(28,78,140,.14);
  backdrop-filter:blur(12px);
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card-icon {
  flex:0 0 38px;
  width:38px;
  height:38px;
  border-radius:12px;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card strong {
  color:#102b5c;
  font-size:11px;
}

.video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card small {
  color:#5f718f;
  font-size:8.6px;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--top {
  top:35%;
  left:calc(50% + 142px);
  right:auto;
  transform:rotate(1deg);
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom {
  top:55%;
  left:calc(50% + 148px);
  right:auto;
  bottom:auto;
  transform:rotate(-1deg);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--top {
  top:34%;
  right:calc(50% + 142px);
  left:auto;
  transform:rotate(-1deg);
}

.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom {
  top:54%;
  right:calc(50% + 148px);
  left:auto;
  bottom:auto;
  transform:rotate(1deg);
}

.video-demo-sequence + .feature-showcase {
  margin-top:0;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(101,178,245,.1),transparent 36%),
    linear-gradient(180deg,#f7fcff 0,#eef6ff 180px,#f3f8ff 520px,#f7fbff 100%);
}

.video-demo-sequence + #product-features.feature-showcase::before {
  -webkit-mask-image:linear-gradient(180deg,transparent 0,#000 190px);
  mask-image:linear-gradient(180deg,transparent 0,#000 190px);
}

.video-demo-sequence + #product-features.feature-showcase::after {
  top:0;
  bottom:auto;
  height:220px;
  background:linear-gradient(180deg,#f7fcff 0%,rgba(247,252,255,.86) 38%,rgba(247,252,255,0) 100%);
  opacity:1;
}

@media(max-width:1366px){
  .video-demo-sequence {
    padding:46px 0 58px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo + .section-video-demo {
    margin-top:26px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo > .section-video-demo__container {
    min-height:520px;
    gap:30px;
    padding:30px 34px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo h2 {
    margin-bottom:16px;
    font-size:clamp(36px,2.8vw,38.5px);
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content > p {
    font-size:14.5px;
    line-height:1.5;
    margin-bottom:9px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__badge {
    margin-bottom:14px;
    padding:7px 12px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits {
    gap:7px;
    margin:14px 0 18px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits li {
    min-height:24px;
    padding-left:36px;
    font-size:14px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__benefits li::before {
    width:24px;
    height:24px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__btn {
    min-height:50px;
    padding-inline:24px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__media {
    min-height:490px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
    width:260px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card {
    width:154px;
    padding:9px 10px;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--top {
    left:calc(50% + 132px);
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__card--bottom {
    left:calc(50% + 138px);
  }

  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--top {
    right:calc(50% + 132px);
  }

  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__card--bottom {
    right:calc(50% + 138px);
  }
}

@media(max-width:1100px){
  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card {
    display:none;
  }
}

@media(max-width:900px){
  .video-demo-sequence {
    padding:52px 0 72px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo > .section-video-demo__container,
  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__container,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__container {
    grid-template-columns:1fr;
    min-height:0;
    gap:30px;
    padding:34px 22px 42px;
  }

  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__content,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__media {
    order:initial;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content {
    max-width:680px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo h2 {
    font-size:clamp(31px,8vw,40px);
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__media {
    min-height:430px;
    padding-inline:0;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__card {
    display:none;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes::before,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia::before {
    width:100%;
    opacity:.62;
    filter:blur(2px) saturate(.88);
    -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 88%,transparent 100%);
    mask-image:linear-gradient(180deg,#000 0%,#000 88%,transparent 100%);
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes::before {
    background-image:
      linear-gradient(180deg,rgba(248,252,255,.96) 0%,rgba(248,252,255,.9) 38%,rgba(248,252,255,.42) 72%,rgba(248,252,255,.24) 100%),
      url('../images/backgrounds/beleza.jpg');
  }

  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia::before {
    background-image:
      linear-gradient(180deg,rgba(248,252,255,.96) 0%,rgba(248,252,255,.9) 42%,rgba(248,252,255,.42) 74%,rgba(248,252,255,.22) 100%),
      url('../images/backgrounds/psicologia.jpg');
  }
}

@media(max-width:600px){
  .video-demo-sequence {
    padding:40px 0 58px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo + .section-video-demo {
    margin-top:30px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__badge {
    margin-bottom:16px;
    padding:8px 13px;
    font-size:11px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo h2 {
    font-size:clamp(30px,9vw,36px);
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__content > p {
    font-size:14px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__btn {
    width:100%;
  }

  .video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__phone,
  .video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__phone {
    width:min(238px,72vw);
    padding:8px;
    border-radius:28px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen,
  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__screen video,
  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__fallback {
    border-radius:21px;
  }

  .video-demo-sequence > :is(#video-saloes, #video-psicologia).section-video-demo .section-video-demo__media {
    min-height:410px;
  }
}

/* Preserve the intrinsic video ratio inside the two vertical demo screens. */
.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen {
  position:relative;
  width:100%;
  height:100%;
  aspect-ratio:9 / 16;
  overflow:hidden;
  background:#000;
}

.video-demo-sequence > #video-saloes.section-video-demo--saloes .section-video-demo__screen > video,
.video-demo-sequence > #video-psicologia.section-video-demo--psicologia .section-video-demo__screen > video {
  position:relative;
  inset:auto;
  z-index:2;
  display:block;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  max-width:none;
  max-height:none;
  margin:0;
  padding:0;
  border:0;
  aspect-ratio:auto;
  object-fit:cover;
  object-position:center center;
  transform:none;
  scale:none;
  pointer-events:auto;
  box-sizing:border-box;
}

/* Keep the primary plan CTA fully legible on hover. */
.plans-section .plan-card > .btn.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 14px 30px rgba(0, 83, 214, 0.26);
}

/* Keep the header trial CTA label visible on hover. */
header .btn.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 12px 26px rgba(0, 83, 214, 0.24);
}

/* Keep the showcase CTA label visible on hover. */
.showcase-cta .btn.btn-primary:hover,
.showcase-cta .showcase-main-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 14px 30px rgba(0, 83, 214, 0.26);
}

.showcase-cta .btn:hover span,
.showcase-cta .showcase-main-btn:hover span {
  color: #ffffff;
  opacity: 1;
}

/* Keep the mobile-section trial CTA label visible on hover. */
.section-mobile .btn.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 14px 30px rgba(0, 83, 214, 0.26);
}

.section-mobile .btn.btn-primary:hover span,
.section-mobile .btn.btn-primary:hover svg {
  color: #ffffff;
  opacity: 1;
}

/* Keep the Salons hero trial CTA label visible on hover. */
.hero--saloes-premium .hero-buttons .btn.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 14px 30px rgba(0, 83, 214, 0.26);
}

.hero--saloes-premium .hero-buttons .btn.btn-primary:hover span {
  color: #ffffff;
  opacity: 1;
}

/* Final specificity guard for the feature showcase CTA. */
.feature-showcase .showcase-cta a.btn.showcase-main-btn:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  visibility: visible;
}

.feature-showcase .showcase-cta a.btn.showcase-main-btn:hover span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  visibility: visible;
}

/* Keep the Psychology hero trial CTA label visible on hover. */
.hero--psicologia-premium .hero-buttons .btn.btn-primary:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  background: linear-gradient(135deg, #0757d9 0%, #0045bd 100%);
  border-color: transparent;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 14px 30px rgba(0, 83, 214, 0.26);
}

.hero--psicologia-premium .hero-buttons .btn.btn-primary:hover span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  visibility: visible;
}

/* Sound control for the single opt-in autoplay demo. */
[data-autoplay-on-view] .section-video-demo__screen {
  position: relative;
}

[data-autoplay-on-view] .section-video-demo__sound-toggle {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 49, 132, 0.78);
  box-shadow: 0 10px 26px rgba(2, 24, 72, 0.24);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

[data-autoplay-on-view] .section-video-demo__sound-toggle:hover {
  color: #ffffff;
  background: rgba(0, 68, 196, 0.94);
  box-shadow: 0 14px 30px rgba(2, 24, 72, 0.3);
  transform: translateX(-50%) translateY(-1px);
}

[data-autoplay-on-view] .section-video-demo__sound-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

[data-autoplay-on-view] .section-video-demo__sound-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-autoplay-on-view] .section-video-demo__sound-toggle[hidden] {
  display: none;
}
