:root {
  --primary: #426266;
  --primary-dark: #2f4b4f;
  --primary-light: #5a8589;
  --gold: #9a7550;
  --gold-light: #c4a07a;
  --bg: #f0f5f5;
  --bg-soft: #e8eeee;
  --surface: #ffffff;
  --text: #1c2d31;
  --muted: #4e6669;
  --border: #dce8e8;
  --border-strong: #c4d4d4;
  --shadow-sm: 0 4px 12px rgba(28, 46, 50, 0.08);
  --shadow: 0 12px 32px rgba(28, 46, 50, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: rgba(66, 98, 102, 0.2);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 68px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(28, 46, 50, 0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 204px;
  height: 74px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: var(--primary-dark);
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: rgba(66, 98, 102, 0.12);
  color: var(--primary-dark);
  outline: none;
}

.main-nav .menu-cta {
  background: var(--primary);
  color: #fff;
}

.main-nav .menu-cta:hover,
.main-nav .menu-cta:focus-visible {
  background: var(--primary-dark);
  color: #fff;
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: #f6fbfb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

main > section:not(.hero):not(.section):not(.cta):not(.support-strip) {
  padding: 2.85rem 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 4.3vw, 3.35rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.75rem);
  margin-bottom: 0.9rem;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.hero {
  padding: 2.7rem 0 2rem;
}

.hero .hero-grid {
  min-height: 560px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.hero-copy {
  padding: 0.7rem 0.1rem;
}

.hero-copy h1 {
  max-width: 16ch;
}

.hero-copy .lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.68rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary-dark);
}

.hero-stats {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-stat {
  border-left: 1px solid var(--border-strong);
  padding-left: 0.6rem;
}

.hero-stat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.24rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-media {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  border-radius: 0 0 140px 140px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-image.is-active {
  display: block;
  opacity: 0.95;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(28, 45, 49, 0.52);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(28, 45, 49, 0.72);
}

.carousel-prev {
  left: 0.9rem;
}

.carousel-next {
  right: 0.9rem;
}

.carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.42rem;
  z-index: 2;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: #ffffff;
}

.hero-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(26, 44, 49, 0.78);
  color: #fff;
  padding: 0.5rem 0.72rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.center-head {
  text-align: center;
}

.center-head .section-intro {
  margin-inline: auto;
}

.center-head h2 {
  max-width: 24ch;
  margin-inline: auto;
}

.channel-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.channel-card {
  background: rgba(66, 98, 102, 0.08);
  border: 1px solid rgba(66, 98, 102, 0.18);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
}

.channel-card h3 {
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
  min-height: 2.5em;
}

.channel-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 4.2em;
}

.channel-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: auto;
  border-radius: 10px;
  border: 1px solid rgba(66, 98, 102, 0.26);
}

.channel-image--whatsapp {
  object-position: center 58%;
}

.channel-image--docs {
  object-position: center 54%;
}

.channel-image--online {
  object-position: center 45%;
}

.media-placeholder {
  border: 1px dashed rgba(66, 98, 102, 0.4);
  border-radius: 10px;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.7rem;
  color: var(--primary-dark);
  background: linear-gradient(130deg, rgba(66, 98, 102, 0.08), rgba(154, 117, 80, 0.14));
  font-weight: 600;
}

.media-placeholder small {
  display: block;
  margin-top: 0.3rem;
  font-weight: 500;
  color: var(--muted);
}

.channel-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.compare-grid h2 {
  margin: 0;
  max-width: 12ch;
}

.compare-grid h2 strong {
  color: var(--primary);
}

.comparison-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.72rem 0.84rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

thead th:first-child {
  background: var(--primary-dark);
  color: #fff;
}

thead th:last-child {
  background: #cfd9d9;
  color: #2a3f44;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody td:first-child {
  background: #ebf2f2;
  color: var(--primary-dark);
  font-weight: 600;
}

.plans-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.plan-card {
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border);
  min-height: 320px;
}

.plan-card h3 {
  margin-bottom: 0.3rem;
}

.plan-price {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.24rem;
}

.plan-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.plan-card ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.plan-card li + li {
  margin-top: 0.3rem;
}

.plan-base {
  background: #e8eeee;
}

.plan-mid {
  background: linear-gradient(150deg, var(--primary), #5f8488);
  color: #f4f8f8;
  border-color: rgba(255, 255, 255, 0.25);
}

.plan-mid .plan-sub,
.plan-mid li {
  color: #e3eff1;
}

.plan-pro {
  background: linear-gradient(155deg, var(--primary-dark), #1f3a3d);
  color: #eff6f6;
  border-color: rgba(255, 255, 255, 0.24);
}

.plan-pro .plan-sub,
.plan-pro li {
  color: #d8e7e9;
}

.plan-cta {
  margin-top: auto;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.review-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(150deg, rgba(66, 98, 102, 0.2), rgba(154, 117, 80, 0.22));
  border: 1px solid var(--border);
}

.review-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.review-cards {
  display: grid;
  gap: 0.7rem;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  background: var(--surface);
}

.review-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.review-card strong {
  color: var(--primary-dark);
}

.support-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.support-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--surface);
}

.support-card h3 {
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-text p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.about-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 24%;
  display: block;
  border-bottom: 1px solid var(--border);
}

.team-meta {
  padding: 0.65rem;
}

.team-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.team-meta span {
  font-size: 0.78rem;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 0.9rem;
}

.faq-media {
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(66, 98, 102, 0.16), rgba(154, 117, 80, 0.2));
}

.faq-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.faq-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.95rem;
}

.faq-box h2 {
  margin-bottom: 0.6rem;
}

.faq-list {
  display: grid;
  gap: 0.45rem;
}

details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.66rem 0.74rem;
  background: #fbfdfd;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
}

details p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(145deg, #2f4b4f, #426266);
  color: #eff6f7;
  border-radius: 16px;
  padding: 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.final-cta-copy h2 {
  margin-bottom: 0.4rem;
  max-width: 24ch;
}

.final-cta-copy p {
  max-width: 62ch;
}

.final-cta p {
  margin: 0;
  color: #d3e5e7;
}

.final-cta-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.final-cta-actions .btn {
  min-height: 40px;
  padding: 0.62rem 1rem;
}

.final-cta .btn-primary {
  background: #f3f8f8;
  color: #2b4448;
}

.final-cta .btn-primary:hover,
.final-cta .btn-primary:focus-visible {
  background: #ffffff;
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #f2f7f7;
}

.footer {
  margin-top: 2.6rem;
  background: #234348;
  color: #d7e7e9;
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0.85rem;
}

.footer h3 {
  margin-bottom: 0.45rem;
  color: #fff;
}

.footer p,
.footer a,
.footer li {
  font-size: 0.89rem;
  color: #d7e7e9;
}

.footer ul {
  margin: 0;
  padding-left: 1rem;
}

.copyright {
  margin-top: 1rem;
  border-top: 1px solid rgba(220, 232, 232, 0.25);
  padding-top: 0.75rem;
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 78px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1fa254;
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 50;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.support-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #ffffff;
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -2px 12px rgba(28, 46, 50, 0.08);
}

.support-strip .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.support-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.support-actions .btn {
  padding: 0.56rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex: 0 0 auto;
  line-height: 1.1;
}

@media (max-width: 1000px) {
  .hero-grid,
  .compare-grid,
  .review-grid,
  .about-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-grid,
  .plans-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-image {
    min-height: 340px;
  }

  .hero .hero-grid {
    min-height: 500px;
  }

  .hero-copy h1,
  .center-head h2 {
    max-width: 100%;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .faq-media {
    min-height: 320px;
  }

  .faq-image {
    min-height: 320px;
  }

  .support-strip .container {
    flex-direction: column;
    justify-content: center;
    padding: 0.4rem 0;
    min-height: 72px;
  }

  .support-actions {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
  }

  .support-actions .btn {
    padding: 0.5rem 0.78rem;
    font-size: 0.74rem;
  }

  main > section:not(.hero):not(.section):not(.cta):not(.support-strip) {
    padding: 2rem 0;
  }

  .final-cta {
    padding: 1.25rem;
  }

  .final-cta-actions {
    gap: 0.55rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.72rem;
    box-shadow: var(--shadow-sm);
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.79rem;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .hero .hero-grid {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .support-actions {
    gap: 0.35rem;
  }

  .support-actions .btn {
    padding: 0.48rem 0.68rem;
    font-size: 0.7rem;
  }
}

/* Compatibility layer for legacy page sections */
.section-white {
  background: #f6fbfb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(66, 98, 102, 0.12);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem;
}

.card h3,
.card h2 {
  margin-bottom: 0.45rem;
  color: var(--primary-dark);
}

.card h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.2;
}

.card p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(66, 98, 102, 0.09);
  color: var(--primary-dark);
  margin-bottom: 0.55rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.hero-points {
  margin: 0.5rem 0 0.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
}

.hero-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 0.12rem;
  color: var(--primary-dark);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
}

.testimonial p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.avatar {
  border-radius: 999px;
}

.rating {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.reviews-link {
  margin-top: 0.8rem;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  margin-top: 0.65rem;
}

.team-grid {
  display: grid;
  gap: 0.8rem;
}

.team-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem;
}

.team-avatar img {
  border-radius: 10px;
}

.team-role,
.team-crc,
.team-bio,
.team-note {
  color: var(--muted);
}

.cta {
  padding: 2.8rem 0;
}

.cta .container {
  background: linear-gradient(145deg, #2f4b4f, #426266);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  color: #ecf5f6;
  box-shadow: var(--shadow-sm);
}

.cta .container p {
  color: #d6e6e8;
  max-width: 60ch;
}

.cta-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: #f3f8f8;
  color: #2b4448;
}

.cta .btn-primary:hover,
.cta .btn-primary:focus-visible {
  background: #ffffff;
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #f2f7f7;
}

.faq {
  display: grid;
  gap: 0.45rem;
}

.faq details {
  background: var(--surface);
}

.breadcrumbs ol {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1000px) {
  .cards,
  .testimonials,
  .split {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
  }
}

/* Glassmorphism global layer */
body {
  background: linear-gradient(160deg, #edf6f6, #dcebec);
}

.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1200px 480px at -10% -10%, rgba(66, 98, 102, 0.22), transparent 60%),
    radial-gradient(900px 460px at 110% 0%, rgba(154, 117, 80, 0.2), transparent 58%),
    linear-gradient(160deg, #edf6f6, #dcebec);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.28;
  filter: saturate(1.02) contrast(1);
  transition: opacity 1.2s ease;
}

.bg-video.is-fading {
  opacity: 0;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(950px 420px at 20% 12%, rgba(255, 255, 255, 0.45), transparent 70%),
    linear-gradient(160deg, rgba(240, 245, 245, 0.64), rgba(232, 238, 238, 0.76));
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.topbar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

.hero > .container,
.section > .container,
.section-white > .container,
.cta > .container {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(20, 44, 48, 0.16);
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
  padding: 1rem;
}

.section-alt {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.hero-media,
.channel-card,
.comparison-wrap,
.review-card,
.support-card,
.team-card,
.faq-box,
.faq-media,
details,
.card,
.testimonial {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.final-cta,
.cta .container {
  background: linear-gradient(145deg, rgba(47, 75, 79, 0.78), rgba(66, 98, 102, 0.74));
}

.footer {
  background: rgba(28, 56, 60, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer > .container {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.2rem 1.35rem;
}

.section > .container.final-cta {
  background: linear-gradient(145deg, rgba(47, 75, 79, 0.9), rgba(66, 98, 102, 0.88));
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.section > .container.final-cta p {
  color: #deecee;
}

.support-strip {
  background: rgba(255, 255, 255, 0.82);
  border-top-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

@media (max-width: 900px) {
  .bg-video {
    opacity: 0.18;
  }

  .bg-overlay {
    background:
      radial-gradient(800px 360px at 18% 8%, rgba(255, 255, 255, 0.52), transparent 70%),
      linear-gradient(160deg, rgba(240, 245, 245, 0.74), rgba(232, 238, 238, 0.84));
  }

  .hero > .container,
  .section > .container,
  .section-white > .container,
  .cta > .container,
  .footer > .container {
    padding: 0.85rem;
    border-radius: 14px;
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
  }

  .footer > .container {
    padding: 1rem 1rem;
  }
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(28, 45, 49, 0.94);
  color: #f0f5f5;
  border-top: 1px solid rgba(196, 160, 122, 0.45);
  box-shadow: 0 -8px 32px rgba(28, 46, 50, 0.28);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.85rem;
}

.cookie-bar-copy {
  max-width: 72ch;
}

.cookie-bar-title {
  margin: 0 0 0.2rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.cookie-bar-copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #deecee;
}

.cookie-bar-copy a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-bar .btn {
  padding: 0.56rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.cookie-bar .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.cookie-bar .btn-secondary:hover,
.cookie-bar .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body.nazare-consent-open {
  padding-bottom: 168px;
}

body.nazare-consent-open .support-strip {
  bottom: auto;
  visibility: hidden;
}

@media (max-width: 760px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar-actions {
    width: 100%;
  }

  .cookie-bar .btn {
    flex: 1;
  }

  body.nazare-consent-open {
    padding-bottom: 240px;
  }
}

#proximo-passo {
  scroll-margin-top: 6.5rem;
}

.diagnostic-section .center-head h2 {
  max-width: 28ch;
}

.diagnostic-form {
  margin-top: 1.3rem;
  padding: 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

.door-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.door-fieldset legend {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.door-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: 100%;
  padding: 0.85rem 0.85rem 0.95rem 2.2rem;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  color: var(--text);
}

.door-card::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0.7rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  border: 2px solid var(--border-strong);
  background: #fff;
}

.door-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.door-who {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.door-card strong {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary-dark);
}

.door-card:hover,
.door-card:focus-within {
  border-color: var(--primary);
}

.door-card:has(input:checked) {
  border-color: var(--primary);
  background: rgba(66, 98, 102, 0.12);
  box-shadow: var(--shadow-sm);
}

.door-card:has(input:checked)::before {
  border-color: var(--primary);
  background: radial-gradient(circle, var(--primary) 0 38%, #fff 42%);
}

.door-card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.diagnostic-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.diagnostic-fields__wide {
  grid-column: 1 / -1;
}

.diagnostic-form .btn {
  width: 100%;
  min-height: 48px;
  white-space: normal;
  text-wrap: balance;
}

.diagnostic-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.diagnostic-note a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.lead-form select,
.lead-form textarea {
  min-height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  caret-color: var(--primary);
}

.lead-form textarea {
  min-height: 6.2rem;
  resize: vertical;
}

.lead-form select:focus-visible,
.lead-form textarea:focus-visible,
.lead-form input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}

.lead-form ::placeholder {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .door-grid,
  .diagnostic-fields {
    grid-template-columns: 1fr;
  }

  .diagnostic-fields__wide {
    grid-column: auto;
  }
}
