:root {
  --azuni-navy: #012342;
  --azuni-teal: #48b9bc;
  --azuni-teal-2: #51c7b8;
  --azuni-ink: #0b1320;
  --azuni-bg: #ffffff;
  --azuni-muted: #5c6678;
  --azuni-surface: #f6f8fb;
  --azuni-border: rgba(1, 35, 66, 0.14);

  --radius: 4px;
  --shadow: 0 18px 45px rgba(1, 35, 66, 0.12);
  --container: 1120px;
}

:where(*):not(:where(button, .btn, [role="button"])) {
  border-radius: var(--radius);
}

:where(button, .btn, [role="button"]):not(:focus-visible) {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.topbar :where(button, .btn, [role="button"]):not(:focus-visible) {
  box-shadow: none;
}

.topbar :where(a.nav__cta.submenu-toggle):not(:focus-visible) {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--azuni-ink);
  background: var(--azuni-bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 10px 12px;
  border-radius: 0;
  background: var(--azuni-navy);
  color: #fff;
  transform: translateY(-200%);
  z-index: 50;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--azuni-border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 152px;
  height: auto;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--azuni-border);
  background: #fff;
  color: var(--azuni-navy);
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 650;
}

.nav__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 185, 188, 0.22);
  border-color: rgba(72, 185, 188, 0.7);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__item {
  position: relative;
}

.nav__menu a,
.nav__menu button.nav__link {
  text-decoration: none;
  color: var(--azuni-navy);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 34px;
}

.nav__menu button.nav__link {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav__menu a:hover,
.nav__menu a:focus-visible,
.nav__menu button.nav__link:hover,
.nav__menu button.nav__link:focus-visible {
  background: rgba(72, 185, 188, 0.14);
  outline: none;
}

.nav__menu a[aria-current="page"],
.nav__menu button.nav__link[aria-current="page"] {
  background: rgba(1, 35, 66, 0.06);
}

.nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--azuni-border);
  border-radius: 0;
  box-shadow: var(--shadow);
  z-index: 60;
}

.nav__submenu a {
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
}

.nav__item:hover > .nav__submenu,
.nav__item:focus-within > .nav__submenu,
.nav__item.submenu-open > .nav__submenu {
  display: flex;
}

.chevron {
  margin-left: 6px;
  transition: transform 160ms ease;
}

.nav__item:hover .chevron,
.nav__item:focus-within .chevron,
.nav__item.submenu-open .chevron {
  transform: rotate(180deg);
}

.nav__cta {
  background: linear-gradient(135deg, var(--azuni-teal), var(--azuni-teal-2));
  color: #072130;
  border: 1px solid rgba(1, 35, 66, 0.06);
}

.hero {
  padding: 80px 0 80px;
  background-color: var(--azuni-surface);
  background-image: none;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.page-home .hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), url("assets/hero_session.jpg");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), image-set(url("assets/hero_session.webp") 1x, url("assets/hero_session.jpg") 1x);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.page-renovacao .hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), url("assets/renovacao_hero_bg.jpg");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), image-set(url("assets/renovacao_hero_bg.webp") 1x, url("assets/renovacao_hero_bg.jpg") 1x);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.page-sobre .hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), url("assets/quem_somos_hero_bg.jpg");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), image-set(url("assets/quem_somos_hero_bg.webp") 1x, url("assets/quem_somos_hero_bg.jpg") 1x);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.page-b2b .hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), url("assets/b2b_hero_bg.jpg");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 65%), image-set(url("assets/b2b_hero_bg.webp") 1x, url("assets/b2b_hero_bg.jpg") 1x);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.page-planos .hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), url("assets/planos_hero_bg.jpeg");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), image-set(url("assets/planos_hero_bg.webp") 1x, url("assets/planos_hero_bg.jpeg") 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__inner {
  display: block;
}

.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.hero--split .hero__panel {
  justify-self: start;
}

.hero--split .panel-card {
  border: 1px solid var(--azuni-border);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
}

.hero__copy {
  max-width: 600px; /* Limit text width to ensuring it stays on the left */
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--azuni-border);
  border-radius: 999px;
  color: var(--azuni-navy);
  font-weight: 650;
  background: rgba(255, 255, 255, 0.75);
}

h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
  color: var(--azuni-navy);
}

h2 {
  margin: 0;
  color: var(--azuni-navy);
  letter-spacing: -0.01em;
}

h3 {
  margin: 18px 0 8px;
  color: var(--azuni-navy);
  letter-spacing: -0.01em;
}

.lead {
  font-size: 18px;
  color: var(--azuni-muted);
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius:34px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 185, 188, 0.22);
}

.btn--primary {
  background: linear-gradient(135deg, var(--azuni-teal), var(--azuni-teal-2));
  color: #072130;
}

.btn--ghost {
  background: #fff;
  border-color: var(--azuni-border);
  color: var(--azuni-navy);
}

.btn--full {
  width: 100%;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mini {
  border: 1px solid var(--azuni-border);
  border-radius: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.mini__kpi {
  font-weight: 850;
  color: var(--azuni-navy);
}

.mini__text {
  font-size: 13px;
  color: var(--azuni-muted);
  margin-top: 4px;
}

/* .hero__panel styles removed */

.checklist,
.bullets {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--azuni-muted);
}

.checklist li,
.bullets li {
  margin: 2px 0;
}

.link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--azuni-navy);
  font-weight: 750;
  text-decoration: none;
}

.link:hover,
.link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.section {
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
@media (max-width: 768px){
  .section{
    padding-top: 10px;
  }  
}
.section--alt {
  background: var(--azuni-surface);
  border-top: 1px solid rgba(1, 35, 66, 0.06);
  border-bottom: 1px solid rgba(1, 35, 66, 0.06);
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
}

.section__head p {
  margin: 0;
  color: var(--azuni-muted);
  font-size: 16px;
}

.pillars {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--azuni-muted);
}

.pillars strong {
  color: var(--azuni-navy);
}

.note {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid rgba(1, 35, 66, 0.14);
  background: rgba(72, 185, 188, 0.08);
  color: var(--azuni-navy);
  font-size: 14px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.card {
  border: 1px solid var(--azuni-border);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
}

.card--media {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

/* Overlay escuro para contraste do texto */
.card--media::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg,rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 60%); */
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* .card--media:hover::before {
  background: linear-gradient(180deg, rgba(1, 35, 66, 0) 0%, rgba(1, 35, 66, 0.95) 90%);
} */

.card--media h3 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.card--media p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.card--bg-pacientes {
  background-image: url("assets/card-pacientes.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card--bg-medicos {
  background-image: url("assets/doctor_computer_table.jpg");
  background-image: image-set(url("assets/doctor_computer_table.webp") 1x, url("assets/doctor_computer_table.jpg") 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card--bg-sistema {
  background-image: url("assets/card-sistema.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card--feature {
  /* background: linear-gradient(180deg, #fff, rgba(72, 185, 188, 0.06)); */
}
.card--content { 
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: var(--radius);
  padding: 5%;
}

.features {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

#produto .product-tech__grid > .card {
  display: flex;
  flex-direction: column;
}

.feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--azuni-border);
  border-radius: 0;
  padding: 18px;
  background: #fff;
}

.feature--text {
  grid-template-columns: 1fr;
}

.feature__media {
  border-radius: 0;
  border: 1px solid rgba(1, 35, 66, 0.10);
  background: radial-gradient(520px 260px at 30% 0%, rgba(72, 185, 188, 0.20), rgba(72, 185, 188, 0)),
    linear-gradient(180deg, rgba(1, 35, 66, 0.03), rgba(1, 35, 66, 0));
  overflow: hidden;
}

.feature__img {
  width: 100%;
  height: auto;
}

.feature__body h3 {
  margin: 0 0 8px;
}

.feature:nth-child(even) .feature__media {
  grid-column: 2;
}

.feature:nth-child(even) .feature__body {
  grid-column: 1;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--azuni-navy);
}

.card p {
  margin: 0;
  color: var(--azuni-muted);
}

.legal {
  margin-top: 22px;
  max-width: 920px;
}

.legal p {
  margin: 10px 0 0;
  color: var(--azuni-muted);
}

.legal a {
  color: var(--azuni-navy);
}

.legal a:hover,
.legal a:focus-visible {
  outline: none;
  text-decoration: underline;
}

.strong {
  font-weight: 800;
  color: var(--azuni-navy);
  margin: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.price {
  position: relative;
  border: 1px solid var(--azuni-border);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price > .btn {
  margin-top: auto;
}

.price--featured {
  border-color: rgba(72, 185, 188, 0.55);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 0;
  background: rgba(72, 185, 188, 0.18);
  color: var(--azuni-navy);
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(72, 185, 188, 0.36);
}

.price__top h3 {
  margin: 0;
  color: var(--azuni-navy);
}

.price__value {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--azuni-navy);
}

.price__period {
  font-size: 14px;
  font-weight: 750;
  color: var(--azuni-muted);
}

.price__hint {
  margin: 8px 0 0;
  color: var(--azuni-muted);
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat {
  border: 1px solid var(--azuni-border);
  border-radius: 0;
  padding: 18px;
  background: #fff;
}

.stat__value {
  font-weight: 950;
  font-size: 26px;
  color: var(--azuni-navy);
}

.stat__label {
  margin-top: 6px;
  color: var(--azuni-muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.step {
  border: 1px solid var(--azuni-border);
  border-radius: 0;
  padding: 18px;
  background: #fff;
}

.cta {
  background: linear-gradient(135deg, rgba(1, 35, 66, 0.96), rgba(1, 35, 66, 0.82)),
    radial-gradient(900px 420px at 20% 0%, rgba(72, 185, 188, 0.36), rgba(72, 185, 188, 0));
  color: #fff;
}

@media (max-width: 768px) {
  .cta__copy {
    margin-bottom: 2%;
  }
  .lead, .cta__copy span, .cta__copy li {
    font-size: 15px;
  }
}

.cta h2 {
  color: #fff;
}

.cta .lead {
  color: rgba(255, 255, 255, 0.85);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.cta .panel-card {
  margin-left: 10%;
  color: #fff;
}

.cta .panel-card__title {
  color: #fff;
}

.cta .panel-card .checklist {
  color: #fff;
}

.cta .panel-card .link {
  color: #fff;
}

.contact {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.cta h1 {
  color: var(--azuni-teal);
}

.contact__k {
  display: inline-block;
  width: 92px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact a:hover,
.contact a:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.form__row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.form__row--inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form__row--inline input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--azuni-teal);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.input {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input:focus-visible {
  border-color: rgba(72, 185, 188, 0.85);
  box-shadow: 0 0 0 4px rgba(72, 185, 188, 0.22);
}

select.input {
  color: #fff;
}

select.input option {
  color: var(--azuni-ink);
}

.fineprint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.form__status {
  margin-top: 10px;
  font-weight: 750;
  font-size: 13px;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(1, 35, 66, 0.08);
  background: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 1px 220px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--azuni-muted);
  font-weight: 700;
}

.footer__brand p {
  margin: 0;
  margin-top: 1%;
  font-size: 13px;
}
@media (max-width: 786px) {
  .footer__brand p {
    font-size: 11px;
  }
}

.footer__brand a {
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 35, 66, 0.18);
}

.footer__brand a:hover,
.footer__brand a:focus-visible {
  border-bottom-color: rgba(1, 35, 66, 0.5);
  outline: none;
}

.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--azuni-border);
  border-radius: 0;
  background: #fff;
  padding: 12px 14px;
}

.faq__item summary {
  cursor: pointer;
  color: var(--azuni-navy);
  font-weight: 800;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 185, 188, 0.22);
  border-radius: 0;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--azuni-muted);
}

.footer__meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--azuni-muted);
  font-weight: 650;
  font-size: 13px;
}
@media (max-width: 768px){
  .footer__meta{
    font-size: 11px;
  }
}

/* --- New Components Styles --- */

.hidden {
  display: none !important;
}

/* Wizard de Elegibilidade */
.wizard {
  background: #fff;
  border: 1px solid var(--azuni-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 22px;
}

.wizard__question {
  font-size: 18px;
  font-weight: 700;
  color: var(--azuni-navy);
  margin-bottom: 16px;
}

.wizard__options {
  display: flex;
  gap: 12px;
}

.wizard__result {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 600;
}

.wizard__result--success {
  background-color: rgba(72, 185, 188, 0.15);
  color: #004d40;
  border: 1px solid rgba(72, 185, 188, 0.4);
}

.wizard__result--warning {
  background-color: rgba(255, 193, 7, 0.15);
  color: #856404;
  border: 1px solid rgba(255, 193, 7, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--azuni-teal);
  color: var(--azuni-teal); /* Ajuste de contraste pode ser necessário, usando teal base */
  color: #006064; /* Cor mais escura para contraste */
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(72, 185, 188, 0.1);
}

/* Simulador de Prazo */
.simulator {
  margin-top: 22px;
  margin-bottom: 2%;
  max-width: 480px;
}

.simulator__result {
  margin-top: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--azuni-border);
  border-radius: var(--radius);
  color: var(--azuni-navy);
}

.simulator__result strong {
  color: var(--azuni-teal);
}

.footer__meta a {
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 35, 66, 0.18);
}

.footer__meta a:hover,
.footer__meta a:focus-visible {
  border-bottom-color: rgba(1, 35, 66, 0.5);
  outline: none;
}

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

  .hero--split .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero--split .hero__panel {
    justify-self: stretch;
  }

  .page-home .hero {
    background-position: 80% center;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.3) 100%), url("assets/hero_session.jpg");
  }

  .hero__copy {
    max-width: 100%;
  }

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

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

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

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

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

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

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

  #produto .product-tech__grid {
    grid-template-columns: 1fr;
  }

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

  .feature:nth-child(even) .feature__media,
  .feature:nth-child(even) .feature__body {
    grid-column: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    right: 24px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--azuni-border);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    width: min(320px, calc(100vw - 48px));
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    padding: 12px 12px;
  }
  
  .nav__menu button.nav__link {
    padding: 12px 12px;
    text-align: left;
  }

  .nav__submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    display: none;
  }

  .nav__item:hover > .nav__submenu,
  .nav__item:focus-within > .nav__submenu {
    display: none;
  }

  .nav__item.submenu-open > .nav__submenu {
    display: flex;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    width: clamp(80%, calc(100% - 48px), 90%);
  }
}

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

/* Table Styles */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--azuni-border);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--azuni-border);
}

.comparison-table th {
  background: var(--azuni-surface);
  color: var(--azuni-navy);
  font-weight: 800;
  text-align: left;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--azuni-navy);
}

.comparison-table th.center-header {
    text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: rgba(72, 185, 188, 0.05);
}

.table-container {
    overflow-x: auto;
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 6px;
    font-size: 14px;
  }
}
