/* ===== VARIÁVEIS DE CORES E TEMAS ===== */
/* Importação do arquivo CSS principal */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-normal);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  /* Melhorias de acessibilidade */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Tema Principal (Original) */
:root {
  /* Cores de fundo baseadas nas cores fornecidas e imagem */
  --bg-primary: #0c1220; /* base mais fria/escura */
  --bg-secondary: #10182b; /* leve contraste */
  --bg-tertiary: #171e3b; /* índigo profundo */
  --bg-card: rgba(16, 24, 43, 0.84); /* vidro/coeso */
  --bg-overlay: rgba(10, 14, 28, 0.92);

  /* Sistema de Tipografia Responsiva - Mobile First */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 2.5rem; /* 40px */
  --font-size-6xl: 3rem; /* 48px */

  /* Line Heights Otimizados para Legibilidade */
  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.7;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Tipografia (frias e legíveis) */
  --text-primary: #ffffff;
  --text-secondary: #b5bfd4; /* cinza azulado */
  --text-muted: rgba(229, 233, 244, 0.55);

  /* Destaques (índigo → violeta → magenta) */
  --accent-primary: #8b5cf6; /* índigo/violeta – CTA, links principais */
  --accent-secondary: #a855f7; /* violeta mais quente */
  --accent-tertiary: #e879f9; /* magenta suave para micro-acentos */
  --accent-pink: #f472b6; /* rosado coerente para badges/links suaves */

  /* Semânticas harmonizadas (sem laranja/verde neon) */
  --gradient-button: linear-gradient(
    90deg,
    #8fffa7ce 0%,
    #1fb791 100%
  ); /* sucesso em tom frio (turquesa) */
  --gradient-button-hover: #1fb791;
  --accent-red: #f43f5e; /* erro em tom “rose” que conversa com magentas */

  /* Bordas / contornos (baixa opacidade nas mesmas matizes) */
  --border-primary: rgba(139, 92, 246, 0.22);
  --border-form: conic-gradient(
    from 220deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(169, 85, 247, 0.95) 35%,
    rgba(168, 85, 247, 0.35) 55%,
    rgba(0, 0, 0, 0.1) 80%
  );
  --border-secondary: rgba(139, 92, 246, 0.32);
  --border-accent: rgba(9, 8, 10, 0.35);
  --border-pink: rgba(244, 114, 182, 0.45);

  /* Gradientes (sutis, sem “quebrar” o tema) */
  --gradient-primary: linear-gradient(
    135deg,
    #0c1220 0%,
    #10182b 45%,
    #171e3b 100%
  );
  --gradient-purple: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #a855f7 55%,
    #e879f9 100%
  );
  --gradient-pink: linear-gradient(135deg, #a855f7 0%, #e879f9 100%);
  --gradient-hero: linear-gradient(
    140deg,
    #0c1220 0%,
    #10182b 28%,
    #171e3b 56%,
    #8b5cf6 82%,
    #a855f7 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(168, 85, 247, 0.1) 50%,
    rgba(232, 121, 249, 0.1) 100%
  );
  --gradient-form: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  --gradient-pricing: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.18) 0%,
    rgba(232, 121, 249, 0.18) 100%
  );

  /* Sombras/glows coerentes */
  --shadow-green: rgba(38, 211, 166, 0.28);
  --shadow-pink: rgba(244, 114, 182, 0.28);
  --shadow-pink-glow: rgba(244, 114, 182, 0.48);

  /* Scrollbar */
  --scrollbar-track: #10182b;
  --scrollbar-thumb: #8b5cf6;
  --scrollbar-thumb-hover: #a855f7;

  --longbgline-height: 3vh;

  --method-bg: #f3f4f6;
  --method-text: #1f2937;
  --method-cardbg: #e5e7eb;

  /* Container Inner Variables */
  --ci-aspect-ratio-square: 1;
  --ci-aspect-ratio-4-3: 4/3;
  --ci-aspect-ratio-3-4: 3/4;
  --ci-aspect-ratio-3-2: 3/2;
  --ci-aspect-ratio-2-3: 2/3;
  --ci-aspect-ratio-16-9: 16/9;
  --ci-aspect-ratio-9-16: 9/16;
  --ci-color-black: #000000;
  --ci-color-cyan-bluish-gray: #abb8c3;
  --ci-color-white: #ffffff;
  --ci-color-pale-pink: #f78da7;
  --ci-color-vivid-red: #cf2e2e;
  --ci-color-luminous-vivid-orange: #ff6900;
  --ci-color-luminous-vivid-amber: #fcb900;
  --ci-color-light-green-cyan: #7bdcb5;
  --ci-color-vivid-green-cyan: #00d084;
  --ci-color-pale-cyan-blue: #8ed1fc;
  --ci-color-vivid-cyan-blue: #0693e3;
  --ci-color-vivid-purple: #9b51e0;
  --ci-gradient-vivid-cyan-blue-to-vivid-purple: linear-gradient(
    135deg,
    rgba(6, 147, 227, 1) 0%,
    rgb(155, 81, 224) 100%
  );
  --ci-gradient-light-green-cyan-to-vivid-green-cyan: linear-gradient(
    135deg,
    rgb(122, 220, 180) 0%,
    rgb(0, 208, 130) 100%
  );
  --ci-gradient-luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
    135deg,
    rgba(252, 185, 0, 1) 0%,
    rgba(255, 105, 0, 1) 100%
  );
  --ci-gradient-luminous-vivid-orange-to-vivid-red: linear-gradient(
    135deg,
    rgba(255, 105, 0, 1) 0%,
    rgb(207, 46, 46) 100%
  );
  --ci-gradient-very-light-gray-to-cyan-bluish-gray: linear-gradient(
    135deg,
    rgb(238, 238, 238) 0%,
    rgb(169, 184, 195) 100%
  );
  --ci-gradient-cool-to-warm-spectrum: linear-gradient(
    135deg,
    rgb(74, 234, 220) 0%,
    rgb(151, 120, 209) 20%,
    rgb(207, 42, 186) 40%,
    rgb(238, 44, 130) 60%,
    rgb(251, 105, 98) 80%,
    rgb(254, 248, 76) 100%
  );
  --ci-gradient-blush-light-purple: linear-gradient(
    135deg,
    rgb(255, 206, 236) 0%,
    rgb(152, 150, 240) 100%
  );
  --ci-gradient-blush-bordeaux: linear-gradient(
    135deg,
    rgb(254, 205, 165) 0%,
    rgb(254, 45, 45) 50%,
    rgb(107, 0, 62) 100%
  );
  --ci-gradient-luminous-dusk: linear-gradient(
    135deg,
    rgb(255, 203, 112) 0%,
    rgb(199, 81, 192) 50%,
    rgb(65, 88, 208) 100%
  );
  --ci-gradient-pale-ocean: linear-gradient(
    135deg,
    rgb(255, 245, 203) 0%,
    rgb(182, 227, 212) 50%,
    rgb(51, 167, 181) 100%
  );
  --ci-gradient-electric-grass: linear-gradient(
    135deg,
    rgb(202, 248, 128) 0%,
    rgb(113, 206, 126) 100%
  );
  --ci-gradient-midnight: linear-gradient(
    135deg,
    rgb(2, 3, 129) 0%,
    rgb(40, 116, 252) 100%
  );
  --ci-font-size-small: 13px;
  --ci-font-size-medium: 20px;
  --ci-font-size-large: 36px;
  --ci-font-size-x-large: 42px;
  --ci-spacing-20: 0.44rem;
  --ci-spacing-30: 0.67rem;
  --ci-spacing-40: 1rem;
  --ci-spacing-50: 1.5rem;
  --ci-spacing-60: 2.25rem;
  --ci-spacing-70: 3.38rem;
  --ci-spacing-80: 5.06rem;
  --ci-shadow-natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --ci-shadow-deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --ci-shadow-sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --ci-shadow-outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
    6px 6px rgba(0, 0, 0, 1);
  --ci-shadow-crisp: 6px 6px 0px rgba(0, 0, 0, 1);
  --ci-global-content-size: 800px;
  --ci-global-wide-size: 1200px;
  --ci-style-block-gap: 24px;
  --ci-direction-multiplier: 1;
  --ci-page-title-display: block;
  --ci-global-color-primary: #6ec1e4;
  --ci-global-color-secondary: #54595f;
  --ci-global-color-text: #7a7a7a;
  --ci-global-color-accent: #61ce70;
  --ci-global-color-fa9c8e8: #f7f3ff;
  --ci-global-color-59cb7e3: #8258d6;
  --ci-global-typography-primary-font-family: "Roboto";
  --ci-global-typography-primary-font-weight: 600;
  --ci-global-typography-secondary-font-family: "Roboto Slab";
  --ci-global-typography-secondary-font-weight: 400;
  --ci-global-typography-text-font-family: "Roboto";
  --ci-global-typography-text-font-weight: 400;
  --ci-global-typography-accent-font-family: "Roboto";
  --ci-global-typography-accent-font-weight: 500;
  --ci-flex-wrap: initial;
  --ci-align-content: initial;
  --ci-order: initial;
  --ci-align-self: initial;
  --ci-border-radius: 0;
  --ci-border-top-width: 0px;
  --ci-border-right-width: 0px;
  --ci-border-bottom-width: 0px;
  --ci-border-left-width: 0px;
  --ci-border-style: initial;
  --ci-border-color: initial;
  --ci-content-width: min(100%, var(--ci-container-max-width, 1140px));
  --ci-width: 100%;
  --ci-height: auto;
  --ci-text-align: initial;
  --ci-position: relative;
  --ci-z-index: revert;
  --ci-overflow: visible;
  --ci-overlay-mix-blend-mode: initial;
  --ci-overlay-opacity: 1;
  --ci-overlay-transition: 0.3s;
  --ci-con-grid-template-columns: repeat(3, 1fr);
  --ci-con-grid-template-rows: repeat(2, 1fr);
  --ci-margin-block-start: var(--ci-margin-top);
  --ci-margin-block-end: var(--ci-margin-bottom);
  --ci-margin-inline-start: var(--ci-margin-left);
  --ci-margin-inline-end: var(--ci-margin-right);
  --ci-padding-inline-start: var(--ci-padding-left);
  --ci-padding-inline-end: var(--ci-padding-right);
  --ci-padding-block-start: var(--ci-padding-top);
  --ci-padding-block-end: var(--ci-padding-bottom);
  --ci-border-block-start-width: var(--ci-border-top-width);
  --ci-border-block-end-width: var(--ci-border-bottom-width);
  --ci-border-inline-start-width: var(--ci-border-left-width);
  --ci-border-inline-end-width: var(--ci-border-right-width);
  --ci-container-max-width: 1140px;
  --ci-widgets-spacing: 20px 20px;
  --ci-widgets-spacing-row: 20px;
  --ci-widgets-spacing-column: 20px;
  --ci-swiper-theme-color: #000;
  --ci-swiper-navigation-size: 44px;
  --ci-swiper-pagination-bullet-size: 6px;
  --ci-swiper-pagination-bullet-horizontal-gap: 6px;
  --ci-flex-basis: auto;
  --ci-flex-grow: 0;
  --ci-flex-shrink: 1;
  --ci-display: flex;
  --ci-min-height: 570px;
  --ci-flex-direction: column;
  --ci-container-widget-width: calc(
    (1 - var(--ci-container-widget-flex-grow)) * 100%
  );
  --ci-container-widget-height: initial;
  --ci-container-widget-flex-grow: 0;
  --ci-container-widget-align-self: initial;
  --ci-flex-wrap-mobile: wrap;
  --ci-justify-content: center;
  --ci-align-items: center;
  --ci-gap: 20px 20px;
  --ci-row-gap: 20px;
  --ci-column-gap: 20px;
  --ci-margin-top: 0px;
  --ci-margin-bottom: 0px;
  --ci-margin-left: 0px;
  --ci-margin-right: 0px;
  --ci-padding-top: 70px;
  --ci-padding-bottom: 0px;
  --ci-padding-left: 0px;
  --ci-padding-right: 0px;
}

/* Tema Dark-Blue-Theme */
[data-theme="dark-blue"] {
  /* Cores de fundo */
  --bg-primary: #0f1419;
  --bg-secondary: #1a1d29;
  --bg-tertiary: #2d1b69;
  --bg-card: rgba(26, 29, 41, 0.8);
  --bg-overlay: rgba(15, 20, 25, 0.95);

  /* Cores de texto */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Cores de destaque */
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #d946ef;
  --accent-pink: #ec4899;
  --accent-orange: #f97316;
  --gradient-button: #22c55e;
  --gradient-button-hover: #16a34a;
  --accent-red: #dc2626;

  /* Cores de borda */
  --border-primary: rgba(99, 102, 241, 0.2);
  --border-form: linear-gradient(
    0deg,
    rgba(169, 85, 247, 0.95) 0%,
    rgba(168, 85, 247, 0.35) 65%,
    rgba(0, 0, 0, 0.1) 100%
  );
  --border-secondary: rgba(99, 102, 241, 0.3);
  --border-accent: rgba(139, 92, 246, 0.3);
  --border-pink: rgba(236, 72, 153, 0.5);

  /* Cores de gradiente */
  --gradient-primary: linear-gradient(
    135deg,
    #0f1419 0%,
    #1a1d29 50%,
    #2d1b69 100%
  );
  --gradient-purple: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 50%,
    #d946ef 100%
  );
  --gradient-pink: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #0f1419 0%,
    #1a1d29 25%,
    #2d1b69 50%,
    #6366f1 75%,
    #8b5cf6 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(217, 70, 239, 0.1) 100%
  );
  --gradient-form: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(217, 70, 239, 0.1) 100%
  );
  --gradient-pricing: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.2) 0%,
    rgba(249, 115, 22, 0.2) 100%
  );

  /* Cores de sombra */
  --shadow-green: rgba(34, 197, 94, 0.3);
  --shadow-pink: rgba(203, 72, 236, 0.3);
  --shadow-pink-glow: rgba(236, 72, 214, 0.5);

  /* Cores de scrollbar */
  --scrollbar-track: #1a1d29;
  --scrollbar-thumb: #6366f1;
  --scrollbar-thumb-hover: #8b5cf6;
}

/* ===== RESET E CONFIGURAÇÕES BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100vw;
  background-image: url(./assets/backgrounds/FrameBG.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===== CONTAINER ===== */
.container {
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding-block-end: var(--ci-padding-block-end);
  padding-block-start: var(--ci-padding-block-start);
  text-align: var(--ci-text-align);
  display: var(--ci-display);
  gap: var(--ci-row-gap) var(--ci-column-gap);
  height: 100%;
  margin: 0 auto;
  max-width: var(--ci-content-width);
  padding-inline-end: 0;
  padding-inline-start: 0;
  width: 100%;
  flex-direction: var(--ci-flex-direction);
  align-content: var(--ci-align-content);
  align-items: var(--ci-align-items);
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: var(--ci-flex-wrap);
  justify-content: var(--ci-justify-content);
}

/* ===== GRADIENTES PERSONALIZADOS ===== */
.gradient-purple {
  background: var(--gradient-purple);
}

.gradient-pink {
  background: var(--gradient-pink);
}

/* ===== TIPOGRAFIA ===== */
.text-gradient {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BOTÕES ===== */
.btn-primary {
  background: var(--gradient-button);
  color: white;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

/* Centraliza o botão dentro do fluxo da hero */
.hero .btn-primary {
  align-self: center;
}

/* Centraliza explicitamente o botão principal da hero sem afetar o submit do formulário */
.hero .btn-primary:not(.btn-full) {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn-full {
  width: 100%;
}

.btn-link {
  border: none;
  color: var(--accent-pink);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
  transition: color 0.3s ease;
  background: none;
}

.btn-link:hover {
  color: var(--accent-orange);
}

/* ===== HEADER ===== */
.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo-ortara {
  box-shadow: border-box;
}

#logoluz {
  animation: fadeLight 20s ease-in-out infinite both;
  opacity: 1;
}

#luz {
  filter: url("#filter0_ddd_21_357");
  opacity: 0;
}

#luz-rect {
  x: 161;
  y: 167;
  width: 4;
  height: 4;
  rx: 0.5;
  fill: rgb(253, 236, 255);
}

#marca-tipografia {
  mix-blend-mode: overlay !important;
  animation: fadeLight 20s ease-in-out infinite both;
  opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 15%,
    rgba(0, 0, 0, 0.3) 35%,
    transparent 100%
  );
  padding-top: 0px;
}

/* Garante que o SVG do topo não interfira com o conteúdo e fique atrás */
.hero > svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

/* Animação de fade contínuo nos elementos com filtros dentro do SVG do hero */
.herologo-filters-template {
  visibility: hidden;
}

/* Anima toda a logo: começa opaca, some gradualmente, volta a opaca */
.herologo-svg.is-ready {
  animation: herofilter-fade 8s ease-in-out infinite;
}

@keyframes herofilter-fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 5) Acessibilidade / economia de recursos */
@media (prefers-reduced-motion: reduce) {
  /* Reduz animações para usuários que preferem movimento reduzido */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Suporte para modo de alto contraste */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-muted: #cccccc;
    --border-primary: rgba(255, 255, 255, 0.5);
    --border-secondary: rgba(255, 255, 255, 0.7);
  }

  .hero-strong,
  .highlight-text,
  .process-conclusion,
  .metrics-conclusion {
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
  }
}

.hero-content {
  display: flex;
  align-content: center;
  align-items: center;
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-direction: column;
  flex-shrink: 1;
  flex-wrap: initial;
  justify-content: center;
  gap: 20px 20px;
  height: 100%;
  margin: 0 auto;
  max-width: min(100%, 1140px);
  padding-inline-end: 0;
  padding-inline-start: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  padding-top: 4rem;
}

.hero-title {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  line-height: var(--line-height-snug);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  max-inline-size: 930px;
  text-align: center;
  margin: 0 auto 2rem auto;
  text-wrap: balance;
  min-width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -97.5px;
}

.hero-strong {
  font-weight: var(--font-weight-normal);
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-loose);
  margin: 0 auto 2rem auto;
  min-width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-grid {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: left;
  width: 100%;
  max-width: 620px;
}

.hero-grid-text-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  padding-top: 0.5rem;
  color: var(--text-primary);
  text-align: left;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
}

/* ===== FORMULÁRIO ===== */
.form-container {
  flex: 1 0 55%;
  max-width: 520px;
  min-width: 400px;
  margin: 0 0 0 0;
  padding: 2rem;
  border-radius: 12px;
  background: var(--gradient-form);

  position: relative;
  width: min(420px, 92vw);
  isolation: isolate;
  border: 1px solid var(--border-form);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* espessura da borda */
  background: var(--border-form);
  /* cria "apenas a borda" via mask */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.25));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-secondary);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

#marca-tipografia {
  mix-blend-mode: overlay;
}

/* ===== SEÇÕES GERAIS ===== */
section {
  padding: 80px 0;
}

.section-content {
  text-align: center;
}

.section-content h2 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: var(--line-height-snug);
}

.section-content h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-normal);
}

.section-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-loose);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-loose);
  margin-bottom: 2rem;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* SVG como background da seção */
#svg-problems {
  visibility: hidden;
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.metrics-results {
  padding-top: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.9) 10%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0.6) 100%
  );
  min-height: 95vh;
  width: 100vw;
}

/* Conteúdo sobreposto ao SVG */
.problems .container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
}

.problems .section-content {
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 12px;
  padding: 2rem;
}

.problems .section-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}
/* Container da seção problems */
.problems .container {
  position: relative;
  z-index: 2; /* Altura mínima para o SVG */
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-list {
  max-width: 85%;
  margin: 0 auto;
  text-align: left;
}

.problems-list p {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: var(--line-height-loose);
}

#dot path,
#line-pont path {
  fill-opacity: 0.3;
  stroke-opacity: 0.3;
}

/* ===== SOLUTION  ===== */
.solution {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.5) 15%,
    rgba(0, 0, 0, 0.4) 35%,
    rgba(0, 0, 0, 0.001) 55%,
    rgba(0, 0, 0, 0.02) 56.5%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.9) 85%,
    black 100%
  );
  padding: 2rem 0 5rem 0;
}

.solution .container {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.solution .section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

.highlight-box {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(168, 85, 247, 0.15) 50%,
    rgba(232, 121, 249, 0.15) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.highlight-box p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
}

.highlight-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-top: 1rem;
  line-height: var(--line-height-snug);
}

.process {
  max-width: 900px;
  margin: 0 auto;
}

.process h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  line-height: var(--line-height-snug);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.step-icon {
  width: 20px;
  height: 20px;
  background: var(--gradient-button);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: 0 0 20px rgba(38, 211, 166, 0.3);
}

.step p {
  color: var(--text-secondary);
  text-align: left;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  margin: 0;
}

.process-conclusion {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  text-align: center;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: var(--line-height-snug);
}

.iceberg-container {
  padding-top: 6rem;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%);
}

/* Estilos específicos para Results */
.results {
  padding: 0 0 4rem 0;
}

.results .container {
  padding-top: 0;
}

.metrics {
  --gap-metrics: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-metrics);
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.metric {
  flex: 0 0 calc(33.333% - var(--gap-metrics));
  display: flex;
  align-items: center;
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.metric:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.metric-dot {
  width: 12px;
  height: 12px;
  background: var(--gradient-button);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(38, 211, 166, 0.4);
}

.metric p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  margin: 0;
}

.metrics-conclusion {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  text-align: center;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2rem;
  line-height: var(--line-height-snug);
}

.services {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* ===== SERVICES SECTION ===== */
.services .container {
  width: 100vw;
  max-width: 100vw;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services h2 {
  max-width: 1200px;
}

/* ===== CARROSSEL STYLES ===== */
.carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 5rem 0; /* Espaço para os botões laterais */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

/* Efeito de opacidade nos cards das extremidades */
.service-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
  --service-cardmaxwidth: 360px;
}

.carousel-track {
  --serv-cardwidth: 450px;
  --gap-carousel: 1rem;
  display: flex;
  width: 100%;
  max-width: 100vw;
  transition: transform 0.5s ease-in-out;
  gap: var(--gap-carousel);
  padding: 1rem;
  margin-left: calc(
    2916px - var(--serv-cardwidth) / 2
  ); /* Centraliza o primeiro card */
}

.service-card {
  flex: 0 0 var(--serv-cardwidth);
  width: var(--serv-cardwidth);
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--gradient-form); /* Efeito igual ao form-container */
  border: 1px solid var(--border-primary);
  transition: all 0.3s ease;
  box-sizing: border-box;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50vh;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08); /* Sombra sutil igual ao form */
  position: relative;
  isolation: isolate; /* Aumentado para acomodar texto completo */
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--border-form);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.13));
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-primary);
}

.service-image {
  width: 100%;
  height: 45%; /* 45% da altura do card */
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  border-radius: 8px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Imagens específicas para cada service-card baseadas no contexto */
.service-card:nth-child(1) .service-image {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.8"/><circle cx="50" cy="30" r="2" fill="%23ffffff" opacity="0.6"/><circle cx="80" cy="25" r="4" fill="%23ffffff" opacity="0.7"/><circle cx="30" cy="60" r="2.5" fill="%23ffffff" opacity="0.5"/><circle cx="70" cy="70" r="3.5" fill="%23ffffff" opacity="0.9"/><circle cx="10" cy="80" r="2" fill="%23ffffff" opacity="0.4"/><circle cx="90" cy="60" r="3" fill="%23ffffff" opacity="0.6"/></svg>');
  background-size: cover, 60px;
  background-position: center, center;
}

.service-card:nth-child(2) .service-image {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="40" rx="5" fill="%23ffffff" opacity="0.8"/><rect x="30" y="30" width="40" height="20" rx="3" fill="%23ffffff" opacity="0.6"/><circle cx="50" cy="40" r="3" fill="%23ffffff" opacity="0.9"/></svg>');
  background-size: cover, 50px;
  background-position: center, center;
}

.service-card:nth-child(3) .service-image {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 L30 60 L40 70 L50 40 L60 50 L70 30 L80 40 L90 20" stroke="%23ffffff" stroke-width="3" fill="none" opacity="0.8"/><circle cx="30" cy="60" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="50" cy="40" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="70" cy="30" r="2" fill="%23ffffff" opacity="0.9"/></svg>');
  background-size: cover, 60px;
  background-position: center, center;
}

.service-card:nth-child(4) .service-image {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="30" width="15" height="40" rx="2" fill="%23ffffff" opacity="0.7"/><rect x="40" y="20" width="15" height="50" rx="2" fill="%23ffffff" opacity="0.8"/><rect x="60" y="35" width="15" height="35" rx="2" fill="%23ffffff" opacity="0.6"/><circle cx="27" cy="25" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="47" cy="15" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="67" cy="30" r="2" fill="%23ffffff" opacity="0.9"/></svg>');
  background-size: cover, 50px;
  background-position: center, center;
}

.service-card:nth-child(5) .service-image {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="8" fill="%23ffffff" opacity="0.8"/><circle cx="50" cy="50" r="6" fill="%23ffffff" opacity="0.6"/><circle cx="70" cy="30" r="7" fill="%23ffffff" opacity="0.7"/><circle cx="40" cy="70" r="5" fill="%23ffffff" opacity="0.9"/><circle cx="60" cy="70" r="6" fill="%23ffffff" opacity="0.5"/></svg>');
  background-size: cover, 55px;
  background-position: center, center;
}

.service-card:nth-child(6) .service-image {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="40" width="60" height="30" rx="5" fill="%23ffffff" opacity="0.7"/><rect x="30" y="30" width="40" height="10" rx="3" fill="%23ffffff" opacity="0.8"/><circle cx="35" cy="35" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="50" cy="35" r="2" fill="%23ffffff" opacity="0.9"/><circle cx="65" cy="35" r="2" fill="%23ffffff" opacity="0.9"/></svg>');
  background-size: cover, 50px;
  background-position: center, center;
}

.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-normal);
  flex-shrink: 0;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
  flex-grow: 1;
  overflow: visible;
  word-wrap: break-word;
  hyphens: auto;
}

.service-card .btn-link {
  margin-top: auto;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 0;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Botões de navegação do carrossel */
.carousel-btn {
  visibility: visible;
  top: calc(100% - 25px);
  transform: translateY(-50%);
  background: var(--gradient-purple);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  margin: 0 0.25rem;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn span {
  line-height: 1;
  font-size: var(--font-size-2xl);
}

/* Indicadores do carrossel */
.carousel-indicators {
  visibility: visible;
  display: flex;
  margin-top: -6px;
  justify-content: center;
  gap: 0.25rem;
}

.carousel-navigation {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.125rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--accent-primary);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--accent-secondary);
  transform: scale(1.1);
}

/* ===== METHOD SECTION ===== */
.method {
  padding: 8rem 0 4rem 0;
  background: var(--method-bg);
  color: #1f2937;
}

.method .section-content h2 {
  color: #1f2937;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.method-card {
  background: var(--method-cardbg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 700px;
  max-height: 800px;
  aspect-ratio: 3/4; /* Proporção retângulo vertical */
}

.method-image {
  width: 100%;
  height: 55%; /* 60% da altura do card para dar mais espaço ao texto */
  background: #374151;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.method-step {
  color: var(--accent-pink);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
}

.method-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: var(--line-height-normal);
  flex-shrink: 0;
}

.method-card p {
  color: #6b7280;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  flex-grow: 1;
  overflow: visible;
  text-align: justify;
}

/* ===== WHY SECTION ===== */
.why {
  padding: 6rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why .container {
  position: relative;
  z-index: 2;
}

.section-content.why-section {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.1),
    0 1.5px 8px 0 rgba(168, 85, 247, 0.08);
  padding: 3rem 2rem 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  border: 1.5px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.section-content.why-section::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    var(--accent-primary) 0%,
    transparent 80%
  );
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
}

.section-content.why-section h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: var(--line-height-tight);
  text-align: center;
  letter-spacing: -0.5px;
}

.why-content {
  margin: 0 auto 2.5rem auto;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  text-align: left;
  line-height: var(--line-height-relaxed);
  border-left: 4px solid var(--accent-primary);
  padding-left: 1.25rem;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 6px;
  margin-bottom: 0;
  transition: background 0.3s;
}

.why-content p + p {
  border-left-color: var(--accent-pink);
  background: rgba(244, 114, 182, 0.04);
}

.why-conclusion {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-primary);
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: var(--line-height-normal);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
  letter-spacing: -0.2px;
}

/* ===== CTA SECTION ===== */

.cta {
  padding: 2rem 0 2rem 0;
}

/* ===== TEAM SECTION ===== */

.team {
  padding: 2rem 0 8rem 0;
}

.team p {
  padding-bottom: 2.5rem;
}

.team-grid {
  --gap-team: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-team);
  margin-bottom: 3rem;
  justify-content: center;
  align-items: stretch;
  padding: 0 1rem;
}

.team-member {
  flex: 0 0 calc(33.333% - var(--gap-team));
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  border-radius: 18px;
  border: 1.5px solid var(--border-primary);
  box-shadow: 0 4px 24px 0 rgba(139, 92, 246, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  background: none;
}

.team-member:hover {
  box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.13);
  border-color: var(--accent-primary);
  transform: translateY(-4px) scale(1.025);
}

.member-avatar {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: none;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(139, 92, 246, 0.08);
}

.member-avatar svg {
  width: 72px;
  height: 72px;
  display: block;
  margin: auto;
  fill: var(--accent-primary);
  background: none;
}

.team-member h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-normal);
  letter-spacing: -0.5px;
}

.team-member p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  line-height: var(--line-height-loose);
}

.member-price {
  color: var(--accent-pink);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  margin-top: 0.5rem;
}

.pricing-card {
  max-width: 500px;
  max-height: 400px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  box-shadow: 0 0 50px var(--shadow-pink);
  text-align: center;
  animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-normal);
}

.price {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-snug);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid #374151;
}

.footer-content {
  text-align: center;
  color: var(--text-secondary);
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  font-size: var(--font-size-sm);
  margin-top: 1rem;
  line-height: var(--line-height-loose);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--shadow-pink);
  }
  50% {
    box-shadow: 0 0 40px var(--shadow-pink-glow);
  }
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/* ===== RESPONSIVIDADE ===== */

/* ...existing code... */

/* ===== RESPONSIVIDADE APRIMORADA ===== */
/* Min-Width Settings */
/* Large Desktop - 1440px e acima */
@media (min-width: 1440px) {
  :root {
    --font-size-xs: 0.875rem; /* 14px */
    --font-size-sm: 1rem; /* 16px */
    --font-size-base: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 2rem; /* 32px */
    --font-size-3xl: 2.5rem; /* 40px */
    --font-size-4xl: 3rem; /* 48px */
    --font-size-5xl: 3.5rem; /* 56px */
    --font-size-6xl: 4rem; /* 64px */
  }
}

/* Desktop - 1024px e acima */
@media (min-width: 1024px) {
  :root {
    --font-size-xs: 0.875rem; /* 14px */
    --font-size-sm: 1rem; /* 16px */
    --font-size-base: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 2rem; /* 32px */
    --font-size-3xl: 2.5rem; /* 40px */
    --font-size-4xl: 3rem; /* 48px */
    --font-size-5xl: 3.5rem; /* 56px */
    --font-size-6xl: 4rem; /* 64px */
  }
}

/* Tablet - 768px e acima */
@media (min-width: 768px) {
  :root {
    --font-size-xs: 0.875rem; /* 14px */
    --font-size-sm: 1rem; /* 16px */
    --font-size-base: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem; /* 36px */
    --font-size-4xl: 2.75rem; /* 44px */
    --font-size-5xl: 3.25rem; /* 52px */
    --font-size-6xl: 3.75rem; /* 60px */
  }
}

/* Menor que 1200px */
@media (max-width: 1200px) {
  .container {
    max-width: 90vw;
    padding: 0 12px;
  }
  .hero-title,
  .hero-description {
    max-width: 1088px;
    min-width: 0;
  }

  .carousel-container {
    max-width: 100vw;
    padding: 0 20px;
  }

  .hero-title {
    max-inline-size: 720px;
    max-width: 720px;
    min-width: 100%;
  }
  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .problems .section-content {
    max-width: 80%;
  }

  .method-grid {
    max-width: 80%;
    margin: 0 auto 2rem auto;
  }

  .method-image {
    height: 45%;
  }

  .method-card {
    min-height: 500px;
    max-height: 700px;
    aspect-ratio: 3/4;
    padding: 1.5rem;
  }

  .method-card h3 {
    font-size: var(--font-size-xl);
  }
  .method-card p {
    font-size: var(--font-size-sm);
  }
}

/* Menor que 1024px */
@media (max-width: 1024px) {
  .hero-content-form {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .hero-grid,
  .form-container {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .metrics,
  .team-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-member {
    flex: 0 0 100%;
    margin-bottom: 2rem;
    padding: 2rem 1rem 2.5rem 1rem;
  }
  .team-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .carousel-track {
    margin-left: 2647px;
  }
}

/* Menor que 876px */
@media (max-width: 876px) {
  .hero-title {
    max-inline-size: 720px;
    max-width: 720px;
    min-width: 100%;
  }

  .hero-description {
    margin: 0 auto 1.5rem auto;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }
  .hero-description {
    font-size: var(--font-size-sm);
  }

  .form-container {
    min-width: 0;
    width: 100%;
    padding: 1rem;
  }

  .section-content h2 {
    max-width: 80vw;
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    align-items: center;
  }

  .hero-content-form {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    align-items: center;
  }

  /* Títulos já são responsivos com clamp() */

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .hero-grid-text-title {
    text-align: center;
  }

  .hero-cards .card p {
    text-align: center;
  }

  .form-container {
    width: 100%;
    margin: 0;
  }

  /* Ajustes para a seção problems em mobile */
  .problems .section-content {
    margin: 1rem;
    padding: 1.5rem;
    max-width: 100%;
  }

  .problems .container {
    min-height: 500px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  /* Responsividade para Solution e Results */
  .metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .step {
    padding: 1rem;
  }

  .highlight-box {
    padding: 1.5rem;
  }

  /* Carrossel responsivo */
  .carousel-container {
    padding: 0 40px;
  }

  .service-card {
    flex: 0 0 calc(50% - 1rem); /* 2 cards visíveis em tablet */
    min-height: 50vh;
  }

  .service-card p {
    overflow: visible;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .team-grid {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 0.25rem;
  }
  .team-member {
    padding: 1.5rem 0.5rem 2rem 0.5rem;
  }
  .cta .container {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .cta-box {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .cta-title {
    font-size: var(--font-size-xl);
  }
  .cta-description {
    font-size: var(--font-size-base);
  }
  .cta .btn-primary {
    font-size: var(--font-size-base);
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 614px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  .hero-description {
    font-size: var(--font-size-sm);
  }
  .hero-grid-text-title {
    font-size: var(--font-size-2xl);
  }

  .form-container {
    padding: 0.75rem;
  }
  .problems .container {
    min-height: 450px;
  }
  .problems .section-content {
    margin: 1rem;
    padding: 1rem;
  }
  .section-content h2 {
    font-size: var(--font-size-2xl);
  }

  .carousel-track {
    margin-left: 2010px;
  }

  .service-card {
    width: 360px;
  }
}

@media (max-width: 498px) {
  .hero-title {
    font-size: var(--font-size-xl);
  }

  .hero-grid-text-title {
    font-size: var(--font-size-xl);
  }

  .hero-description {
    margin: 0 auto 1rem auto;
  }

  .btn-primary {
    padding: 12px 24px;
    margin-top: 0.5rem;
  }

  .form-container {
    padding: 1rem;
  }

  /* Ajustes adicionais para telas muito pequenas */
  .problems .section-content {
    margin: 0.5rem;
    padding: 1rem;
  }

  .problems .container {
    min-height: 400px;
  }

  /* Carrossel mobile */
  .carousel-container {
    padding: 0 30px;
  }

  .service-card {
    flex: 0 0 calc(100% - 1rem); /* 1 card visível em mobile */
    padding: 1.5rem;
    min-height: 50vh;
    aspect-ratio: 1.2; /* Ligeiramente retangular em mobile */
  }

  .service-image {
    height: 80px;
  }

  .service-card p {
    overflow: visible;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .service-image {
    height: 150px;
  }

  .method-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  .method-card {
    min-height: 400px;
    min-width: 300px;
    max-width: 360px;
    margin: 0 auto;
  }

  .team-member {
    padding: 1rem 0.25rem 1.25rem 0.25rem;
  }
  .member-avatar {
    width: 72px;
    height: 72px;
  }
  .member-avatar svg {
    width: 48px;
    height: 48px;
  }
  .cta-box {
    padding: 1rem 0.25rem 1rem 0.25rem;
  }
  .cta-title {
    font-size: var(--font-size-lg);
  }
  .cta-description {
    font-size: var(--font-size-sm);
  }
  .cta .btn-primary {
    font-size: var(--font-size-sm);
    padding: 0.5rem 1rem;
  }
}

/* Correções gerais para evitar overflow horizontal */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
