/* ============================================================
   BLUECONSULT LP - STATIC CSS
   Replica exata do tema React/Tailwind v4
   ============================================================ */

/* --- CSS Variables (Theme Tokens) --- */
:root {
  --primary: oklch(0.52 0.23 260);
  --primary-foreground: oklch(1 0 0);
  --background: oklch(0.99 0.005 260);
  --foreground: oklch(0.2 0.02 260);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.2 0.02 260);
  --secondary: oklch(0.96 0.01 260);
  --secondary-foreground: oklch(0.35 0.15 260);
  --muted: oklch(0.96 0.01 260);
  --muted-foreground: oklch(0.5 0.05 260);
  --accent: oklch(0.94 0.02 260);
  --border: oklch(0.9 0.02 260);
  --ring: oklch(0.52 0.23 260);
  --destructive: oklch(0.577 0.245 27.325);
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius));
  --radius-lg: calc(var(--radius) + 4px);
  --radius-xl: calc(var(--radius) + 8px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utilities --- */
.text-primary {
  color: var(--primary);
}

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

/* --- Layout --- */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.container--narrow {
  max-width: 768px;
}

.container--form {
  max-width: 672px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-title--center {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 672px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--background);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--background) 80%, transparent),
    color-mix(in oklch, var(--background) 50%, transparent),
    var(--background)
  );
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  margin-bottom: 32px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 64px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklch, var(--primary) 20%, transparent);
  background-color: color-mix(in oklch, var(--primary) 5%, transparent);
  padding: 4px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  display: flex;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--primary);
  margin-right: 8px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-bottom: 24px;
  max-width: 896px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  max-width: 672px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  filter: brightness(1.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background-color: color-mix(in oklch, var(--secondary) 50%, transparent);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 16px 32px;
  height: auto;
}

.btn-rounded {
  border-radius: 9999px;
}

.btn-primary.btn-lg {
  box-shadow: 0 8px 24px color-mix(in oklch, var(--primary) 20%, transparent);
}

.btn-primary.btn-lg:hover {
  box-shadow: 0 8px 32px color-mix(in oklch, var(--primary) 40%, transparent);
}

.btn-submit {
  width: 100%;
  font-size: 1.125rem;
  padding: 16px;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* --- Hero Feature Cards --- */
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
  max-width: 896px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.hero-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: color-mix(in oklch, var(--card) 50%, transparent);
  backdrop-filter: blur(4px);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.hero-feature-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, var(--foreground) 90%, transparent);
}

.icon-check {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 96px 0;
  background-color: color-mix(in oklch, var(--secondary) 30%, transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 40px;
  }
}

.feature-card--positive {
  background-color: var(--card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.feature-card--positive:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card--negative {
  background-color: color-mix(in oklch, var(--card) 50%, transparent);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.feature-card--negative:hover {
  background-color: var(--card);
}

.feature-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
}

.feature-card-bar--primary {
  background-color: var(--primary);
}

.feature-card-bar--muted {
  background-color: color-mix(
    in oklch,
    var(--muted-foreground) 30%,
    transparent
  );
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-card-title {
    font-size: 1.875rem;
  }
}

.feature-card-title--muted {
  color: var(--muted-foreground);
}

.feature-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  margin-right: 12px;
}

.feature-icon-badge--primary {
  background-color: color-mix(in oklch, var(--primary) 10%, transparent);
  color: var(--primary);
}

.feature-icon-badge--muted {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
}

.feature-list-item span {
  font-size: 1.125rem;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
}

.feature-card--negative .feature-list-item span {
  color: var(--muted-foreground);
}

.feature-bullet {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-bullet--primary {
  background-color: color-mix(in oklch, var(--primary) 20%, transparent);
  color: var(--primary);
}

.feature-bullet--muted {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

/* ============================================================
   DELIVERABLES SECTION
   ============================================================ */
.deliverables-section {
  padding: 96px 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.deliverables-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(
    to left,
    color-mix(in oklch, var(--secondary) 30%, transparent),
    transparent
  );
  pointer-events: none;
}

.deliverables-container {
  position: relative;
  z-index: 10;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.deliverable-card {
  background-color: var(--card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  transition: all 0.3s ease;
}

.deliverable-card:hover {
  border-color: color-mix(in oklch, var(--primary) 30%, transparent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.deliverable-icon {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--secondary);
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.deliverable-card:hover .deliverable-icon {
  background-color: color-mix(in oklch, var(--primary) 10%, transparent);
}

.icon-primary {
  color: var(--primary);
}

.deliverable-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.deliverable-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works-section {
  padding: 96px 0;
  background-color: color-mix(in oklch, var(--secondary) 20%, transparent);
  position: relative;
}

.how-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.how-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.how-container {
  position: relative;
  z-index: 10;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps-line {
  display: none;
}

@media (min-width: 1024px) {
  .steps-line {
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      color-mix(in oklch, var(--primary) 30%, transparent),
      transparent
    );
    z-index: -1;
  }
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  background-color: var(--background);
  border: 4px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  z-index: 10;
}

.step:hover .step-circle {
  border-color: color-mix(in oklch, var(--primary) 50%, transparent);
  transform: scale(1.1);
}

.step-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: color-mix(in oklch, var(--primary) 80%, transparent);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted-foreground);
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
  padding: 96px 0;
  background-color: var(--background);
}

.guarantee-card {
  background: linear-gradient(
    to bottom right,
    color-mix(in oklch, var(--primary) 5%, transparent),
    color-mix(in oklch, var(--secondary) 50%, transparent)
  );
  border-radius: 24px;
  padding: 32px;
  border: 1px solid color-mix(in oklch, var(--primary) 10%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .guarantee-card {
    padding: 64px;
  }
}

@media (min-width: 1024px) {
  .guarantee-card {
    flex-direction: row;
  }
}

.guarantee-content {
  flex: 1;
  position: relative;
  z-index: 10;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: color-mix(in oklch, var(--primary) 10%, transparent);
  padding: 4px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.guarantee-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .guarantee-title {
    font-size: 3rem;
  }
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.guarantee-highlight {
  font-weight: 500;
  color: var(--foreground);
}

.guarantee-bold {
  font-weight: 700;
}

.guarantee-conditions {
  font-size: 0.875rem;
  background-color: color-mix(in oklch, var(--background) 50%, transparent);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  margin-top: 8px;
}

.guarantee-conditions-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.guarantee-conditions-list {
  list-style: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.guarantee-image-container {
  position: relative;
  width: 256px;
  height: 256px;
}

@media (min-width: 768px) {
  .guarantee-image-container {
    width: 320px;
    height: 320px;
  }
}

.guarantee-glow {
  position: absolute;
  inset: 0;
  background-color: color-mix(in oklch, var(--primary) 20%, transparent);
  filter: blur(48px);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.guarantee-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.guarantee-img:hover {
  transform: scale(1.05);
}

/* ============================================================
   AUTHORITY SECTION
   ============================================================ */
.authority-section {
  padding: 96px 0;
  background-color: color-mix(in oklch, var(--secondary) 30%, transparent);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.authority-card {
  background-color: var(--card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.authority-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.authority-card-desc {
  color: var(--muted-foreground);
}

.authority-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

.authority-logos:hover {
  filter: grayscale(0);
}

.authority-logo-placeholder {
  height: 48px;
  width: 128px;
  background-color: color-mix(in oklch, var(--foreground) 10%, transparent);
  border-radius: var(--radius);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 96px 0;
  background-color: var(--background);
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  color: var(--foreground);
  transition: color 0.2s;
}

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

.accordion-chevron {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--muted-foreground);
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.accordion-content.open {
  max-height: 200px;
}

.accordion-content p {
  padding-bottom: 20px;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background-color: color-mix(in oklch, var(--secondary) 30%, transparent);
}

.form-card {
  background-color: var(--card);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  padding: 32px;
}

@media (min-width: 768px) {
  .form-card {
    padding: 48px;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-subtitle {
  color: var(--muted-foreground);
}

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  display: flex;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--ring) 20%, transparent);
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Radio Group --- */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.radio-option:hover {
  background-color: color-mix(in oklch, var(--secondary) 50%, transparent);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-indicator {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.radio-indicator::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--primary);
  transform: scale(0);
  transition: transform 0.2s;
}

.radio-option input[type="radio"]:checked ~ .radio-indicator {
  border-color: var(--primary);
}

.radio-option input[type="radio"]:checked ~ .radio-indicator::after {
  transform: scale(1);
}

.radio-text {
  cursor: pointer;
  flex: 1;
  font-size: 0.875rem;
}

/* --- Checkbox Group --- */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkbox-indicator {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.checkbox-indicator svg {
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--primary-foreground);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-indicator {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-indicator svg {
  opacity: 1;
}

/* --- Custom Select --- */
.custom-select {
  position: relative;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.select-trigger:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--ring) 20%, transparent);
}

.select-value[data-placeholder="true"] {
  color: var(--muted-foreground);
}

.select-chevron {
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.select-trigger[aria-expanded="true"] .select-chevron {
  transform: rotate(180deg);
}

.select-content {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  display: none;
  overflow: hidden;
}

.select-content.open {
  display: block;
}

.select-item {
  padding: 10px 12px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s;
}

.select-item:hover {
  background-color: var(--accent);
}

.select-item.selected {
  background-color: color-mix(in oklch, var(--primary) 10%, transparent);
  color: var(--primary);
  font-weight: 500;
}

/* --- Priority Notice --- */
.priority-notice {
  background-color: color-mix(in oklch, var(--primary) 5%, transparent);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in oklch, var(--primary) 10%, transparent);
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--primary) 80%, transparent);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.priority-icon {
  background-color: color-mix(in oklch, var(--primary) 20%, transparent);
  padding: 4px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.priority-notice p {
  line-height: 1.5;
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

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

.footer-brand-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.footer-brand-cnpj {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.footer-legal {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-legal {
    text-align: right;
  }
}

.footer-tagline {
  margin-top: 4px;
}

/* Validation errors */
.form-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.25rem;
}

.form-input.is-invalid,
.select-trigger.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--destructive);
}
