@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --panel: #ffffff;
  --panel-2: #f7f7f5;
  --text: #111111;
  --text-soft: #6b7280;
  --white: #ffffff;
  --orange: #ff5f00;
  --orange-dark: #e05500;
  --orange-soft: #fff0e6;
  --orange-light: #ffe4d6;
  --green: #25d366;
  --green-dark: #128c7e;
  --border: rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 12px 30px rgba(255, 95, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
}

.heading-stack {
  display: grid;
  gap: 14px;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.title.dark {
  color: #111;
}

.lead {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 16px;
}

.centered-copy {
  max-width: 760px;
  margin: 0 auto;
}

.title-xl {
  font-size: clamp(32px, 5vw, 60px);
}

.mt-26 {
  margin-top: 26px;
}

.block-mt-8 {
  display: block;
  margin-top: 8px;
}

.wide-cta {
  width: 100%;
  margin-top: 26px;
}

.underline-soft {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.maxw-840 {
  max-width: 840px;
}

.maxw-260 {
  max-width: 260px;
  margin: 0;
}

.footer-copy {
  margin: 0;
}

.cookie-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.cookie-reject {
  background: #fff;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.legal-updated {
  color: var(--orange);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: #ff7430;
}

.btn-light {
  background: #fff;
  color: var(--orange);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: #111;
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.98);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  min-height: 100vh;
  padding: 116px 32px 32px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-links {
  display: grid;
  gap: 24px;
}

.mobile-menu-links a {
  font-size: clamp(32px, 7vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 36px;
}

.mobile-menu-footer .btn {
  width: 100%;
  border-radius: 22px;
  padding: 18px 22px;
}

/* HERO */
.hero {
  padding-top: 72px;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: 68% center;
  background-repeat: no-repeat;
}

.hero-overlay-mobile,
.hero-overlay-desktop,
.hero-overlay-depth {
  position: absolute;
  inset: 0;
}

.hero-overlay-mobile {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.92));
}

.hero-overlay-desktop {
  display: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45), transparent);
}

.hero-overlay-depth {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: end;
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 620px;
  animation: rise 0.8s ease both;
}

.hero-brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(249, 115, 22, 0.35);
}

.hero-brandline span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 76px);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.hero h1 .accent,
.text-accent {
  color: var(--orange);
}

.hero p {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-empty {
  display: none;
}

/* CALCULATOR */
.calculator {
  background: var(--panel-2);
  padding: 96px 0;
}

.calculator-grid {
  display: grid;
  gap: 22px;
}

.calculator-panel,
.how-panel,
.legal-panel {
  border-radius: 40px;
  overflow: hidden;
}

.calculator-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.04);
}

.calculator-header {
  padding: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-header h2 {
  margin: 14px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.calculator-body {
  padding: 32px;
}

.field-group {
  margin-top: 0;
}

.field-label {
  display: block;
  margin-bottom: 12px;
  color: #71717a;
  font-weight: 500;
  font-size: 14px;
}

.currency-input {
  width: 100%;
  height: 68px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  padding: 0 20px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #111;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.currency-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.08);
}

.installments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.installment-button {
  border: 0;
  border-radius: 18px;
  background: #f4f4f5;
  color: #52525b;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.installment-button:hover {
  transform: translateY(-1px);
  background: #e7e7ea;
}

.installment-button.is-active {
  background: #111;
  color: #fff;
}

.result-box {
  margin-top: 28px;
  border-radius: 32px;
  background: #111;
  color: #fff;
  padding: 30px;
}

.result-box small {
  color: rgba(255, 255, 255, 0.6);
}

.result-value {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 10px;
}

.result-value strong {
  font-size: clamp(40px, 6vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.result-value span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
  margin-top: 20px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.75;
}

.how-panel {
  background: #111;
  color: #fff;
  padding: 32px;
}

.how-panel .kicker,
.advantages .kicker,
.footer .kicker {
  color: var(--orange);
}

.how-panel h3 {
  margin: 14px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.steps-list {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

.step-item {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.step-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.step-item h4 {
  margin: 10px 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.step-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

/* CLT HIGHLIGHT */
.clt-highlight {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}

.clt-highlight .highlight-grid {
  display: grid;
}

.clt-image {
  position: relative;
  min-height: 400px;
}

.clt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clt-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 0, 0.3));
}

.clt-copy {
  padding: 56px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 700;
}

.clt-copy h2 {
  margin: 18px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.clt-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.clt-copy p + p {
  margin-top: 18px;
}

.clt-copy .btn {
  margin-top: 24px;
}

.clt-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}

.clt-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ADVANTAGES */
.advantages {
  background: #fff;
  padding: 88px 0;
}

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

.section-center .title {
  color: #111;
}

.advantages-grid {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 360px;
  padding: 32px;
  color: #fff;
  transition: transform 0.35s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
}

.advantage-card.is-orange {
  background: var(--orange);
}

.advantage-card.is-dark {
  background: #0f0f10;
}

.advantage-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 70px;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.12);
}

.advantage-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
}

.advantage-card h4 {
  position: relative;
  z-index: 1;
  margin: 80px 0 0;
  max-width: 190px;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.advantage-line {
  position: relative;
  z-index: 1;
  margin: 28px 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
}

.advantage-card p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  max-width: 240px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.advantages-footer {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #111;
  color: #fff;
  padding: 30px;
}

.advantages-footer .glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(255, 95, 0, 0.15);
  filter: blur(40px);
}

.advantages-footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.advantages-footer-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 18px;
}

.users-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--orange);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(255, 95, 0, 0.25);
}

/* FAQ */
.faq {
  background: #f3f4f6;
  padding: 88px 0;
}

.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.faq-toggle h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #1f2937;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  border-top: 1px solid #f3f4f6;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
}

.faq-answer-inner ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.faq-extra {
  display: none;
}

.faq-extra.is-visible {
  display: grid;
}

.faq-action {
  margin-top: 28px;
  text-align: center;
}

.btn-faq {
  border-radius: 999px;
  padding: 14px 26px;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  font-weight: 800;
}

.btn-faq:hover {
  background: var(--orange);
  color: #fff;
}

/* FOOTER */
.footer {
  background: #000;
  color: #9ca3af;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 95, 0, 0.18);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-logo img {
  height: 128px;
  width: auto;
  margin-bottom: 10px;
}

.footer h4 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links p,
.footer-links address {
  font-style: normal;
  color: #cbd5e1;
  line-height: 1.8;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.08);
}

.social-linkedin {
  background: #187dff;
}

.social-instagram {
  background: linear-gradient(135deg, #b618c1 0%, #f3593d 100%);
}

.copyright {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
}

/* FLOAT */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
}

.whatsapp-bubble {
  margin-right: 12px;
  background: #fff;
  color: #1f2937;
  border: 1px solid #f3f4f6;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-button-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.75);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-button {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  background: var(--green-dark);
}

.whatsapp-button i {
  font-size: 30px;
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  padding: 18px 0;
  display: grid;
  gap: 16px;
}

.cookie-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 95, 0, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex: 0 0 40px;
}

.cookie-copy p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  border-radius: 14px;
  padding: 12px 18px;
}

/* LEGAL */
.legal-page {
  min-height: 100vh;
  background: #fff;
  color: #111;
}

.legal-topline {
  height: 8px;
  background: var(--orange);
}

.legal-topline.is-dark {
  background: #111;
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.legal-hero {
  border-bottom: 1px solid #f3f4f6;
  padding: 42px 0 28px;
  text-align: center;
}

.legal-hero img {
  height: 64px;
  width: auto;
  margin: 0 auto 12px;
}

.legal-hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.legal-hero p {
  margin: 8px 0 0;
  color: #6b7280;
  font-weight: 500;
}

.legal-content {
  padding: 56px 0 80px;
}

.legal-article {
  display: grid;
  gap: 34px;
  line-height: 1.85;
  color: #374151;
}

.legal-article h2 {
  color: #111;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.legal-article h3 {
  color: #111;
  font-size: 18px;
  margin: 18px 0 8px;
}

.legal-article p,
.legal-article li {
  font-size: 15px;
}

.legal-article ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-callout {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 28px;
}

.footer-legal {
  background: #000;
  color: #9ca3af;
  text-align: center;
  padding: 28px 0 40px;
  border-top: 1px solid #111827;
}

/* SIMULATION */
.simulation-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
}

.simulation-top {
  padding: 22px 0 12px;
  text-align: center;
}

.simulation-top img {
  height: 48px;
  margin: 0 auto;
}

.simulation-top h1 {
  margin: 10px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--orange), #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.simulation-top p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.simulation-shell {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  padding: 24px 0 28px;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.stepper-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.stepper-item strong {
  display: block;
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.stepper-item.is-active {
  border-color: rgba(255, 95, 0, 0.25);
  background: rgba(255, 95, 0, 0.06);
  color: #111;
}

.stepper-item.is-active strong {
  color: var(--orange);
}

.stepper-item.is-done {
  border-color: rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.06);
}

.simulation-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.simulation-step {
  display: none;
}

.simulation-step.is-visible {
  display: block;
}

.simulation-step h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.simulation-step .sub {
  margin: 0 0 26px;
  color: #6b7280;
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.form-control {
  display: grid;
  gap: 8px;
}

.form-control label {
  color: #4b5563;
  font-weight: 700;
  font-size: 12px;
}

.form-control input,
.form-control textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px;
  color: #111827;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control input:focus,
.form-control textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.08);
}

.form-control .error {
  color: #ef4444;
  font-size: 12px;
}

.gender-row,
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gender-option {
  flex: 1 1 160px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
  padding: 13px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.gender-option.is-active {
  background: var(--orange-soft);
  border-color: rgba(255, 95, 0, 0.3);
  color: var(--orange);
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.step-nav .btn {
  border-radius: 999px;
}

.info-banner {
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
  color: #fff;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 18px;
}

.info-banner h4 {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-banner ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.location-box,
.terms-box,
.review-box,
.confirm-box,
.no-results,
.loading-box {
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 18px;
}

.terms-box {
  max-height: 320px;
  overflow: auto;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0 0;
  cursor: pointer;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex: 0 0 18px;
}

.proposal-card {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 14px;
}

.proposal-head,
.proposal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.timer-pill.is-live {
  background: #fef3c7;
  color: #a16207;
}

.timer-pill.is-expired {
  background: #fee2e2;
  color: #dc2626;
}

.count-box {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 95, 0, 0.25);
  background: #fff7ed;
  padding: 16px;
  text-align: center;
}

.confirm-badge {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.28);
}

.confirm-badge i {
  font-size: 40px;
}

.footer-note {
  text-align: center;
  color: #9ca3af;
  font-size: 11px;
  padding: 18px 0 26px;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
}

/* ANIMATIONS */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .grid-2 {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .hero-content {
    min-height: calc(100vh - 72px);
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: 12fr;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-overlay-desktop {
    display: block;
  }

  .calculator-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .clt-highlight .highlight-grid {
    grid-template-columns: 42% 58%;
    min-height: 95vh;
  }

  .clt-image {
    min-height: 100%;
  }

  .clt-copy {
    padding: 0 0 0 36px;
    display: flex;
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.1fr 0.75fr 0.95fr;
    align-items: start;
  }

  .cookie-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .simulation-card {
    padding: 30px;
  }

  .stepper-item {
    padding: 16px 10px;
  }
}

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

  .hero-copy {
    max-width: 640px;
  }

  .hero-empty {
    display: block;
  }

  .clt-copy {
    padding-left: 64px;
  }

  .simulation-shell {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero p,
  .lead,
  .advantage-card p,
  .clt-copy p,
  .footer-links p,
  .footer-links address {
    font-size: 15px;
  }

  .calculator-header,
  .calculator-body,
  .how-panel,
  .advantages-footer,
  .advantage-card,
  .simulation-card,
  .legal-callout {
    border-radius: 28px;
  }

  .site-header .container,
  .utility-bar .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .whatsapp-float {
    right: 12px;
    bottom: 86px;
  }

  .whatsapp-bubble {
    display: none;
  }

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

@media print {
  .no-print,
  .cookie-banner,
  .whatsapp-float,
  .site-header,
  .utility-bar,
  .footer {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
