:root {
  color-scheme: dark;
  --color-bg: #05070d;
  --color-surface: #0b0f17;
  --color-surface-alt: #111828;
  --color-surface-accent: #161f32;
  --color-text: #f8fafc;
  --color-text-light: #d1d6e8;
  --color-muted: #94a3b8;
  --color-primary: #fbbf24;
  --color-primary-dark: #d97706;
  --color-highlight: #fde68a;
  --font-base: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 45px 90px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 30px 60px rgba(0, 0, 0, 0.35);
  --transition-base: all 0.25s ease;
  --max-width: 1150px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 55%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 60%);
  background-attachment: fixed;
}

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

a:hover,
a:focus {
  color: var(--color-highlight);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 13, 0.9);
  border-bottom: 1px solid rgba(253, 224, 120, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 224, 120, 0.22);
  background: rgba(253, 224, 120, 0.12);
}

.language-toggle__button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.language-toggle__button:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.language-toggle__button.is-active {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #0b0f17;
  box-shadow: 0 8px 22px rgba(251, 191, 36, 0.35);
}

.language-toggle__flag {
  font-size: 1rem;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(253, 224, 120, 0.35), rgba(11, 15, 23, 0.9));
  border: 1px solid rgba(253, 224, 120, 0.28);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.brand__subtitle {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.btn {
  position: relative;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: var(--transition-base);
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid rgba(253, 224, 120, 0.55);
  outline-offset: 2px;
}

.btn--primary {
  color: #0b0f17;
  background: linear-gradient(135deg, #fde047, #f59e0b);
  box-shadow: 0 25px 55px rgba(245, 158, 11, 0.45);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
}

.btn--primary:hover::after,
.btn--primary:focus-visible::after {
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--color-highlight);
  border: 1px solid rgba(253, 224, 120, 0.4);
}

.btn--ghost:hover,
.btn--ghost:focus {
  border-color: rgba(253, 224, 120, 0.65);
  color: #fff2bf;
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 25px 50px rgba(18, 140, 126, 0.4);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: linear-gradient(135deg, #1ebe5d, #0f766e);
}

.btn__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(5, 7, 13, 0.9);
  border: 1px solid rgba(253, 224, 120, 0.25);
  color: var(--color-highlight);
}

.btn__label {
  position: relative;
  z-index: 1;
}

.btn--large {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hero {
  position: relative;
  padding: 4.5rem 0 2.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 18% 12%, rgba(253, 224, 120, 0.2), transparent 55%),
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.98), rgba(5, 7, 12, 0.92));
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}

.hero::before {
  top: -140px;
  left: -160px;
  background: rgba(253, 224, 120, 0.45);
}

.hero::after {
  bottom: -180px;
  right: -160px;
  background: rgba(18, 140, 126, 0.4);
}

.hero__content {
  position: relative;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero__text p {
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  max-width: 48ch;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(253, 224, 120, 0.14);
  font-weight: 700;
  color: var(--color-highlight);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(253, 224, 120, 0.35);
}

.hero__benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(11, 15, 23, 0.92);
  border: 1px solid rgba(253, 224, 120, 0.12);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.hero__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.15rem;
  background: linear-gradient(135deg, rgba(253, 224, 120, 0.25), rgba(14, 20, 33, 0.9));
  border: 1px solid rgba(253, 224, 120, 0.2);
  color: var(--color-highlight);
}

.hero__benefit-text {
  font-weight: 600;
  color: var(--color-text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero__cta-primary {
  font-size: 1rem;
  padding-inline: 2rem;
}

.hero__cta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.hero__cta-note-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 0 0 6px rgba(253, 224, 120, 0.18);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin: 0;
}

.hero__stats div {
  background: rgba(9, 12, 20, 0.88);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(253, 224, 120, 0.12);
}

.hero__stats dt {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-highlight);
  margin-bottom: 0.35rem;
}

.hero__stats dd {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.hero__image {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
}

.hero__image::before {
  content: '';
  position: absolute;
  inset: 8% 12% 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(253, 224, 120, 0.4), rgba(18, 140, 126, 0.35));
  filter: blur(0);
  opacity: 0.65;
  z-index: -2;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 4% 6% -6%;
  border-radius: calc(var(--radius-lg) * 0.9);
  background: rgba(5, 7, 12, 0.9);
  filter: blur(46px);
  z-index: -3;
}

.hero__image img {
  border-radius: var(--radius-lg);
  width: min(100%, 500px);
  border: 1px solid rgba(253, 224, 120, 0.12);
  box-shadow: 0 45px 85px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.section {
  padding: 3.5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section__header p {
  max-width: 45ch;
  margin: 0 auto;
  color: rgba(209, 214, 232, 0.78);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: rgba(11, 15, 23, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(253, 224, 120, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--color-text-light);
}

.card--vertical img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section--accent {
  background: var(--color-surface-accent);
  padding: 3.5rem 0;
}

.section--muted {
  background: var(--color-surface-alt);
  padding: 3.5rem 0;
  border-block: 1px solid rgba(253, 224, 120, 0.08);
}

.feature,
.feature-card {
  background: linear-gradient(155deg, rgba(253, 224, 120, 0.14), rgba(5, 7, 12, 0.92));
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(253, 224, 120, 0.1);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
}

.feature h3,
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.feature p,
.feature-card p {
  margin: 0;
  color: rgba(209, 214, 232, 0.85);
}

.testimonials {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  background: rgba(9, 12, 20, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(253, 224, 120, 0.1);
  font-size: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.32);
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-light);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  background: rgba(11, 15, 23, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
  padding-left: 4.5rem;
  border: 1px solid rgba(253, 224, 120, 0.08);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde047, #f59e0b);
  color: #0b0f17;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

.steps h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.steps p {
  margin: 0;
  color: var(--color-text-light);
}

.cta {
  background: linear-gradient(140deg, rgba(253, 224, 120, 0.2), rgba(5, 7, 12, 0.95));
  color: #f9fafb;
  padding: 3.75rem 0;
  border: 1px solid rgba(253, 224, 120, 0.1);
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.contact-list__item {
  background: rgba(11, 15, 23, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(253, 224, 120, 0.08);
}

.contact-list__item dt {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-highlight);
}

.contact-list__item dd {
  margin: 0;
  color: var(--color-text-light);
}

.contact-list__link {
  color: var(--color-text-light);
  font-weight: 600;
}

.contact-card {
  background: rgba(9, 12, 20, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(253, 224, 120, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: grid;
  gap: 1rem;
}

.contact-card img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(253, 224, 120, 0.1);
}

.contact-card figcaption {
  color: rgba(209, 214, 232, 0.78);
  font-size: 0.9rem;
}

.footer {
  background: #04060b;
  color: rgba(255, 255, 255, 0.68);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(253, 224, 120, 0.08);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer a {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 20;
  padding: 1rem 1.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 30px 55px rgba(18, 140, 126, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-4px);
}

@media (max-width: 640px) {
  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.25rem;
    justify-content: center;
  }
}

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

  .hero__content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .hero__benefits li:last-child {
    grid-column: 1 / -1;
  }

  .hero__image img {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

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

  .cta__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}