/* Generated compiled CSS from Tailwind with all custom variables and styles */
/* CSS Variables from globals.css */
:root {
  /* Updated color tokens from green to blue theme with light, airy feel */
  --background: oklch(0.98 0.02 220); /* Light blue background */
  --foreground: oklch(0.25 0.01 240); /* Dark gray text */
  --card: oklch(1 0 0); /* White cards */
  --card-foreground: oklch(0.25 0.01 240); /* Dark gray card text */
  --popover: oklch(1 0 0); /* White popover */
  --popover-foreground: oklch(0.25 0.01 240); /* Dark gray popover text */
  --primary: oklch(0.55 0.12 220); /* Soft blue primary */
  --primary-foreground: oklch(1 0 0); /* White text on primary */
  --secondary: oklch(0.85 0.08 210); /* Light blue secondary for airy feel */
  --secondary-foreground: oklch(0.25 0.01 240); /* Dark text on light secondary */
  --muted: oklch(0.96 0.02 220); /* Very light blue muted */
  --muted-foreground: oklch(0.45 0.01 240); /* Muted gray text */
  --accent: oklch(0.75 0.1 200); /* Light cyan accent for freshness */
  --accent-foreground: oklch(0.25 0.01 240); /* Dark text on light accent */
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.88 0.01 240); /* Light gray borders */
  --input: oklch(1 0 0); /* White inputs */
  --ring: oklch(0.75 0.1 200); /* Light blue focus ring */
  --radius: 0.5rem; /* Friendly rounded corners */
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
}

/* Base styles */
* {
  border-color: var(--border);
  outline-color: var(--ring);
  outline-offset: 2px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.flex-shrink-0 {
  flex-shrink: 0;
}

/* Grid utilities */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm-flex-row {
    flex-direction: row;
  }
  .sm-justify-center {
    justify-content: center;
  }
  .sm-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md-hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg-text-left {
    text-align: left;
  }
  .lg-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg-justify-start {
    justify-content: flex-start;
  }
  .lg-order-last {
    order: 9999;
  }
}

/* Spacing utilities */
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pr-4 {
  padding-right: 1rem;
}

.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.ml-1 {
  margin-left: 0.25rem;
}

/* Gap utilities */
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}

/* Width and height utilities */
.w-full {
  width: 100%;
}
.w-6 {
  width: 1.5rem;
}
.w-48 {
  width: 12rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-48 {
  height: 12rem;
}
.h-auto {
  height: auto;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-[56px] {
  min-height: 56px;
}

.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}

/* Text utilities */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

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

.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}

.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Color utilities */
.text-foreground {
  color: var(--foreground);
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.text-primary {
  color: var(--primary);
}
.text-accent-foreground {
  color: var(--accent-foreground);
}
.text-yellow-400 {
  color: rgb(250 204 21);
}

.bg-background {
  background-color: var(--background);
}
.bg-card {
  background-color: var(--card);
}
.bg-muted {
  background-color: var(--muted);
}
.bg-accent {
  background-color: var(--accent);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-green-600 {
  background-color: rgb(22 163 74);
}
.bg-green-700 {
  background-color: rgb(21 128 61);
}

.bg-muted-50 {
  background-color: color-mix(in srgb, var(--muted) 50%, transparent);
}
.bg-primary-5 {
  background-color: color-mix(in srgb, var(--primary) 5%, transparent);
}
.bg-primary-10 {
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-background {
  --tw-gradient-from: var(--background) var(--tw-gradient-from-position);
  --tw-gradient-to: color-mix(in srgb, var(--background) 0%, transparent) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-muted {
  --tw-gradient-to: var(--muted) var(--tw-gradient-to-position);
}

.fill-yellow-400 {
  fill: rgb(250 204 21);
}

/* Border utilities */
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-border {
  border-color: var(--border);
}

.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

/* Shadow utilities */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Position utilities */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.bottom-4 {
  bottom: 1rem;
}
.left-4 {
  left: 1rem;
}
.right-4 {
  right: 1rem;
}
.-top-2 {
  top: -0.5rem;
}
.-right-2 {
  right: -0.5rem;
}
.z-50 {
  z-index: 50;
}

/* Display utilities */
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.hidden {
  display: none;
}

/* Overflow utilities */
.overflow-hidden {
  overflow: hidden;
}

/* Object utilities */
.object-cover {
  object-fit: cover;
}

/* Transition utilities */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Hover utilities */
.hover-bg-green-700:hover {
  background-color: rgb(21 128 61);
}
.hover-bg-muted-50:hover {
  background-color: color-mix(in srgb, var(--muted) 50%, transparent);
}
.hover-shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.hover-text-primary:hover {
  color: var(--primary);
}
.hover-underline:hover {
  text-decoration-line: underline;
}

/* Space utilities */
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

/* Order utilities */
.order-last {
  order: 9999;
}

/* Button component styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

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

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary) 90%, black);
}

.btn-lg {
  height: 2.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Card component styles */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--card-foreground);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.card-content {
  padding: 1.5rem;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
  padding-bottom: 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

/* Icon styles */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm-py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Loading utilities */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive layout rules for data-attributes */
/* Hero section responsive layout */
[data-section="hero"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  [data-section="hero"] {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Benefits section responsive layout */
[data-section="benefits"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

@media (min-width: 640px) {
  [data-section="benefits"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

[data-role="benefit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Patient portrait responsive sizing */
[data-section="patient-portrait"] {
  text-align: center;
}

[data-section="patient-portrait"] img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
  [data-section="patient-portrait"] img {
    max-width: 42rem;
    margin: 0 auto;
  }
}

/* Ready section 3-column desktop layout */
[data-section="ready-grid"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  [data-section="ready-grid"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* WhatsApp floating button responsive behavior */
[data-role="whatsapp-floating"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
  background-color: rgb(22 163 74);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 150ms ease;
}

[data-role="whatsapp-floating"]:hover {
  background-color: rgb(21 128 61);
}

/* Mobile sticky WhatsApp button */
@media (max-width: 767px) {
  .whatsapp-sticky {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
    padding: 0.5rem;
    background: transparent;
  }

  .whatsapp-sticky [data-role="whatsapp-floating"] {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    min-height: 56px;
    font-size: 1rem;
  }

  .whatsapp-sticky [data-role="whatsapp-floating"] span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Hide sticky button on desktop */
@media (min-width: 768px) {
  .whatsapp-sticky {
    display: none;
  }
}

/* Responsive text sizing */
@media (max-width: 639px) {
  .text-3xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .text-2xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .text-lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* Enhanced mobile navigation and spacing */
@media (max-width: 767px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .py-12 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .gap-8 {
    gap: 1.5rem;
  }

  .gap-6 {
    gap: 1rem;
  }
}

/* Improved card spacing on mobile */
@media (max-width: 639px) {
  .card-content {
    padding: 1rem;
  }

  .card-header {
    padding: 1rem;
    padding-bottom: 0;
  }
}

/* FAQ responsive improvements */
.faq-button {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.faq-button:hover {
  background-color: color-mix(in srgb, var(--muted) 50%, transparent);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

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

.faq-icon {
  transition: transform 150ms ease;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

/* Enhanced mobile typography */
@media (max-width: 639px) {
  .faq-button {
    padding: 1rem;
  }

  .faq-content {
    padding: 0 1rem 1rem;
  }

  .faq-button h3 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

/* Grid responsive improvements */
@media (max-width: 767px) {
  .grid-cols-1.md-grid-cols-2,
  .grid-cols-1.md-grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-cols-1.lg-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Image responsive behavior */
img {
  max-width: 100%;
  height: auto;
}

/* Enhanced button responsiveness */
@media (max-width: 639px) {
  .btn-lg {
    height: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
  }
}

/* Footer responsive improvements */
@media (max-width: 767px) {
  footer .grid-cols-1.md-grid-cols-3 {
    gap: 1.5rem;
  }

  footer .flex.flex-col.sm-flex-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* ====== Layout base / container ====== */
:root { --container: 1200px; }

.container,
.container.mx-auto,
.container.mx-auto.max-w-6xl {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
/* ===== FORÇAR LAYOUT DAS SEÇÕES ===== */

/* Benefícios: 4 colunas no desktop */
@media (min-width: 1024px) {
  #beneficios > .container > .grid,
  #beneficios .grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch;
  }
}

/* Como funciona: 3 colunas no desktop */
@media (min-width: 1024px) {
  #processo > .container > .grid,
  #processo .grid,
  #processo .steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch;
  }
}

/* CTA final: 3 itens lado a lado + botão com tamanho certo */
@media (min-width: 1024px) {
  #cta-final .features,
  #cta-final .grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    justify-items: center !important;
    text-align: center !important;
  }
}
#cta-final .btn,
#cta-final a.button,
#cta-final a[role="button"],
#cta-final .whats-btn {
  padding: 12px 18px !important;
  font-size: 16px !important;
  width: auto !important;
  color: #fff !important; /* garante texto branco */
}
@media (max-width: 767.98px) {
  #cta-final .btn,
  #cta-final a.button,
  #cta-final a[role="button"],
  #cta-final .whats-btn {
    width: 100% !important;  /* no mobile, ocupa a largura da box */
  }
}

/* Rodapé: 3 colunas no desktop */
@media (min-width: 1024px) {
  #rodape .grid,
  #rodape > .container > .grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: start !important;
  }
}

/* Centralizações e respiro no mobile */
@media (max-width: 767.98px) {
  header, section, #beneficios, #processo, #cta-final, #rodape {
    text-align: center !important;
  }
  .container { padding-inline: 18px !important; }
}
/* Evita overflow horizontal inesperado no mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Qualquer mídia nunca passa da largura da tela */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* Se algum bloco interno estourar 100vw, corta com elegância */
section, header, footer, .container {
  overflow-x: clip; /* Evita criar barra “lateral” */
}

/* Extra: evita que algum elemento com position fixe largura > viewport */
.fixed, .sticky {
  max-width: 100vw;
}
@media (max-width: 767px) {
  /* Esconde qualquer link de WhatsApp que NÃO seja o CTA da seção e NÃO seja a bolinha flutuante */
  a[href*="wa.me"]:not(.btn-wpp-cta):not(.wpp-bubble) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  /* Esconde TODOS os links de WhatsApp... */
  a[href*="wa.me"] { display: none !important; }

  /* ...exceto o CTA dentro da seção final */
  #cta-final a[href*="wa.me"] { display: flex !important; }

  /* ...e exceto o bolinha flutuante */
  #wpp-bubble { display: flex !important; }
}
/* Saneamento geral */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* MOBILE: padroniza paddings e zera desvios laterais */
@media (max-width: 767px) {
  /* Garante simetria esquerda/direita no conteúdo principal */
  #main-content, 
  #main-content > section, 
  #main-content .container, 
  #main-content .card {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Força padding igual nas laterais dos principais wrappers */
  #main-content > section,
  #main-content .container,
  #cta-final .card {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Neutraliza qualquer “puxão” lateral por classes negativas/offset */
  [class*="-mx-"], .-ml-1, .-ml-2, .-ml-3, .ml-1, .ml-2, .ml-3,
  .shift-left, .neg-margin, .offset-x {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    left: auto !important; right: auto !important;
  }

  /* CTA: garante largura correta e centralização do botão */
  #cta-final .btn-wpp-cta {
    width: 100% !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Evita que a “card” corte sombras/conteúdo nas bordas */
#cta-final .card { overflow: visible; }

