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

html {
  scroll-behavior: smooth;
  background: #ffffff;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #BC38AF #f1f5f9;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #f1f5f9;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #E3396C 0%, #BC38AF 100%);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(223.8407079646, 34.6592920354, 91.4137168142) 0%, rgb(168.3524590164, 50.1475409836, 156.7110655738) 100%);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #BC38AF;
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: #E3396C;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  line-height: 1;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease, box-shadow 250ms ease;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 57, 108, 0.4);
}
.btn-cta:hover {
  color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 57, 108, 0.5);
}
.btn-cta:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: 2px;
}

.section__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section__particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-float linear infinite;
  will-change: transform, opacity;
}

.section__particles--light .section__particle {
  background: rgba(188, 56, 175, 0.2);
  box-shadow: 0 0 20px rgba(188, 56, 175, 0.15);
}
.section__particles--light .section__particle:nth-child(3n) {
  background: rgba(227, 57, 108, 0.18);
  box-shadow: 0 0 16px rgba(227, 57, 108, 0.12);
}
.section__particles--light .section__particle:nth-child(5n) {
  background: rgba(22, 87, 180, 0.15);
  box-shadow: 0 0 18px rgba(22, 87, 180, 0.1);
}

.section__particles--dark .section__particle {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}
.section__particles--dark .section__particle:nth-child(3n) {
  background: rgba(188, 56, 175, 0.25);
}
.section__particles--dark .section__particle:nth-child(5n) {
  background: rgba(227, 57, 108, 0.2);
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(15px, -30px) scale(1.05);
    opacity: 0.9;
  }
  50% {
    transform: translate(-10px, -55px) scale(0.95);
    opacity: 0.7;
  }
  75% {
    transform: translate(20px, -25px) scale(1.02);
    opacity: 0.85;
  }
}
.section-with-particles {
  position: relative;
  overflow: hidden;
}

.section-with-particles > *:not(.section__particles) {
  position: relative;
  z-index: 1;
}

.scroll-reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.scroll-reveal.is-visible .servicos__card.scroll-reveal-el {
  transition-delay: calc(0.1s * (var(--reveal-order, 0) + 1));
}

.hero .scroll-reveal-el {
  transition-duration: 0.7s;
}

.hero .hero__badge.scroll-reveal-el {
  transition-delay: 0.05s;
}

.hero .hero__title.scroll-reveal-el {
  transition-delay: 0.1s;
}

.hero .hero__desc.scroll-reveal-el {
  transition-delay: 0.2s;
}

.hero .hero__actions.scroll-reveal-el {
  transition-delay: 0.3s;
}

.hero .hero__visual.scroll-reveal-el {
  transition-delay: 0.15s;
}

.site-footer .footer__container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.site-footer.is-visible .footer__container {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 250ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 150ms ease;
}
.header__logo:hover {
  opacity: 0.9;
}

.header__logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.header__drawer-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.header__logo {
  flex: 1;
  min-width: 0;
}

.header__logo .header__logo-img {
  flex-shrink: 0;
}

.header__nav {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.header__actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
}

.header__nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
  border-radius: 10px;
}
.header__nav-link:hover {
  color: #BC38AF;
  background: rgba(188, 56, 175, 0.06);
}

.header__cta {
  flex-shrink: 0;
}

.header__user,
.header__drawer-user {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
}

.header__logout {
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #334155;
  transition: background 150ms ease, color 150ms ease;
}
.header__menu-toggle:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.header__menu-toggle:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: 2px;
}

.header__menu-icon {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.header__menu-icon::before, .header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 250ms ease;
}
.header__menu-icon::before {
  top: -7px;
}
.header__menu-icon::after {
  top: 7px;
}

.site-header.is-drawer-open .header__menu-icon {
  background: transparent;
}
.site-header.is-drawer-open .header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-drawer-open .header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 250ms ease;
}

.header__drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.header__drawer.is-open .header__drawer-backdrop {
  opacity: 1;
}

.header__drawer.is-open .header__drawer-panel {
  transform: translateX(0);
}

.header__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 250ms ease;
}

.header__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(15, 23, 42, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 250ms ease;
}

.header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.header__drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #475569;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.header__drawer-close:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header__drawer-link {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1e293b;
  border-radius: 10px;
}
.header__drawer-link:hover {
  background: #f1f5f9;
  color: #BC38AF;
}

.header__drawer-cta {
  margin-top: 1.5rem;
  padding-top: 0.875rem;
  width: fit-content;
  max-width: 100%;
  align-self: center;
  text-align: center;
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  .header__logged-in {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .header__menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .header__drawer .header__drawer-cta {
    display: none;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + 4rem) 1.5rem 4rem;
  overflow: hidden;
  background: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffff;
}

.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  pointer-events: none;
}

.hero__gradient--1 {
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  top: -20%;
  right: -15%;
  background: linear-gradient(135deg, #BC38AF 0%, #E3396C 100%);
}

.hero__gradient--2 {
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  bottom: -10%;
  left: -10%;
  background: linear-gradient(135deg, #1657B4 0%, #BC38AF 50%);
}

.hero__gradient--3 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(227, 57, 108, 0.5) 0%, rgba(188, 56, 175, 0.5) 100%);
  opacity: 0.04;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(203, 213, 225, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(203, 213, 225, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero__content {
  max-width: 1200px;
}

@media (min-width: 901px) {
  .hero__content {
    margin-left: 8%;
    padding-left: 1.5rem;
  }
}
.hero__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #BC38AF;
  background: rgba(188, 56, 175, 0.1);
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.95rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: linear-gradient(135deg, #BC38AF 0%, #E3396C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 2rem;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__stat-value {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #BC38AF 0%, #E3396C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 250ms ease, color 150ms ease, background 150ms ease;
  cursor: pointer;
}

.hero__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  box-shadow: 0 4px 20px rgba(227, 57, 108, 0.45);
  border: none;
}
.hero__btn--primary:hover {
  color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227, 57, 108, 0.5);
}

.hero__btn--secondary {
  color: #1657B4;
  background: transparent;
  border: 2px solid #1657B4;
}
.hero__btn--secondary:hover {
  background: rgba(22, 87, 180, 0.08);
  color: rgb(16.4455445545, 65.0346534653, 134.5544554455);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__video-wrap {
  position: relative;
  display: inline-block;
}

.hero__img,
.hero__video {
  display: block;
  max-width: 100%;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  object-fit: cover;
  background: #f1f5f9;
}

@media (min-width: 901px) {
  .hero__video {
    max-width: 260px;
  }
}
.hero__video-sound {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.hero__video-sound i {
  font-size: 1.125rem;
}
.hero__video-sound:hover {
  background: rgba(15, 23, 42, 0.85);
  transform: scale(1.05);
}
.hero__video-sound.is-unmuted {
  background: rgba(188, 56, 175, 0.9);
}

.hero__video-replay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: none;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 150ms ease, opacity 150ms ease;
}
.hero__video-replay i {
  font-size: 2rem;
}
.hero__video-replay:hover {
  background: rgba(15, 23, 42, 0.9);
}

.hero__video-replay.is-visible {
  display: flex;
}

.hero__card {
  width: 160px;
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  transition: transform 250ms ease;
}
.hero__card:hover {
  transform: translateY(-6px);
}

.hero__card--ig {
  background: linear-gradient(145deg, #f9f3ff 0%, #fff0f5 100%);
  border: 1px solid rgba(188, 56, 175, 0.15);
  color: #1e293b;
}

.hero__card--tk {
  background: linear-gradient(145deg, #e8f4ff 0%, #f0e8ff 100%);
  border: 1px solid rgba(22, 87, 180, 0.2);
  color: #1e293b;
}

.hero__card-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero__card-label {
  display: block;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.25rem;
}

.hero__card-value {
  display: block;
  font-size: 1.5rem;
  color: #BC38AF;
  font-weight: 700;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}
@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .hero__content {
    margin: 0 auto;
  }
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
  }
}
.servicos {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.servicos__container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.servicos__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0f172a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.servicos__subtitle {
  font-size: 1.0625rem;
  color: #475569;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.servicos__subtitle-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #E3396C 0%, #BC38AF 100%);
  border-radius: 9999px;
}

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

.servicos__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  min-height: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 150ms ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.servicos__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E3396C 0%, #BC38AF 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}
.servicos__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(188, 56, 175, 0.12);
  border-color: rgba(188, 56, 175, 0.2);
}
.servicos__card:hover::before {
  transform: scaleX(1);
}
.servicos__card:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: 4px;
}

.servicos__card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #E3396C;
  background: rgba(227, 57, 108, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.servicos__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #BC38AF;
  font-size: 1.5rem;
  background: rgba(188, 56, 175, 0.08);
  border-radius: 10px;
  transition: color 150ms ease, background 150ms ease;
}
.servicos__card-icon i {
  font-size: inherit;
}

.servicos__card:hover .servicos__card-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
}

.servicos__card-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.servicos__card-desc {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0 0 auto;
  line-height: 1.5;
  flex: 1;
}

.servicos__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #BC38AF;
  transition: color 150ms ease, gap 150ms ease;
}

.servicos__card:hover .servicos__card-link {
  color: #E3396C;
  gap: 1rem;
}

@media (max-width: 900px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .servicos__grid {
    grid-template-columns: 1fr;
  }
}
.como-funciona {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.como-funciona__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(188, 56, 175, 0.03) 0%, transparent 50%, rgba(227, 57, 108, 0.03) 100%);
  pointer-events: none;
}

.como-funciona__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.como-funciona__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.como-funciona__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #BC38AF;
  background: rgba(188, 56, 175, 0.1);
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.como-funciona__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.como-funciona__subtitle {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.como-funciona__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.como-funciona__step {
  position: relative;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 150ms ease;
  text-align: center;
}
.como-funciona__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: rgba(188, 56, 175, 0.2);
}
.como-funciona__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #cbd5e1 0%, transparent 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.como-funciona__step-num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.como-funciona__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: #BC38AF;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(227, 57, 108, 0.1) 0%, rgba(188, 56, 175, 0.1) 100%);
  border-radius: 16px;
  transition: all 250ms ease;
}
.como-funciona__step-icon i {
  font-size: inherit;
}

.como-funciona__step:hover .como-funciona__step-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
}

.como-funciona__step-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.como-funciona__step-desc {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .como-funciona__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .como-funciona__step::after {
    display: none;
  }
}
@media (max-width: 520px) {
  .como-funciona__steps {
    grid-template-columns: 1fr;
  }
}
.beneficios {
  padding: 6rem 1.5rem;
  background: #0f172a;
  color: #ffffff;
}

.beneficios__container {
  max-width: 1200px;
  margin: 0 auto;
}

.beneficios__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  margin: 0 0 4rem;
  letter-spacing: -0.02em;
}

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

.beneficios__card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform 250ms ease, background 150ms ease, border-color 150ms ease;
}
.beneficios__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(188, 56, 175, 0.3);
}

.beneficios__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #E3396C;
  font-size: 1.375rem;
  background: rgba(188, 56, 175, 0.2);
  border-radius: 10px;
}
.beneficios__card-icon i {
  font-size: inherit;
}

.beneficios__card-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.beneficios__card-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
  }
}
.carousel-faq {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.carousel-faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.carousel-faq__label {
  font-size: 0.9375rem;
  color: #BC38AF;
  font-weight: 600;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.carousel-faq__label i {
  font-size: 1rem;
  opacity: 0.8;
}

.carousel-faq__carousel {
  min-height: 80px;
  position: relative;
}

.carousel-faq__track {
  position: relative;
}

.carousel-faq__slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.carousel-faq__slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.carousel-faq__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-faq__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.carousel-faq__dot:hover {
  background: #94a3b8;
}
.carousel-faq__dot.is-active {
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  transform: scale(1.2);
}

.carousel-faq__faq {
  margin-bottom: 4rem;
}

.carousel-faq__faq-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #0f172a;
  margin: 0 0 2rem;
  text-align: center;
}

.carousel-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.carousel-faq__item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: box-shadow 150ms ease, border-color 150ms ease;
}
.carousel-faq__item:hover {
  box-shadow: 0 8px 24px rgba(188, 56, 175, 0.08);
  border-color: rgba(188, 56, 175, 0.15);
}

.carousel-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease;
}
.carousel-faq__trigger:hover {
  color: #BC38AF;
  background: #f8fafc;
}
.carousel-faq__trigger:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: -2px;
}

.carousel-faq__chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #64748b;
  transition: transform 250ms ease;
}

.carousel-faq__item.is-open .carousel-faq__chevron {
  transform: rotate(180deg);
  color: #BC38AF;
}

.carousel-faq__panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.carousel-faq__panel[hidden] .carousel-faq__panel-inner {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.carousel-faq__panel:not([hidden]) .carousel-faq__panel-inner {
  opacity: 1;
}

.carousel-faq__panel-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
}

.carousel-faq__cta {
  text-align: center;
}

.carousel-faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .carousel-faq__cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .carousel-faq__cta-link {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
.carousel-faq__cta-link i {
  font-size: 1.25rem;
}

.cta-final {
  position: relative;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(188, 56, 175, 0.06) 0%, rgba(227, 57, 108, 0.04) 50%, rgba(22, 87, 180, 0.06) 100%);
  overflow: hidden;
}

.cta-final__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-final__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(188, 56, 175, 0.15);
  border: 2px solid rgba(188, 56, 175, 0.1);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.cta-final__img-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(188, 56, 175, 0.2);
}

.cta-final__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-final__content {
  max-width: 480px;
}

.cta-final__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0f172a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.cta-final__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 2rem;
}

.cta-final__btn {
  display: inline-flex;
  padding: 1rem 3rem;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .cta-final__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .cta-final__content {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta-final__img-wrap {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}
.modal-auth {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.modal-auth.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal-auth__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-auth.is-open .modal-auth__backdrop {
  opacity: 1;
}

.modal-auth__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding-top: 3rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-auth.is-open .modal-auth__panel {
  transform: scale(1);
}

.modal-auth__close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  z-index: 1;
}
.modal-auth__close i {
  font-size: 1.25rem;
  font-weight: 600;
}
.modal-auth__close:hover {
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  color: #ffffff;
  transform: scale(1.05);
}
.modal-auth__close:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: 2px;
}

.modal-auth__tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin-top: 1rem;
}

.modal-auth__tab {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}
.modal-auth__tab:hover {
  color: #334155;
}
.modal-auth__tab.is-active {
  color: #BC38AF;
  border-bottom-color: #BC38AF;
}
.modal-auth__tab:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: -2px;
}

.modal-auth__content {
  padding: 2rem;
}

.modal-auth__pane {
  display: none;
}
.modal-auth__pane.is-active {
  display: block;
}

.modal-auth__title {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.modal-auth__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-auth__message {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}
.modal-auth__message--error {
  background: #fef2f2;
  color: #dc2626;
}
.modal-auth__message--success {
  background: #f0fdf4;
  color: #16a34a;
}

.modal-auth__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-auth__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

.modal-auth__input {
  width: 100%;
  padding: 0.5rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.modal-auth__input::placeholder {
  color: #94a3b8;
}
.modal-auth__input:focus {
  outline: none;
  border-color: #BC38AF;
  box-shadow: 0 0 0 3px rgba(188, 56, 175, 0.15);
}

.modal-auth__submit {
  margin-top: 0.5rem;
  width: 100%;
}

.modal-compra {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.modal-compra.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal-compra__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-compra.is-open .modal-compra__backdrop {
  opacity: 1;
}

.modal-compra__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-compra.is-open .modal-compra__panel {
  transform: scale(1);
}

.modal-compra__close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.modal-compra__close:hover {
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  color: #ffffff;
}

.modal-compra__title {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
}

.modal-compra__alert {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.modal-compra__produto {
  font-size: 0.9375rem;
  color: #334155;
  margin: 0 0 0.25rem;
}

.modal-compra__preco {
  font-size: 1.125rem;
  font-weight: 600;
  color: #BC38AF;
  margin: 0 0 1.5rem;
}

.modal-compra__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-compra__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-compra__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

.modal-compra__input {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}
.modal-compra__input:focus {
  outline: none;
  border-color: #BC38AF;
  box-shadow: 0 0 0 3px rgba(188, 56, 175, 0.15);
}

.modal-compra__hint {
  font-size: 0.75rem;
  color: #64748b;
}

.modal-compra__message {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}
.modal-compra__message--error {
  background: #fef2f2;
  color: #dc2626;
}

.modal-compra__submit {
  margin-top: 0.5rem;
  width: 100%;
}

.loja-page {
  padding-top: 72px;
}

.loja-hero {
  padding: 4rem 1.5rem;
  background: #ffffff;
  text-align: center;
}

.loja-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.loja-hero__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin: 0 0 1rem;
}

.loja-hero__subtitle {
  font-size: 1.0625rem;
  color: #475569;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.loja-filtros {
  padding: 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.loja-filtros__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.loja-filtros__search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: block;
}

.loja-filtros__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
}

.loja-filtros__input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.loja-filtros__input::placeholder {
  color: #94a3b8;
}
.loja-filtros__input:focus {
  outline: none;
  border-color: #BC38AF;
  box-shadow: 0 0 0 3px rgba(188, 56, 175, 0.12);
}

.loja-filtros__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.loja-filtros__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}
.loja-filtros__btn:hover {
  color: #BC38AF;
  border-color: #BC38AF;
  background: rgba(188, 56, 175, 0.06);
}
.loja-filtros__btn.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  border-color: transparent;
}

.loja-section.loja-section--hidden,
.loja-card.loja-card--hidden {
  display: none !important;
}

.loja-section {
  padding: 4rem 1.5rem;
  background: #f8fafc;
}

.loja-section:nth-child(even) {
  background: #ffffff;
}

.loja-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.loja-section__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loja-section__title i {
  color: #BC38AF;
}

.loja-categoria {
  margin-bottom: 4rem;
}
.loja-categoria:last-child {
  margin-bottom: 0;
}

.loja-categoria__title {
  font-family: "Sora", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loja-categoria__title i {
  color: #E3396C;
  font-size: 1rem;
}

.loja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.loja-card {
  position: relative;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-align: center;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 150ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.loja-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: rgba(188, 56, 175, 0.2);
}

.loja-card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  background: #E3396C;
  padding: 2px 6px;
  border-radius: 6px;
}

.loja-card__qty {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.loja-card__label {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 1rem;
  text-transform: lowercase;
}

.loja-card__preco {
  margin-bottom: 1rem;
}

.loja-card__preco-atual {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #BC38AF;
}

.loja-card__preco-de {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.loja-card__btn {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 600px) {
  .loja-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dash {
  display: flex;
  min-height: 100vh;
  background: #f8fafc;
}

.dash__sidebar {
  width: 260px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 1.5rem 0;
  flex-shrink: 0;
  position: relative;
  z-index: 100;
}

.dash__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.dash__sidebar-logo a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.dash__sidebar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: background 150ms ease;
}
.dash__sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.dash__sidebar-toggle i {
  font-size: 1.25rem;
}

.dash__nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
}
.dash__nav-link:hover, .dash__nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.dash__nav-link i {
  width: 20px;
  text-align: center;
}

.dash__main {
  flex: 1;
  padding: 1.25rem;
  overflow-x: hidden;
  min-width: 0;
}

.dash__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash__header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dash__title {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.dash__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.dash__user-name {
  font-weight: 600;
  color: #334155;
}

.dash__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.dash__card-title {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #334155;
}
.dash__card-title i {
  margin-right: 0.5rem;
  opacity: 0.8;
}

.dash__card-success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-left: 4px solid #22c55e;
}
.dash__card-success p {
  margin: 0;
  color: #166534;
  font-weight: 600;
}
.dash__card-success p + p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #15803d;
  font-weight: 400;
}

.dash__card-warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
}
.dash__card-warning p {
  margin: 0;
  color: #92400e;
  font-weight: 600;
}
.dash__card-warning p + p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b45309;
  font-weight: 400;
}

.dash__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.dash__stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.dash__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.dash__stat-label {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.dash__empty {
  color: #64748b;
}

.dash__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
}

.dash__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.dash__table th,
.dash__table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.dash__table th {
  font-weight: 600;
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash__table td {
  color: #334155;
}
.dash__table a {
  color: #1657B4;
  font-weight: 600;
  word-break: break-all;
}

.dash__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dash__badge--pago {
  background: #dcfce7;
  color: #166534;
}

.dash__badge--pendente {
  background: #fef3c7;
  color: #92400e;
}

.dash__badge--processando {
  background: #dbeafe;
  color: #1e40af;
}

.dash__badge--entregue {
  background: #dcfce7;
  color: #166534;
}

.dash__badge--cancelado {
  background: #fee2e2;
  color: #991b1b;
}

.dash__badge--reembolsado {
  background: #f3e8ff;
  color: #6b21a8;
}

.dash__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.dash__btn:hover {
  opacity: 0.9;
}
.dash__btn i {
  font-size: 0.875em;
}

.dash__btn--outline {
  background: transparent;
  color: #BC38AF;
  border: 2px solid #BC38AF;
}
.dash__btn--outline:hover {
  background: rgba(188, 56, 175, 0.08);
}

.dash__card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.dash__dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
.dash__dl dt {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.dash__dl dd {
  margin: 0;
  font-weight: 500;
}

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

.dash__total-row {
  text-align: right;
  margin-top: 1rem;
  font-weight: 700;
}

.dash__break-all {
  word-break: break-all;
}

.dash__value-lg {
  font-size: 1.25rem;
  font-weight: 700;
}

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

@media (max-width: 767px) {
  .dash__table-wrap {
    overflow: visible;
    margin: 0;
  }
  .dash__table {
    min-width: 0;
    display: block;
  }
  .dash__table thead {
    display: none;
  }
  .dash__table tbody {
    display: block;
  }
  .dash__table tr {
    display: block;
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
  }
  .dash__table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border: none;
    min-height: auto;
  }
  .dash__table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .dash__table td:first-child {
    padding-top: 0;
    font-weight: 700;
    font-size: 1rem;
  }
  .dash__table td:last-child {
    padding-bottom: 0;
  }
  .dash__table a {
    word-break: break-all;
    text-align: right;
  }
  .dash__table .dash__badge {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .dash__main {
    padding: 1.5rem;
  }
  .dash__header {
    margin-bottom: 2rem;
  }
  .dash__title {
    font-size: 1.75rem;
  }
  .dash__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .dash__stat {
    padding: 1.25rem;
  }
  .dash__stat-value {
    font-size: 1.75rem;
  }
  .dash__card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .dash__grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash__dl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dash__stats {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 900px) {
  .dash {
    flex-direction: column;
  }
  .dash__sidebar {
    width: 100%;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }
  .dash__sidebar-header {
    padding: 0 1rem 0.75rem;
    margin-bottom: 0;
    border-bottom: none;
  }
  .dash__sidebar-nav {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
  }
  .dash__sidebar.is-open .dash__sidebar-nav {
    display: block;
  }
  .dash__sidebar-toggle {
    display: flex;
  }
  .dash__nav-link {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }
}
@media (min-width: 901px) {
  .dash__sidebar-nav {
    display: block !important;
  }
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 6rem 1.5rem 2rem;
}

.site-footer .footer__container {
  position: relative;
  z-index: 1;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.4);
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 150ms ease;
}
.footer__logo:hover {
  opacity: 0.9;
}

.footer__logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 1.5rem;
  color: #94a3b8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  background: #25D366;
  border-radius: 9999px;
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease, background 150ms ease, box-shadow 250ms ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  color: #f1f5f9;
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 2px;
}

.footer__wa-icon {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer__links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer__col-title {
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}

.footer__list {
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  font-size: 0.9375rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer__link:hover {
  color: #BC38AF;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: color 150ms ease, background 150ms ease;
}
.footer__social-link:hover {
  color: #ffffff;
  background: rgba(188, 56, 175, 0.3);
}

.footer__social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__social-icon--whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.footer__social-icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__links-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #E3396C 0%, #BC38AF 100%);
  box-shadow: 0 4px 16px rgba(188, 56, 175, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
.scroll-to-top:hover {
  box-shadow: 0 6px 20px rgba(188, 56, 175, 0.5);
  transform: translateY(-2px);
}
.scroll-to-top:focus-visible {
  outline: 2px solid #BC38AF;
  outline-offset: 2px;
}
.scroll-to-top i {
  font-size: 1.125rem;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
