/* ── Reset & Variables ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0D0B14;
  --bg-card: #1A1528;
  --bg-light: #221d35;
  --rose: #E8487A;
  --orange: #FF6B35;
  --text: #F9F4FF;
  --muted: #9B8EC4;
  --border: rgba(232, 72, 122, .18);
  --grad: linear-gradient(135deg, #E8487A, #FF6B35);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(232, 72, 122, .15);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Typography ─────────────────────────────────────────── */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-script {
  font-family: 'Dancing Script', cursive;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 12px 28px;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(232, 72, 122, .3);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(232, 72, 122, .45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 28px;
  font-size: .9rem;
}

.btn-ghost:hover {
  border-color: var(--rose);
  background: rgba(232, 72, 122, .06);
}

.btn-sm {
  padding: 8px 18px;
  font-size: .8rem;
}

.btn-danger {
  background: #7f1d1d;
  color: #fca5a5;
}

.btn-danger:hover {
  background: #991b1b;
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
}

.form-control {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: rgba(232, 72, 122, .5);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: .6;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

select.form-control option {
  background: var(--bg-card);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 72, 122, .4);
  box-shadow: var(--shadow);
}

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-rose {
  background: rgba(232, 72, 122, .15);
  color: var(--rose);
}

.badge-green {
  background: rgba(34, 197, 94, .12);
  color: #4ade80;
}

.badge-muted {
  background: rgba(155, 142, 196, .12);
  color: var(--muted);
}

.badge-orange {
  background: rgba(255, 107, 53, .12);
  color: var(--orange);
}

/* ── Section ─────────────────────────────────────────────── */
.section {
  padding: 90px 6vw;
}

.section-sm {
  padding: 60px 6vw;
}

.section-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
}

/* ── Nav ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(13, 11, 20, .85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-logo-text .sub {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 6vw 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}

.footer-brand p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.75;
  max-width: 300px;
  margin-top: 14px;
}

.footer-col h5 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  color: var(--muted);
  font-size: .84rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: .76rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}

.social-link:hover {
  border-color: var(--rose);
  background: rgba(232, 72, 122, .1);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--muted);
  transition: fill .2s;
}

.social-link:hover svg {
  fill: var(--rose);
}

/* ── WhatsApp float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(37, 211, 102, .55);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── Toast ───────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 400;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: .88rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  transform: translateX(120%);
  transition: transform .35s ease;
  max-width: 300px;
}

#toast.show {
  transform: translateX(0);
}

#toast.success {
  border-color: rgba(74, 222, 128, .3);
  color: #4ade80;
}

#toast.error {
  border-color: rgba(248, 113, 113, .3);
  color: #f87171;
}

/* ── Loader ───────────────────────────────────────────────── */
.spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--rose);
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.page-btn:hover,
.page-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(232, 72, 122, .08);
}

.page-btn:disabled {
  opacity: .35;
  cursor: default;
}

/* ── reCAPTCHA ───────────────────────────────────────────── */
.recaptcha-wrapper {
  display: inline-flex;
  margin-top: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}