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

:root {
  --orange:    #F99B00;
  --orange-dk: #d98400;
  --purple:    #5B2A86;
  --purple-dk: #4a2070;
  --purple-lt: #7a3db5;
  --cream:     #FCF7F1;
  --cream-dk:  #f0e8dc;
  --white:     #FFFFFF;
  --gray-100:  #f8f8f8;
  --gray-300:  #d1d5db;
  --gray-600:  #6b7280;
  --gray-900:  #111827;

  --font-base: 'Nunito', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --transition: all .25s ease;
  --max-width: 1200px;
  --section-pad: 96px 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--lg   { padding: 16px 32px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,155,0,.4);
}

.btn--secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--secondary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,155,0,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: transparent;
  opacity: .9;
}
.btn--ghost:hover {
  opacity: 1;
  border-color: rgba(255,255,255,.5);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  margin-top: 12px;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.section {
  padding: var(--section-pad);
}

.section--light { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark  { background: var(--purple); color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
  width: 100%;
}

.section__header--light .section__subtitle {
  color: rgba(255,255,255,.8);
}

.section__tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section__tag--light {
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--purple);
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
}

.navbar {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: var(--purple);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
}

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

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
  background: var(--purple);
  min-height: calc(100vh - 87px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(249,155,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(249,155,0,.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 80px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  background: rgba(249,155,0,.2);
  border: 1px solid rgba(249,155,0,.4);
  color: var(--orange);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeDown .6s ease both;
}

.hero__title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeDown .6s .1s ease both;
}

.hero__title span {
  color: var(--orange);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeDown .6s .2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeDown .6s .3s ease both;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeDown .6s .4s ease both;
}

.hero__chips span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.hero__dices {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.dice {
  position: absolute;
  font-size: 2.5rem;
  opacity: .15;
  animation: float linear infinite;
}

.dice--1 { top: 10%; left:  5%; font-size: 3rem;   animation-duration: 14s; animation-delay: 0s; }
.dice--2 { top: 20%; right: 8%; font-size: 2rem;   animation-duration: 18s; animation-delay: 2s; }
.dice--3 { bottom: 30%; left: 12%; font-size: 2.5rem; animation-duration: 12s; animation-delay: 4s; }
.dice--4 { bottom: 20%; right: 5%; font-size: 3.5rem; animation-duration: 16s; animation-delay: 1s; }
.dice--5 { top: 55%; left: 3%;   font-size: 2rem;   animation-duration: 20s; animation-delay: 3s; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.steps__connector {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 900;
  align-self: center;
  margin-top: -20px;
  flex-shrink: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-card__number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249,155,0,.4);
}

.step-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(249,155,0,.5);
  transform: translateY(-4px);
}

.benefit-card--whatsapp {
  border-color: rgba(37,211,102,.4);
  background: rgba(37,211,102,.08);
}

.benefit-card__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.benefit-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.benefit-card__body p {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  border: 2px solid var(--cream-dk);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: cardFadeIn .5s ease both;
}

.category-card:nth-child(1) { animation-delay: .05s; }
.category-card:nth-child(2) { animation-delay: .15s; }
.category-card:nth-child(3) { animation-delay: .25s; }
.category-card:nth-child(4) { animation-delay: .35s; }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.category-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--cream-dk);
}

.category-card__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.category-card__label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-dk);
  margin-bottom: 3px;
}

.category-card__name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.2;
}

.category-card__table {
  width: 100%;
  border-collapse: collapse;
}

.category-card__table thead th {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-align: left;
  padding: 0 0 8px;
}

.category-card__table thead th:last-child {
  text-align: right;
}

.category-card__table tbody tr {
  border-top: 1px solid var(--cream-dk);
}

.category-card__table tbody td {
  padding: 9px 0;
  font-size: .92rem;
  color: var(--gray-900);
  font-weight: 600;
}

.category-card__table tbody td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--purple);
}

.category-card:hover .category-card__table tbody td:last-child {
  color: var(--orange-dk);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: .95rem;
  color: var(--gray-600);
}

.pricing-note a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
}

.schedule {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-dk);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.schedule__item {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  gap: 12px;
  border-bottom: 1px solid var(--cream-dk);
  transition: var(--transition);
}

.schedule__item:last-child {
  border-bottom: none;
}

.schedule__item:hover {
  background: var(--cream);
}

.schedule__day {
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple);
  min-width: 180px;
}

.schedule__dots {
  flex: 1;
  border-bottom: 2px dotted var(--gray-300);
}

.schedule__time {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange-dk);
}

.schedule__time--closed {
  color: var(--gray-600);
  font-weight: 700;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  border: 2px solid var(--cream-dk);
}

.location-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.location-card__body {
  flex: 1;
}

.location-card__body strong {
  display: block;
  color: var(--purple);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.location-card__body p {
  color: var(--gray-900);
  font-weight: 600;
}

.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-lt) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-banner p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: .95;
}

.footer {
  background: var(--purple-dk);
  color: rgba(255,255,255,.85);
  padding: 72px 24px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer__logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 20px;
  opacity: .8;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}

.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer__section-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.footer__about p {
  font-size: .92rem;
  line-height: 1.7;
  opacity: .8;
  margin-bottom: 12px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: .92rem;
  font-weight: 600;
  opacity: .8;
  transition: var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--orange);
  padding-left: 6px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  opacity: .55;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%   { transform: translateY(0px) rotate(0deg); }
  33%  { transform: translateY(-20px) rotate(10deg); }
  66%  { transform: translateY(10px) rotate(-5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

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

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .steps__connector {
    display: none;
  }

  .steps {
    gap: 24px;
  }

  .step-card {
    max-width: 100%;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 20px;
  }

  .navbar__inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .navbar__links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--purple-dk);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 100;
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__links a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .navbar__toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__chips span { font-size: .8rem; }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 380px;
  }

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

  .category-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .schedule__day { min-width: 130px; }

  .location-card {
    flex-direction: column;
    text-align: center;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .schedule__item {
    padding: 16px 20px;
  }

  .schedule__day {
    min-width: unset;
    flex: 1;
  }

  .schedule__dots {
    display: none;
  }
}
