:root {
  --bg: #08111f;
  --bg-2: #101b31;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.74);
  --accent: #6de3cf;
  --accent-2: #f6b05e;
  --accent-3: #8fa7ff;
  --danger: #ff8b8b;
  --success: #6df0a6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 227, 207, 0.12), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(246, 176, 94, 0.1), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #091321 52%, #07111f 100%);
  font-family: 'Segoe UI Variable Text', 'Bahnschrift', 'Trebuchet MS', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  pointer-events: none;
  width: 42rem;
  height: 42rem;
  filter: blur(90px);
  opacity: 0.32;
}

body::before {
  top: -14rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(109, 227, 207, 0.38), transparent 60%);
}

body::after {
  bottom: -16rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(246, 176, 94, 0.25), transparent 60%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.section-block {
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.container-xl {
  position: relative;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #fff;
  color: #111;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(7, 12, 22, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08111f;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(109, 227, 207, 0.28);
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.site-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.site-menu-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent), #b9fff3);
  color: #04121b;
}

.site-nav .nav-cta:hover {
  color: #04121b;
}

.hero-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(109, 227, 207, 0.12), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(246, 176, 94, 0.1), transparent 26%);
  pointer-events: none;
}

.breadcrumb-wrap {
  margin-bottom: 1.1rem;
}

.breadcrumb-custom {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.92rem;
}

.breadcrumb-custom .breadcrumb-item {
  color: var(--muted);
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--accent);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(244, 247, 251, 0.45);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin: 1.15rem 0 1rem;
  max-width: 12ch;
}

.lead-copy {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.35rem;
}

.btn-brand {
  --bs-btn-color: #061118;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #061118;
  --bs-btn-hover-bg: #99f0e2;
  --bs-btn-hover-border-color: #99f0e2;
  --bs-btn-focus-shadow-rgb: 109, 227, 207;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(109, 227, 207, 0.18);
}

.btn-brand,
.btn-outline-brand {
  padding: 0.92rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-outline-brand {
  --bs-btn-color: var(--text);
  --bs-btn-border-color: rgba(255, 255, 255, 0.22);
  --bs-btn-hover-color: #061118;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.8rem;
  max-width: 32rem;
}

.hero-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
}

.icon-inline {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--accent);
  flex: none;
  margin-top: 0.15rem;
}

.hero-panel {
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto -20% 65% 20%;
  height: 10rem;
  background: radial-gradient(circle, rgba(109, 227, 207, 0.22), transparent 65%);
  pointer-events: none;
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.85rem 1rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-pill {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem 0.2rem 0.2rem;
}

.dashboard-card {
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(8, 15, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.dashboard-card h3 {
  font-size: 1rem;
  margin: 0 0 0.45rem;
}

.dashboard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kpi strong {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.kpi span {
  color: var(--muted);
  font-size: 0.85rem;
}

.progress-line {
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 0.8rem;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.1rem);
  letter-spacing: -0.03em;
  margin: 0.9rem 0 0.75rem;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.card-glass {
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 227, 207, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 227, 207, 0.18), rgba(246, 176, 94, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.card-glass h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.card-glass p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.product-snippet {
  padding: 1.1rem;
}

.product-snippet h3 {
  font-size: 1.03rem;
}

.long-copy p {
  color: rgba(244, 247, 251, 0.84);
  line-height: 1.95;
  margin-bottom: 1.1rem;
}

.callout-stack {
  display: grid;
  gap: 1rem;
}

.callout {
  padding: 1.2rem 1.2rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.callout .callout-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.callout h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: attr(data-step);
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.timeline-card .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061118;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.timeline-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.timeline-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.keyword-list li {
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-card {
  height: 100%;
  padding: 1.45rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(109, 227, 207, 0.12), rgba(255, 255, 255, 0.045));
  border-color: rgba(109, 227, 207, 0.26);
  transform: translateY(-8px);
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.plan-card h3 {
  margin-bottom: 0.5rem;
}

.plan-card p {
  color: var(--muted);
  line-height: 1.75;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.plan-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card .btn {
  margin-top: auto;
}

.review-card {
  padding: 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.review-card blockquote {
  margin: 0;
  color: rgba(244, 247, 251, 0.86);
  line-height: 1.8;
  font-size: 1rem;
}

.review-card footer {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

details.faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

details.faq-item + details.faq-item {
  margin-top: 0.85rem;
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

details.faq-item[open] summary::after {
  content: '−';
}

details.faq-item p {
  margin: 0.9rem 0 0.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.3rem;
}

.contact-panel,
.form-panel {
  padding: 1.45rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.9rem;
}

.contact-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(109, 227, 207, 0.18), rgba(246, 176, 94, 0.18));
  color: var(--accent);
}

.contact-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  word-break: break-word;
}

.social-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
}

.social-chip {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #061118;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-facebook .social-chip {
  background: #dbe7ff;
}

.social-instagram .social-chip {
  background: #ffd2e4;
}

.social-tiktok .social-chip {
  background: #c5f3ff;
}

.social-linkedin .social-chip {
  background: #d9e3ff;
}

.social-whatsapp .social-chip {
  background: #d9ffe9;
}

.form-panel .form-label {
  color: var(--muted);
  font-weight: 700;
}

.form-panel .form-control,
.form-panel .form-select {
  background: rgba(5, 11, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--text);
  border-radius: 0.95rem;
  padding: 0.85rem 1rem;
}

.form-panel .form-control::placeholder {
  color: rgba(244, 247, 251, 0.45);
}

.form-panel .form-control:focus,
.form-panel .form-select:focus {
  border-color: rgba(109, 227, 207, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(109, 227, 207, 0.12);
}

.form-feedback {
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}

.form-feedback.success {
  background: rgba(109, 240, 166, 0.1);
  border: 1px solid rgba(109, 240, 166, 0.18);
  color: #c9ffe0;
}

.form-feedback.danger {
  background: rgba(255, 139, 139, 0.1);
  border: 1px solid rgba(255, 139, 139, 0.18);
  color: #ffd1d1;
}

.footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(7, 12, 22, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .dashboard-grid,
  .timeline-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 2.2rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-brand,
  .btn-outline-brand {
    justify-content: center;
    width: 100%;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .site-header .container-xl {
    padding-inline: 0.75rem;
  }

  .hero-panel,
  .contact-panel,
  .form-panel,
  .card-glass,
  .plan-card,
  .review-card {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
