:root {
  color-scheme: dark;
  --color-ink: #000000;
  --color-snow: #ffffff;
  --color-shock: #ff1493;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--color-ink);
  color: var(--color-snow);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.pink-underline {
  box-shadow: inset 0 -0.5em 0 rgba(255, 20, 147, 0.18);
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  background: rgba(255, 20, 147, 0.18);
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow::before {
  width: 28rem;
  height: 28rem;
  top: -12rem;
  left: -8rem;
}

.hero-glow::after {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  bottom: -10rem;
}

.section-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.section-card:hover {
  border-color: #ff1493;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.icon-inline svg {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  color: inherit;
  overflow: visible;
}

.icon-inline svg [fill="currentColor"] {
  fill: currentColor;
}

.icon-inline svg [stroke="currentColor"] {
  stroke: currentColor;
}

.cta-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.social-grid {
  display: grid;
  gap: 1rem;
}

.social-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 20, 147, 0.4);
  background: rgba(255, 20, 147, 0.12);
  color: #ff1493;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.social-icon-button .icon-inline {
  width: 1.2rem;
  height: 1.2rem;
  color: inherit;
}

.social-icon-button:hover {
  border-color: #ff1493;
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.25), 0 10px 25px rgba(0, 0, 0, 0.22);
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 20, 147, 0.4);
  background: rgba(255, 20, 147, 0.12);
  color: #ffffff;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.social-button:hover {
  border-color: #ff1493;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.25), 0 10px 25px rgba(0, 0, 0, 0.22);
}

.social-button--solid {
  background: #ff1493;
  color: #000000;
}

.social-button--solid:hover {
  background: #000000;
  color: #ff1493;
  border-color: #ff1493;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-logo {
  display: inline-flex;
  max-width: 20rem;
}

.footer-brand-text {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #ff1493;
}

.footer-brand-text span {
  color: #ffffff;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-link-list {
  display: grid;
  gap: 0.85rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.footer-link-list a:hover {
  color: #ff1493;
}

.footer-contact-list {
  display: grid;
  gap: 0.9rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.footer-contact-link .icon-inline {
  color: #ff1493;
  width: 1.05rem;
  height: 1.05rem;
}

.footer-contact-link:hover {
  color: #ff1493;
}

.footer-region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-region-pill {
  border: 1px solid rgba(255, 20, 147, 0.35);
  border-radius: 9999px;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.footer-bottom-links a:hover {
  color: #ff1493;
}

.nav-panel[data-open="false"] {
  display: none;
}

.nav-panel[data-open="true"] {
  display: block;
}

@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .site-footer-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(12rem, 0.8fr) minmax(14rem, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 767px) {
  .nav-panel nav {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer-copy {
    font-size: 1rem;
  }

  .footer-link-list,
  .footer-contact-list,
  .footer-bottom-links {
    font-size: 1rem;
    line-height: 1.65;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-region-pill {
    font-size: 0.9rem;
  }

  .floating-whatsapp {
    font-size: 0.95rem;
  }
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.backdrop-blur {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.bg-black\/70 {
  background: rgba(0, 0, 0, 0.7);
}

.bg-black\/95 {
  background: rgba(0, 0, 0, 0.95);
}

.bg-ink {
  background: var(--color-ink);
}

.bg-shock {
  background: var(--color-shock);
}

.bg-white\/5 {
  background: rgba(255, 255, 255, 0.05);
}

.bg-white\/\[0\.03\] {
  background: rgba(255, 255, 255, 0.03);
}

.block {
  display: block;
}

.hidden {
  display: none;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.min-h-screen {
  min-height: 100vh;
}

.w-5 {
  width: 1.25rem;
}

.w-28 {
  width: 7rem;
}

.w-full {
  width: 100%;
}

.h-5 {
  height: 1.25rem;
}

.h-28 {
  height: 7rem;
}

.h-full {
  height: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-auto {
  margin-top: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.list-disc {
  list-style-type: disc;
}

.list-inside {
  list-style-position: inside;
}

.pl-6 {
  padding-left: 1.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 1.05;
}

.font-sans {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.leading-relaxed {
  line-height: 1.75;
}

.leading-tight {
  line-height: 1.05;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.text-ink {
  color: var(--color-ink);
}

.text-shock {
  color: var(--color-shock);
}

.text-snow,
.text-white {
  color: var(--color-snow);
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/85 {
  color: rgba(255, 255, 255, 0.85);
}

.placeholder\:text-white\/30::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.border {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.border-b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.border-t {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.border-y {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/15 {
  border-color: rgba(255, 255, 255, 0.15);
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.object-contain {
  object-fit: contain;
}

.shadow-glow {
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.4), 0 10px 25px rgba(0, 0, 0, 0.25);
}

.transition {
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hover\:border-shock:hover {
  border-color: var(--color-shock);
}

.hover\:text-shock:hover {
  color: var(--color-shock);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:shadow-glow:hover {
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.4), 0 10px 25px rgba(0, 0, 0, 0.25);
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-30 {
  z-index: 30;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: flex;
  }

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

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.8rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1.05;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1\.1fr_0\.9fr\] {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-\[1\.45fr_0\.85fr\] {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  }
}
