/* === TOKENS === */
:root {
  --c-primary: #0F2E4D;
  --c-cta: #0B8A5C;
  --c-cta-hover: #097A50;
  --c-accent: #16C47F;
  --c-bg: #FFFFFF;
  --c-bg-2: #F4F7FA;
  --c-dark: #0F2E4D;
  --c-text: #14202E;
  --c-text-2: #51606E;
  --c-on-dark: #FFFFFF;
  --c-on-dark-2: #A9BBCE;
  --c-border: #E2E8EF;
  --c-green-light: #E7F6EF;
  --c-green-bg: #EAF7F2;
  --c-pasi: #0E7D82;
  --c-pasi-hover: #0B6569;
  --c-pasi-light: #E0F2F1;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1120px;
  --shadow: 0 4px 20px rgba(15, 46, 77, .08);
  --shadow-lg: 0 18px 50px rgba(15, 46, 77, .16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -.01em
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

section {
  padding: 96px 0
}

/* === FOCUS / A11Y === */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 138, 92, .55);
  border-radius: var(--r-sm)
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 200
}

.skip:focus {
  left: 0
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  border-radius: var(--r-md);
  padding: 16px 28px;
  min-width: 240px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .15s ease, transform .15s ease, border-color .15s ease
}

.btn-primary {
  background: var(--c-cta);
  color: #fff
}

.btn-primary:hover {
  background: var(--c-cta-hover)
}

.btn-primary:active {
  transform: scale(.98)
}

.btn-ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary)
}

.btn-ghost:hover {
  background: var(--c-bg-2)
}

.btn .arrow {
  font-size: 18px;
  line-height: 1
}

.btn-sm {
  min-width: auto;
  padding: 11px 20px;
  font-size: 15px
}



/* === HERO === */
.hero {
  padding: 96px 0 80px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 40%, rgba(255, 255, 255, 0) 58%), url('../assets/estagiaro.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-cta);
  margin-bottom: 20px
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 0 rgba(22, 196, 127, .6);
  animation: pulse 2s infinite
}

h1.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.15;
  letter-spacing: -.02em
}

.text-highlight {
  color: var(--c-cta)
}

.desktop-only {
  display: inline
}

.hero-sub {
  font-size: 18px;
  color: var(--c-text-2);
  margin: 24px 0 16px;
  max-width: 46ch
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 9999px;
  padding: 8px 18px;
  margin: 18px 0 26px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-text-2);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(15, 46, 77, .04)
}

.price-chip .price-val {
  color: var(--c-primary);
  font-weight: 700
}

.price-chip b {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-primary)
}

.price-chip small {
  color: var(--c-text-2);
  font-size: 15px;
  font-weight: 500
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--c-text-2)
}

.cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.tick {
  color: var(--c-cta);
  font-weight: 700
}

/* === HERO VISUAL: apólice emitida === */
.visual {
  position: relative;
  display: flex;
  justify-content: center
}

.policy-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  overflow: hidden
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-cta))
}

.pc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 18px
}

.pc-issuer {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary);
  font-size: 15px
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-green-light);
  color: var(--c-cta);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 9999px
}

.pc-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-cta);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px
}

.pc-line {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 14px
}

.pc-line:last-child {
  border-bottom: none
}

.pc-line span:first-child {
  color: var(--c-text-2)
}

.pc-line span:last-child {
  font-weight: 600;
  color: var(--c-text)
}

.pc-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-text-2);
  display: flex;
  align-items: center;
  gap: 8px
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 0 rgba(22, 196, 127, .6);
  animation: pulse 2s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 196, 127, .5)
  }

  70% {
    box-shadow: 0 0 0 12px rgba(22, 196, 127, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 196, 127, 0)
  }
}

/* === TRUST STRIP === */
.trust {
  background: var(--c-primary);
  padding: 22px 0
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 32px
}

.trust-item {
  color: var(--c-on-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: .95
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent)
}

/* === SECTION HEADS === */
.sec-head {
  max-width: 38ch;
  margin-bottom: 48px
}

.sec-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.sec-head.center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 48ch;
}

.sec-head .eyebrow {
  margin-bottom: 14px
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--c-primary)
}

.sec-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--c-text-2)
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  background: var(--c-green-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 42px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 46, 77, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 46, 77, 0.08);
}

.step-n {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-cta);
  box-shadow: 0 2px 6px rgba(11, 138, 92, 0.3);
  z-index: 2;
}

.step-n::before {
  content: counter(step);
}

.step-ico {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-primary);
  box-shadow: 0 2px 8px rgba(15, 46, 77, 0.04);
}

.step-ico svg {
  width: 32px;
  height: 32px;
}

.step h3 {
  font-size: 18px;
  color: var(--c-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.step p {
  color: var(--c-text-2);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .steps {
    gap: 48px;
  }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -44px;
    width: 40px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6H32' stroke='%230B8A5C' stroke-width='2' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3Cpath d='M30 2L34 6L30 10' stroke='%230B8A5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

/* === STEPS TRUST BAR === */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-green-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px 32px;
  margin-top: 48px;
  box-shadow: 0 4px 12px rgba(15, 46, 77, 0.02);
}

.steps-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  color: var(--c-primary);
  font-size: 16px;
  flex: 1;
}

.steps-bar-item:not(:last-child) {
  border-right: 1px solid var(--c-border);
}

@media (max-width: 768px) {
  .steps-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .steps-bar-item {
    width: 100%;
    justify-content: center;
  }
  .steps-bar-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 16px;
  }
}

/* === COBERTURAS === */
.cover {
  background: var(--c-bg-2)
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.cover-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.cover-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-green-light);
  display: flex;
  align-items: center;
  justify-content: center
}

.cover-ico svg {
  width: 22px;
  height: 22px;
  fill: var(--c-cta)
}

.cover-card h3 {
  font-size: 18px;
  color: var(--c-primary);
  margin-bottom: 6px
}

.cover-card p {
  font-size: 14px;
  color: var(--c-text-2)
}

.cover-ico-pasi {
  background: var(--c-pasi-light)
}

.cover-ico-pasi svg {
  fill: var(--c-pasi)
}

.cover-tag-pasi {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-pasi);
  background: var(--c-pasi-light);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.4
}

/* === POR QUE OKENA === */
.why {
  background: var(--c-primary);
  color: var(--c-on-dark)
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center
}

.why h2 {
  color: #fff
}

.why .eyebrow {
  color: var(--c-accent)
}

.why p.lead {
  font-size: 18px;
  color: var(--c-on-dark-2);
  margin: 18px 0 28px
}

.why .quote {
  border-left: 3px solid var(--c-accent);
  padding-left: 18px;
  font-size: 17px;
  color: #fff;
  font-style: italic;
  margin-bottom: 28px
}

.why-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: 30px
}

.why-panel ul {
  list-style: none
}

.why-panel li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 15px;
  color: #fff
}

.why-panel li:last-child {
  border-bottom: none
}

.why-panel li .tick {
  color: var(--c-accent)
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto
}

details.faq {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden
}

details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

details.faq summary::-webkit-details-marker {
  display: none
}

.faq .ico {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease
}

details.faq[open] .ico {
  background: var(--c-cta);
  color: #fff;
  border-color: var(--c-cta);
  transform: rotate(45deg)
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--c-text-2);
  font-size: 15px
}

/* === CTA FINAL === */
.final {
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FA 100%)
}

.final h2 {
  font-size: 40px;
  max-width: 18ch;
  margin: 0 auto 26px
}

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.final .cta-meta {
  justify-content: center
}

/* === FOOTER === */
footer {
  background: #0B2238;
  color: var(--c-on-dark-2);
  padding: 56px 0 36px;
  font-size: 14px
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px
}

footer .logo {
  margin-bottom: 16px;
}

footer .logo img {
  height: 42px;
  display: block;
}

footer a {
  color: var(--c-on-dark-2)
}

footer a:hover {
  color: #fff
}

.foot-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600
}

.foot-col p,
.foot-col a {
  display: block;
  margin-bottom: 7px;
  line-height: 1.5
}

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #7d90a3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.foot-legal-text {
  flex: 1;
  min-width: 280px;
}

.foot-credit {
  flex-shrink: 0;
}

.foot-credit img {
  height: 22px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: block;
}

.foot-credit img:hover {
  opacity: 1;
}



/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* === RESPONSIVE === */
@media (max-width:980px) {
  .hero {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0) 55%), url('../assets/estagiario-mobile.webp');
    background-position: center 30%;
    padding: 64px 0 380px;
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .visual {
    display: none
  }

  h1.hero-title {
    font-size: 40px
  }

  .desktop-only {
    display: none
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .cover-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:600px) {
  section {
    padding: 56px 0
  }

  .hero {
    padding: 56px 0 350px
  }

  h1.hero-title {
    font-size: 34px;
    max-width: none
  }

  .hero-sub {
    font-size: 17px
  }

  h2 {
    font-size: 27px
  }

  .final h2 {
    font-size: 28px
  }

  .btn {
    width: 100%
  }



  .hero .cta-meta {
    visibility: hidden
  }
}

@media (max-width:360px) {
  .wrap {
    padding: 0 16px;
  }

  .btn {
    font-size: 14px;
    padding: 14px 16px;
  }
}

@media (min-width: 1480px) {
  .hero {
    background-position: right 10%;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .pulse {
    animation: none
  }

  * {
    transition: none !important
  }
}

/* === LAW LINK HIGHLIGHTS === */
.law-link {
  color: var(--c-cta);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.law-link:hover {
  color: var(--c-cta-hover);
}

.trust .law-link {
  color: var(--c-accent);
}

.trust .law-link:hover {
  color: #fff;
}

/* === OUTROS SEGUROS ESCOLARES === */
.school-promo {
  background: var(--c-cta);
  padding: 64px 0;
  color: #fff;
}

.school-promo .light-text h2,
.school-promo .light-text p {
  color: #fff;
}

.school-promo .light-text .eyebrow {
  color: var(--c-green-light);
}

.school-promo .light-text .eyebrow::before {
  background: var(--c-green-light);
}

.school-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.school-promo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.school-promo-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.school-promo-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.btn-white {
  background: #fff;
  color: var(--c-cta);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--c-green-light);
  color: var(--c-cta-hover);
  border-color: var(--c-green-light);
}

@media (max-width: 768px) {
  .school-promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === SEÇÃO DE PLANOS (SLIDER) === */
.plans {
  background: var(--c-bg); /* Fundo branco solicitado */
  padding: 96px 0;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  gap: 24px;
  width: 100%;
  padding: 16px 4px;
}

.slider-track::-webkit-scrollbar {
  display: none; /* Webkit */
}

.slider-item {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 itens por slide */
  scroll-snap-align: start;
  box-sizing: border-box;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 12px rgba(15, 46, 77, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 46, 77, 0.08);
  border-color: var(--c-cta);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-badge {
  display: inline-block;
  background: var(--c-green-bg);
  color: var(--c-cta);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.plan-header h3 {
  font-size: 24px;
  color: var(--c-primary);
  font-weight: 800;
}

.plan-capital {
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.plan-capital .label {
  display: block;
  font-size: 12px;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.plan-capital .value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-primary);
}

.plan-capital .value small {
  font-size: 18px;
  font-weight: 700;
}

.plan-benefits {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1; /* Faz a lista crescer para alinhar os botões */
  padding-left: 0;
}

.plan-benefits li {
  font-size: 14px;
  color: var(--c-text-2);
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-benefits li:last-child {
  border-bottom: none;
}

.plan-benefit-detail {
  display: block;
  font-size: 11px;
  color: var(--c-text-2);
  font-weight: normal;
  margin-top: 2px;
}

.plan-benefits li strong {
  color: var(--c-primary);
}

.plan-benefits li.benefit-highlight {
  background: var(--c-green-light);
  color: var(--c-cta);
  border: 1.5px solid rgba(11, 138, 92, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 6px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(11, 138, 92, 0.04);
  border-bottom: 1.5px solid rgba(11, 138, 92, 0.2);
}

.plan-benefits li.benefit-highlight strong {
  color: var(--c-cta) !important;
}

.plan-benefits li.benefit-highlight svg {
  flex-shrink: 0;
  color: var(--c-cta);
  animation: floatIcon 2.5s ease-in-out infinite;
}

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

.plan-price {
  margin-bottom: 24px;
}

.plan-price .price-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-cta);
  display: block;
  line-height: 1;
}

.plan-price .price-period {
  font-size: 13px;
  color: var(--c-text-2);
  font-weight: 500;
}

.btn-full {
  width: 100%;
}

/* Setas do Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 46, 77, 0.08);
  z-index: 10;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  padding: 0;
}

.slider-arrow:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 6px 16px rgba(15, 46, 77, 0.16);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow.prev {
  left: -24px;
}

.slider-arrow.next {
  right: -24px;
}

@media (max-width: 1200px) {
  .slider-arrow.prev {
    left: -12px;
  }
  .slider-arrow.next {
    right: -12px;
  }
}

@media (max-width: 980px) {
  .slider-item {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 itens por slide */
  }
  .slider-container {
    padding-top: 68px;
  }
  .slider-arrow {
    display: flex;
    top: 10px;
    transform: none;
  }
  .slider-arrow.prev {
    left: calc(50% - 56px);
    right: auto;
  }
  .slider-arrow.next {
    left: calc(50% + 8px);
    right: auto;
  }
}

@media (max-width: 600px) {
  .slider-item {
    flex: 0 0 100%; /* 1 item por slide */
  }
}

/* === HERO DUAL OPTIONS === */
.hero-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 24px 0;
  max-width: 520px;
}

.hero-option-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(15, 46, 77, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.hero-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 46, 77, 0.1);
}

.option-capemisa:hover {
  border-color: var(--c-cta);
}

.option-pasi:hover {
  border-color: var(--c-pasi);
}

.hoc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.insurer-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.tag-capemisa {
  background: var(--c-green-light);
  color: var(--c-cta);
}

.tag-pasi {
  background: var(--c-pasi-light);
  color: var(--c-pasi);
}

.hoc-price {
  font-size: 13px;
  color: var(--c-text-2);
  font-weight: 500;
}

.hoc-price b {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-primary);
}

.hoc-desc {
  font-size: 13.5px;
  color: var(--c-text-2);
  margin-bottom: 20px;
  line-height: 1.45;
  flex-grow: 1;
}

.hoc-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* PASI button styles */
.btn-pasi {
  background: var(--c-pasi);
  color: #fff;
}

.btn-pasi:hover {
  background: var(--c-pasi-hover);
}

@media (max-width: 768px) {
  .hero-options {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
}

/* === PLANS TAB SELECTOR === */
.plans-selector-wrapper {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.plans-selector {
  display: inline-flex;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  padding: 6px;
  border-radius: 9999px;
  box-shadow: inset 0 2px 4px rgba(15, 46, 77, 0.02);
}

.plans-selector .selector-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text-2);
  background: transparent;
  border: none;
  padding: 10px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.plans-selector .selector-btn.active {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(15, 46, 77, 0.08);
}

.plans-selector .selector-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(11, 138, 92, 0.4);
}

.hidden {
  display: none !important;
}

