@charset "UTF-8";
:root {
  /* Paleta oficial DPrime Tech */
  --primary: #202a33;      /* navy da marca */
  --primary-soft: #2d3a46;
  --secondary: #61686f;    /* cinza medio da marca */
  --neutral: #959a9e;      /* cinza claro de apoio */

  /* Cor de destaque: da energia ao navy da marca sem competir com ele */
  --accent: #00b8d4;
  --accent-strong: #0091ad;
  --accent-soft: rgba(0, 184, 212, 0.12);
  --gradient-accent: linear-gradient(120deg, #00b8d4, #17d1a8);

  --bg: #f5f7f9;
  --text: #202a33;
  --muted: #61686f;
  --card: #ffffff;
  --border: #e2e5e8;
  --shadow: 0 18px 40px rgba(32, 42, 51, 0.12);
  --shadow-hover: 0 24px 50px rgba(32, 42, 51, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 184, 212, 0.10), transparent 42%),
    radial-gradient(circle at 88% 2%, rgba(23, 209, 168, 0.10), transparent 38%),
    var(--bg);
  line-height: 1.6;
}

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

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

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  padding: 48px 0 88px;
}

.container {
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 8px 0;
}

h1, h2 {
  letter-spacing: -0.02em;
}

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

.muted {
  color: var(--muted);
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-styled li + li {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary), var(--primary-soft));
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(32, 42, 51, 0.18);
}

.btn.ghost {
  background: rgba(32, 42, 51, 0.08);
  color: var(--primary);
  box-shadow: none;
}

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

.link {
  color: var(--accent-strong);
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link:hover {
  color: var(--primary);
}

.faq-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(0, 184, 212, 0.4);
  box-shadow: 0 10px 24px rgba(32, 42, 51, 0.08);
}

.faq-item.is-open .faq-question {
  color: var(--accent-strong);
}

.faq-item .icon {
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
}

.pill, .pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 184, 212, 0.28);
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.pill-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-value,
.hero-card strong {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(32, 42, 51, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 184, 212, 0.25);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 25px;
  color: #f0f4f8;
}

.tagline {
  margin: 0;
  font-size: 12px;
  color: rgba(240, 244, 248, 0.72);
}

.brand-mark {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav-cta .btn {
  white-space: nowrap;
}

.nav-cta .btn.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #f0f4f8;
}

.nav-cta .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.service-card .link {
  display: inline-block;
  margin-top: 10px;
}

/* Cards de plano de hospedagem */
.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(0, 184, 212, 0.20);
}

.badge-featured {
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #04262c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  font-size: 22px;
  font-weight: 800;
  margin: 4px 0 12px;
  color: var(--primary);
}

/* Listas com marcador de check */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 14.5px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.feature-list-light li {
  color: rgba(255, 255, 255, 0.86);
}

/* Selo de icone */
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(0, 184, 212, 0.3);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

/* Hero com brilho de fundo */
.hero-glow {
  position: relative;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.18), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

/* Faixa escura para quebrar o ritmo da pagina */
.section-dark {
  position: relative;
  background: linear-gradient(135deg, #202a33, #2d3a46);
  color: #eef2f6;
  border-radius: 24px;
  padding: 40px 24px;
  margin: 32px auto;
  width: min(1200px, 100% - 32px);
  overflow: hidden;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 209, 168, 0.22), transparent 70%);
  pointer-events: none;
}

.section-dark .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.section-dark h2 {
  margin-top: 6px;
}

.section-dark .eyebrow {
  color: #17d1a8;
}

/* Especificidade dupla (.card.card-on-dark) porque a regra base .card e
   declarada depois neste arquivo e sobrescreveria o fundo escuro. */
.card.card-on-dark,
.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eef2f6;
  box-shadow: none;
}

.card.card-on-dark .muted,
.section-dark .card .muted {
  color: rgba(238, 242, 246, 0.75);
}

.card.card-on-dark h3,
.section-dark .card h3 {
  color: #ffffff;
}

.section-dark .cards-grid .card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(0, 184, 212, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.card.card-on-dark .feature-list li::before,
.section-dark .card .feature-list li::before {
  border-color: #17d1a8;
}

.audience-item + .audience-item {
  margin-top: 14px;
}

.audience-item p {
  margin: 4px 0 0;
}

/* Faixa de CTA */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #202a33, #2d3a46);
  color: #eef2f6;
}

.cta-band .lead {
  color: rgba(238, 242, 246, 0.78);
  margin-bottom: 0;
}

.btn-accent {
  background: var(--gradient-accent);
  color: #04262c;
}

.btn-accent:hover {
  box-shadow: 0 14px 28px rgba(0, 184, 212, 0.35);
}

.ghost-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Submenu largo com descricao */
.submenu-wide {
  min-width: 340px;
  max-height: 78vh;
  overflow-y: auto;
}

.submenu-wide li a {
  display: block;
  padding: 9px 12px;
}

.submenu-hint {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.35;
}

.submenu-divider {
  height: 1px;
  margin: 6px 8px;
  background: var(--border);
}

.plan-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.plan-specs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.card.highlight .table,
.card.highlight .muted {
  color: inherit;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.menu-item {
  position: relative;
}

.menu-item a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #f0f4f8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.menu-item:hover > a,
.menu-item.active > a {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.menu-item.active > a {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.menu-item.has-children > a::after {
  content: '';
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid rgba(240, 244, 248, 0.7);
  border-bottom: 2px solid rgba(240, 244, 248, 0.7);
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(32, 42, 51, 0.12);
  list-style: none;
  padding: 8px;
  min-width: 220px;
  display: none;
}

.menu-item.has-children:hover .submenu,
.menu-item.has-children.is-open .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
}

.submenu li a:hover {
  background: var(--bg);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 56px 0 24px;
}

.hero-content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}

.hero-card {
  position: relative;
  background: linear-gradient(140deg, #202a33, #2d3a46);
  color: #f2f6ff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.35), transparent 70%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card .eyebrow {
  color: #17d1a8;
}

.hero-card .muted {
  color: rgba(242, 246, 255, 0.75);
}

.hero-card .stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-card strong {
  font-size: 22px;
}

.hero-card span {
  display: block;
  color: rgba(242, 246, 255, 0.8);
}

.section {
  padding: 32px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.cards-grid.two-columns {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(32, 42, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cards-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 184, 212, 0.35);
}

/* Fita de destaque no topo dos cards de servico e plano */
.service-card::before,
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::before,
.plan-card:hover::before,
.plan-card.is-featured::before {
  opacity: 1;
}

.panel-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(32, 42, 51, 0.08);
  margin-bottom: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(32, 42, 51, 0.08);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  margin: 6px 0;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.table tbody tr:hover {
  background: #f8fafc;
}

.table-striped tbody tr:nth-child(odd) {
  background: #f8fafc;
}

.table-active {
  background: #eef2f7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #eef2f7;
  color: #475569;
}

.status-pill.status-aberto {
  background: #fef3c7;
  color: #92400e;
}

.status-pill.status-pendente {
  background: #e0f2fe;
  color: #0369a1;
}

.status-pill.status-disponivel {
  background: #eef2f7;
  color: #475569;
}

.status-pill.status-fechado {
  background: #e2e8f0;
  color: #334155;
}

.status-pill.status-ativo {
  background: #dcfce7;
  color: #166534;
}

.status-pill.status-inativo {
  background: #f1f5f9;
  color: #64748b;
}

.status-pill.status-vencido {
  background: #fee2e2;
  color: #991b1b;
}

.status-pill.status-pago {
  background: #dcfce7;
  color: #166534;
}

.status-pill.status-cancelado {
  background: #f1f5f9;
  color: #64748b;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-list li {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.compact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-title {
  font-weight: 700;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.page-header {
  margin: 0 0 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.page-header h1 {
  margin: 6px 0;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 16px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
}

.timeline-item.left {
  align-self: flex-start;
  text-align: right;
  padding-right: 38px;
}

.timeline-item.right {
  align-self: flex-end;
  text-align: left;
  padding-left: 38px;
}

.timeline-dot {
  position: absolute;
  top: 22px;
  right: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--secondary);
  box-shadow: 0 0 0 4px #fff;
  z-index: 2;
}

.timeline-item.right .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(32, 42, 51, 0.08);
}

.blog-content {
  line-height: 1.7;
  color: var(--text);
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 18px;
  margin-bottom: 10px;
}
.blog-content p {
  margin: 0 0 14px 0;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.chat-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  max-height: 520px;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  overflow: hidden;
}

.chat-panel.is-open {
  display: flex;
}

.chat-header {
  padding: 12px;
  background: var(--primary);
  color: #fff;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f8fafc;
}

.chat-message {
  margin-bottom: 10px;
  max-width: 90%;
}

.chat-message.visitor {
  text-align: left;
}

.chat-message.operator {
  text-align: right;
  margin-left: auto;
}

.chat-bubble {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.chat-message.operator .chat-bubble {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.chat-footer {
  padding: 10px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chat-footer textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 8px;
}

.chat-footer button {
  margin-top: 6px;
  width: 100%;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.highlight {
  background: linear-gradient(135deg, #202a33, #2d3a46);
  color: #f3f6ff;
}

.highlight .eyebrow { color: var(--accent); }

.values-card h3 {
  margin: 0 0 4px 0;
}

.callout {
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background: #fff7e6;
  border: 1px solid #fde2a8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  text-align: center;
}

.team-card .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--primary);
}

.social-card .card-media {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 12px;
}

.social-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #161d24;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.social-hero {
  margin-bottom: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  background: #161d24;
  overflow: hidden;
}

/* Fundo desfocado preenche a moldura; a foto aparece inteira por cima. */
.slide-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.55);
  transform: scale(1.15);
}

.carousel-slide img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.carousel-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  pointer-events: none;
}

.carousel-slide .slide-overlay .eyebrow {
  color: #17d1a8;
}

.carousel-slide .slide-overlay h3 {
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 2;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-control.prev { left: 12px; }
.carousel-control.next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--gradient-accent);
  border-color: transparent;
}

.partners {
  margin-top: 16px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.partner-card {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  background: #fff;
}

.partner-card img {
  max-height: 56px;
  margin: 0 auto 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  padding-bottom: 14px;
}

.faq-item .icon {
  color: var(--muted);
  font-weight: 800;
}

.form-wrapper {
  margin-top: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check input {
  width: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: start;
}

.contact-card ul li + li {
  margin-top: 10px;
}

.contact-form textarea {
  min-height: 120px;
}

label span {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

textarea {
  resize: vertical;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.alert.success {
  background: #ecfdf3;
  color: #1d7a43;
  border: 1px solid #b6f2cb;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.error {
  color: #b42318;
  font-weight: 600;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.card.text-center {
  text-align: center;
}

.page-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.site-footer {
  background: linear-gradient(160deg, #202a33, #1a232b);
  color: #e6edfa;
  padding: 40px 0 28px;
  margin-top: auto;
  border-top: 3px solid transparent;
  border-image: var(--gradient-accent) 1;
}

.site-footer .eyebrow {
  color: #17d1a8;
}

.site-footer .muted {
  color: rgba(230, 237, 250, 0.7);
}

.site-footer a {
  transition: color 0.2s ease;
}

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

.site-footer .list-plain li + li {
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(230, 237, 250, 0.15);
  padding-top: 12px;
}

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

/* Auth / login */
body.auth-shell {
  background: #f5f7fb;
  margin: 0;
  display: block;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.login-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.login-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(32, 42, 51, 0.08);
  width: min(440px, 100%);
}
.login-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .menu-item a {
    font-size: 14px;
    padding: 9px 8px;
  }

  .nav-cta .btn {
    font-size: 13px;
    padding: 9px 11px;
  }

  .brand-mark {
    height: 46px;
  }
}

@media (max-width: 900px) {
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 8px;
  }

  .nav-cta .btn.ghost {
    background: rgba(32, 42, 51, 0.08);
    color: var(--primary);
  }

  .menu-item a {
    color: var(--text);
  }

  .menu-item:hover > a,
  .menu-item.active > a {
    background: var(--bg);
    color: var(--primary);
  }

  .menu-item.has-children > a::after {
    border-color: var(--muted);
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(32, 42, 51, 0.18);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .submenu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 6px 0 0 12px;
  }

  .menu-item.has-children .submenu {
    display: none;
  }

  .menu-item.has-children.is-open .submenu {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .timeline {
    gap: 28px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item,
  .timeline-item.right,
  .timeline-item.left {
    width: 100%;
    padding: 0 0 0 28px;
    text-align: left;
    align-self: stretch;
  }

  .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 2px;
    right: auto;
  }

  .carousel-slide {
    aspect-ratio: 4 / 3;
    max-height: 60vh;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
  }

  .carousel-slide .slide-overlay h3 {
    font-size: 17px;
  }
}
