/* MySincoppa — Web corporativa estática */

:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --primary: #21487C;
  --primary-hover: #1a3a66;
  --primary-foreground: #ffffff;
  --primary-soft: rgba(33, 72, 124, 0.15);
  --primary-soft-hover: rgba(33, 72, 124, 0.25);
  --accent: #c17b21;
  --accent-hover: #a9681c;
  --accent-soft: rgba(193, 123, 33, 0.15);
  --accent-soft-hover: rgba(193, 123, 33, 0.25);
  --muted: #e2e8f0;
  --muted-foreground: #475569;
  --border: #94a3b8;
  --radius: 0.625rem;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --gradient: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --max-width: 1100px;
  --legal-max-width: 720px;
  --header-height: 4rem;
  --transition: 150ms ease;
}

@supports (color: color-mix(in srgb, red, transparent)) {
  :root {
    --primary-soft: color-mix(in srgb, var(--primary) 15%, transparent);
    --primary-soft-hover: color-mix(in srgb, var(--primary) 25%, transparent);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--gradient);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.125rem;
}

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

.logo-link img {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle-label:hover {
  background: var(--accent-soft);
}

.nav-toggle-label span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
}

.site-nav a:not(.btn):hover {
  color: var(--accent);
}

.site-nav a.btn-primary,
.site-nav a.btn-primary:hover {
  color: #ffffff;
}

.site-nav .nav-cta {
  margin-left: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.btn-primary:hover,
.site-nav a.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: var(--background);
  color: var(--foreground);
  border: 2px solid var(--primary);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Main */
main {
  flex: 1;
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.page-home .hero {
  padding: 0.75rem 0 2.25rem;
}

.page-home .hero-card {
  margin-top: 0;
}

.page-home .hero-tagline {
  display: block;
  width: 75%;
  height: auto;
  margin: 0 auto 0.25rem;
}

.page-home .hero-desc {
  width: 100%;
  max-width: none;
  margin: 0 0 1rem;
  text-align: center;
}

.page-home .hero-actions {
  margin-top: 0.25rem;
}

.page-home .features {
  padding: 0 0 3rem;
}

.page-home .features h2 {
  margin-bottom: 1.25rem;
}

.hero-logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0 auto 1.25rem;
}

.hero h1 {
  margin: 0 0 0.375rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero-desc {
  margin: 0 0 1.75rem;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-align: justify;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Features */
.features {
  padding: 0 0 4rem;
}

.features h2 {
  text-align: center;
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

.feature-icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.feature-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* Legal & content pages */
.page-header {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.page-header p {
  margin: 0;
  color: var(--muted-foreground);
}

.legal-content,
.contact-content {
  max-width: var(--legal-max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.content-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}

.legal-content h2,
.contact-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content h2:first-child,
.contact-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li,
.contact-content p,
.contact-content li {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.legal-content ul,
.legal-content ol,
.contact-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li,
.contact-content li + li {
  margin-top: 0.375rem;
}

.legal-content > .content-card + .content-card,
.legal-content > .content-card + .platform-cta {
  margin-top: 1.25rem;
}

.legal-content > .platform-cta {
  margin-top: 1.25rem;
}

.legal-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.placeholder {
  background: #fef3c7;
  color: #92400e;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: var(--muted);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.contact-info dl {
  margin: 0;
}

.contact-info dt {
  font-weight: 500;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.contact-info dt:first-child {
  margin-top: 0;
}

.contact-info dd {
  margin: 0.25rem 0 0;
  font-size: 1.0625rem;
}

.contact-info dd a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info dd a:hover {
  color: var(--accent);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  padding: 0.625rem 0.875rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Privacy summary (home) */
.privacy-summary {
  padding: 0 0 4rem;
}

.privacy-summary .legal-content {
  padding-bottom: 0;
}

.privacy-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.privacy-summary .content-card p:last-child {
  margin-bottom: 0;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.features-teaser {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.features-teaser a {
  font-weight: 600;
}

/* Pricing */
.pricing {
  padding: 2.5rem 0 4rem;
}

.pricing-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 2.5rem;
  text-align: center;
}

.pricing-intro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-intro p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.pricing-billing-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pricing-billing-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

.pricing-billing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-billing-btn {
  padding: 0.5rem 1.125rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.pricing-billing-btn:not(.is-active) {
  background: var(--primary-soft);
  border: 1px solid transparent;
  color: var(--primary);
}

.pricing-billing-btn:not(.is-active):hover {
  background: var(--accent-soft-hover);
  border-color: transparent;
  color: var(--accent);
}

.pricing-billing-btn.is-active {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--primary-foreground);
}

.pricing-billing-btn.is-active:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Pricing matrix */
.pricing-matrix {
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: none;
  border-radius: 0;
  background: transparent;
}

.pricing-matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-badge-row {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  min-width: 720px;
  width: 100%;
}

.pricing-badge-cell {
  min-width: 0;
}

.pricing-badge-cell-featured {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0.75rem 1rem 0;
}

.pricing-badge-cell-featured .plan-col-badge {
  margin-bottom: 0;
}

.pricing-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
}

.pricing-compare th,
.pricing-compare td {
  padding: 0.875rem 1rem;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.pricing-compare tr > :last-child {
  border-right: none;
}

.pricing-compare tr > :first-child {
  border-left: none;
}

.pricing-compare thead tr > * {
  border-top: none;
}

.pricing-compare tbody tr:last-child > * {
  border-bottom: none;
}

.pricing-compare thead th {
  font-weight: 600;
}

.pricing-compare thead th.plan-col {
  padding: 0;
  background: var(--muted);
  overflow: hidden;
}

.pricing-compare thead th.plan-col-label {
  background: transparent;
  text-align: center;
  vertical-align: bottom;
  padding: 0.25rem 1rem 1.25rem;
}

.pricing-compare thead th.plan-col .plan-col-header {
  background: transparent;
  border-radius: 0;
  min-height: 12.5rem;
}

.pricing-compare thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.plan-col-label {
  width: 25%;
  min-width: 9rem;
  text-align: left;
  vertical-align: bottom;
  background: transparent;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 1rem;
  position: sticky;
  left: 0;
  z-index: 4;
}

.plan-col {
  width: 25%;
  min-width: 11rem;
  background: var(--muted);
  padding: 0;
}

.plan-col-featured {
  background: var(--muted);
}

.plan-col-header {
  display: flex;
  flex-direction: column;
  min-height: 12.5rem;
  height: 100%;
  padding: 1rem 1rem 1.25rem;
  text-align: center;
}

.plan-col-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  line-height: 1.3;
  white-space: nowrap;
}

.plan-col-name {
  margin: 0;
  min-height: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  align-content: center;
  justify-content: center;
  gap: 0.125rem 0.25rem;
}

.plan-col-soon {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.plan-col-price {
  margin: 0;
  min-height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plan-col-price-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  width: 100%;
}

.plan-col-price-set[hidden] {
  display: none;
}

.plan-col-amount {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-col-period {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.plan-col-note {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-col-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.plan-col-actions .btn {
  width: 100%;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.pricing-compare tbody th {
  text-align: left;
  font-weight: 500;
  width: 25%;
  background: transparent;
  position: sticky;
  left: 0;
  z-index: 1;
}

.pricing-compare tbody td {
  background: transparent;
}

.pricing-compare tbody td:nth-child(3) {
  background: var(--muted);
}

.pricing-compare tbody tr:nth-child(even) td:nth-child(3) {
  background: #dde4ed;
}

.pricing-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-cross {
  color: #dc2626;
  font-weight: 700;
}

.pricing-cell-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 400;
  margin-top: 0.125rem;
}

.pricing-compare s {
  color: var(--muted-foreground);
}

.pricing-compare tbody th .pricing-cell-note {
  margin-top: 0.25rem;
  font-weight: 400;
}

.pricing-compare tbody td[colspan="3"] {
  text-align: left;
  font-size: 0.9375rem;
}

.pricing-note {
  margin: 0 auto 0.875rem;
  max-width: 40rem;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  text-align: center;
}

.pricing-note strong {
  font-size: inherit;
  font-weight: 600;
}

.pricing-note--single {
  max-width: none;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(0.625rem, 1.05vw, 0.6875rem);
}

@media (max-width: 900px) {
  .pricing-note--single {
    white-space: normal;
    max-width: 40rem;
  }
}

.pricing-note--double {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .pricing-note--double {
    max-width: 40rem;
  }
}

.pricing-note:last-of-type {
  margin-bottom: 2.5rem;
}

.pricing-offers {
  margin-bottom: 2.5rem;
}

.pricing-offers-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.pricing-offers-intro {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.pricing-offers-footnote {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
}

.offer-desc-note {
  font-weight: 400;
  color: var(--muted-foreground);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.offer-grid-2 {
  max-width: 56rem;
  margin: 0 auto;
  align-items: stretch;
}

.offer-stack {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.offer-grid-2 .offer-card {
  padding-top: 2rem;
}

.offer-card-promo {
  position: relative;
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.offer-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  line-height: 1.3;
}

.offer-card-promo .offer-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  box-shadow: 0 0 0 2px var(--background);
}

.offer-subtitle {
  margin: -0.375rem 0 0.75rem;
  min-height: 1.375rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.offer-subtitle-spacer {
  visibility: hidden;
  margin-bottom: 0.75rem;
}

.offer-savings {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.offer-card-onboarding {
  border-color: var(--border);
}

.offer-title {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.offer-prices,
.offer-details {
  margin: 0 0 0.75rem;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
}

.offer-prices li + li,
.offer-details li + li {
  margin-top: 0.25rem;
}

.offer-desc {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.offer-desc-muted {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0;
}

.offer-onboarding-base {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.offer-onboarding-base s {
  color: var(--muted-foreground);
}

.offer-onboarding-prices s {
  color: var(--muted-foreground);
  font-weight: 400;
}

.offer-payment-split {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.offer-payment-split p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.offer-payment-split p + p {
  margin-top: 0.375rem;
}

.offer-card-promo .offer-desc:last-of-type {
  margin-bottom: 0.75rem;
}

.offer-card .btn {
  margin-top: auto;
}

.pricing-legal {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.6;
}

.pricing-banner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.pricing-banner p {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
}

.pricing-banner .btn-secondary {
  background: var(--background);
  flex-shrink: 0;
}

.pricing-banner .btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.pricing-cta {
  text-align: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}

.pricing-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.pricing-cta-hint {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

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

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.footer-brand strong {
  font-size: 0.875rem;
}

.footer-brand p {
  margin: 0.25rem 0 0;
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.75rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: var(--primary-foreground);
  font-size: 0.75rem;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-contact {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.5;
}

.footer-contact p {
  margin: 0;
}

.footer-contact p + p {
  margin-top: 0.125rem;
}

.footer-contact a {
  color: var(--primary-foreground);
}

.footer-bottom {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid rgba(248, 250, 252, 0.15);
  font-size: 0.6875rem;
  color: rgba(248, 250, 252, 0.65);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #ffffff;
}

.footer-bottom a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 200ms ease, opacity 200ms ease, visibility 200ms;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.cookie-banner a:hover {
  color: var(--accent);
}

.footer-contact a:hover {
  color: var(--accent);
  opacity: 1;
}

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0 5rem;
  }

  .page-home .hero {
    padding: 1rem 0 2.25rem;
  }

  .page-home .hero-tagline {
    margin: 0 auto 0.25rem;
    width: 75%;
  }

  .hero-card {
    padding: 3rem 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    gap: 1rem 1.5rem;
  }
}

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

  .plan-col-amount {
    font-size: 2rem;
  }

  .plan-col-actions .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }

  .offer-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-compare {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 200ms ease;
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: 28rem;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
  }

  .site-nav .nav-cta .btn {
    width: 100%;
  }

  .site-header .header-inner {
    position: relative;
  }
}

/* Platform — nuestra-plataforma.html */
.platform-section {
  padding: 0 0 3rem;
}

.platform-nav {
  margin-bottom: 1.5rem;
  border-bottom: none;
}

.platform-nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.platform-tab {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.platform-tab:not(.is-active) {
  background: var(--primary-soft);
  border: 1px solid transparent;
  color: var(--primary);
}

.platform-tab:not(.is-active):hover {
  background: var(--accent-soft-hover);
  border-color: transparent;
  color: var(--accent);
  text-decoration: none;
}

.platform-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}

.platform-tab.is-active:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  text-decoration: none;
}

.platform-panels {
  max-width: var(--max-width);
  margin: 0 auto;
}

.platform-section-intro {
  margin: 0 0 1.5rem;
  width: 100%;
  max-width: none;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  text-align: justify;
}

.platform-cta {
  margin-top: 2.5rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.platform-section .platform-cta.pricing-cta,
.pricing .pricing-cta,
.story-page > .platform-cta.pricing-cta {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem 0 0;
}

.platform-section .platform-cta.pricing-cta h2,
.pricing .pricing-cta h2,
.story-page > .platform-cta.pricing-cta h2 {
  color: var(--foreground);
}

.platform-section-panel[hidden] {
  display: none;
}

.platform-sub-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.platform-sub-item {
  background: var(--background);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
}

.platform-sub-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.platform-sub-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.platform-sub-item:not(.is-open) .platform-sub-trigger {
  background: var(--primary-soft);
  color: var(--primary);
}

.platform-sub-item:not(.is-open) .platform-sub-trigger:hover {
  background: var(--accent-soft-hover);
  color: var(--accent);
}

.platform-sub-item:not(.is-open):hover {
  border-color: #e2e8f0;
}

.platform-sub-item.is-open {
  border-color: var(--primary);
}

.platform-sub-item.is-open .platform-sub-trigger {
  background: var(--primary);
  color: var(--primary-foreground);
}

.platform-sub-item.is-open .platform-sub-trigger:hover {
  background: var(--accent);
  color: #ffffff;
}

.platform-sub-trigger-text {
  flex: 1;
}

.platform-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: transform 250ms ease, color var(--transition);
}

.platform-sub-item.is-open .platform-chevron {
  color: var(--primary-foreground);
}

.platform-sub-item:not(.is-open) .platform-chevron {
  transform: rotate(-90deg);
}

.platform-sub-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.platform-sub-item.is-open .platform-sub-panel {
  grid-template-rows: 1fr;
}

.platform-sub-panel[hidden] {
  display: none;
}

.platform-sub-item.is-open .platform-sub-panel[hidden] {
  display: grid;
}

.platform-sub-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.platform-sub-item.is-open .platform-sub-panel-inner {
  padding: 1rem 0.25rem 0.25rem;
}

.platform-sub-panel-inner h4 {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.platform-module {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.platform-module__body h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.platform-module__lead {
  margin: 0 0 1rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.platform-module__features {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.platform-module__features li + li {
  margin-top: 0.375rem;
}

.platform-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  max-width: 40rem;
  border: 1px dashed var(--border);
  border-radius: calc(var(--radius) - 2px);
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

.platform-screenshot {
  display: block;
  position: relative;
  width: 100%;
  max-width: 40rem;
  padding: 0;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  font: inherit;
  text-align: left;
  overflow: hidden;
}

.platform-screenshot--wide {
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.platform-screenshot--wide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-screenshot-group {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.platform-screenshot-group--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.platform-screenshot-group--single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-screenshot-group .platform-screenshot {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  cursor: pointer;
}

.platform-screenshot-group .platform-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--background);
}

.platform-screenshot-group--single .platform-screenshot {
  width: auto;
  height: 92%;
  max-width: 42%;
  aspect-ratio: 9 / 16;
}

.platform-screenshot--portrait {
  cursor: pointer;
}

.platform-screenshot-hint {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.platform-screenshot:hover .platform-screenshot-hint,
.platform-screenshot:focus-visible .platform-screenshot-hint {
  opacity: 1;
}

.platform-screenshot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.platform-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
}

.platform-lightbox[hidden] {
  display: none;
}

.platform-lightbox__image {
  display: block;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.platform-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.platform-lightbox__close:hover,
.platform-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
}

@media (min-width: 640px) {
  .platform-nav-list {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .platform-tab {
    font-size: 0.9375rem;
  }

  .platform-module {
    grid-template-columns: minmax(0, 24rem) 1fr;
    align-items: center;
  }

  .platform-img-placeholder,
  .platform-screenshot-group,
  .platform-screenshot {
    max-width: none;
  }
}

/* Story page — nuestra-historia.html */
.story-hero-lead {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  text-align: justify;
}

.story-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.story-carousel {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.story-carousel__viewport {
  overflow: hidden;
}

.story-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.story-carousel__slide {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0.25rem 0;
}

.story-carousel__media {
  width: 100%;
}

.story-carousel__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.story-carousel__slide .story-media-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.story-carousel__copy h2 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.story-carousel__copy p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--foreground);
  text-align: justify;
}

.story-carousel__copy p + p {
  margin-top: 1rem;
}

.story-tagline {
  margin-top: 1.25rem !important;
  font-size: 1.125rem !important;
  text-align: center;
}

.story-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.story-carousel__btn:hover:not(:disabled),
.story-carousel__btn:focus-visible:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.story-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.story-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-carousel__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.story-carousel__dot:hover,
.story-carousel__dot:focus-visible {
  background: var(--accent-soft-hover);
}

.story-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.story-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 12rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  text-align: center;
  padding: 1.5rem;
}

.story-trust {
  margin: 3rem 0 2.5rem;
  padding: 2rem 0 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.story-trust h2 {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.story-trust p {
  margin: 0 auto;
  width: 100%;
  max-width: none;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--foreground);
  text-align: center;
}

.story-trust p + p {
  margin-top: 1rem;
}

.story-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
}

.story-logo-placeholder img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.story-logo-placeholder img.story-logo--wide {
  width: auto;
  max-width: 140px;
  height: 48px;
}

.story-page > .platform-cta {
  margin-top: 0;
}

@media (min-width: 768px) {
  .story-carousel__slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .story-carousel__copy h2 {
    text-align: left;
  }

  .story-carousel__copy .story-tagline {
    text-align: left;
  }
}

/* Touch / tablet optimizations */
.story-carousel__btn,
.story-carousel__dot,
.platform-tab,
.pricing-billing-btn,
.nav-toggle-label {
  min-width: 44px;
  min-height: 44px;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
}

@media (min-width: 768px) and (max-width: 1023px) {

  /* Nav: más aire sin hamburger */
  .site-nav ul { gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
  .site-nav a { font-size: 0.8125rem; }
  .site-nav .nav-cta .btn { padding: 0.5rem 0.875rem; font-size: 0.875rem; }

  /* Plataforma: tabs en 2 filas si caben */
  .platform-nav-list { flex-wrap: wrap; overflow-x: visible; }

  /* Plataforma: módulos menos apretados */
  .platform-module {
    grid-template-columns: minmax(0, 18rem) 1fr;
    gap: 1rem;
  }

  /* Planes: scroll tabla más cómodo */
  .pricing-matrix-scroll {
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
  }

  /* Inicio: hero tagline un poco más ancho */
  .page-home .hero-tagline { width: 85%; }

  /* Features: 2 columnas explícitas (ya casi así) */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Nuestra historia — carrusel */
  .story-carousel { padding: 0 1.5rem; }
  .story-carousel__slide { gap: 1.5rem; }
  .story-carousel__copy p { font-size: 1rem; line-height: 1.6; }
  .story-trust { padding-left: 1.5rem; padding-right: 1.5rem; }
  .story-logos { gap: 1.25rem; }

  /* Contacto */
  .contact-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .contact-grid { gap: 2rem; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; }

  /* Inicio — features y hero */
  .page-home .hero-desc { font-size: 1rem; padding: 0 0.5rem; }
  .feature-card { padding: 1.25rem; }
  .features-teaser { padding: 0 1rem; }

  /* Cookie banner tablet */
  .cookie-banner-inner { padding: 0 0.5rem; }
  .cookie-banner-actions { flex-shrink: 0; }

  /* CTAs finales (plataforma, historia, planes) */
  .pricing-cta-actions,
  .platform-cta .pricing-cta-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  /* Legal (privacidad, términos, cookies) */
  .legal-content,
  .content-card { padding-left: 1.5rem; padding-right: 1.5rem; }
}
