:root {
  --bg-main: #0b1026;
  --bg-secondary: #151c45;
  --bg-hero: #0b0f2c;
  --bg-hero-2: #090d24;
  --bg-light: #f7f4ee;
  --bg-soft: #eee8f7;
  --bg-contrast: #0f132c;

  --surface: #ffffff;
  --surface-soft: #faf7f1;
  --surface-dark: rgba(255, 255, 255, 0.08);

  --gold: #d4af37;
  --gold-soft: #e6c76a;
  --purple: #7b5cff;
  --lilac: #b48bff;
  --pink: #f08bd7;

  --text-dark: #1c1a17;
  --text-soft-dark: #5f5a52;
  --text-light: #f7f3ea;
  --text-soft-light: rgba(247, 243, 234, 0.82);

  --border-gold: rgba(212, 175, 55, 0.22);
  --border-light: rgba(28, 26, 23, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 0.3s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--bg-main), #070a19);
  color: var(--text-dark);
  line-height: 1.6;
}

body.theme-astral {
  background: linear-gradient(180deg, var(--bg-main), #070a19);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* UTILITIES */
.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(92%, 900px);
  margin: 0 auto;
}

.hidden {
  display: none;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-soft {
  background: linear-gradient(180deg, #f3eef9 0%, #ede7f7 100%);
  color: var(--text-dark);
}

.section-contrast {
  background: linear-gradient(180deg, #131833 0%, #0a0e22 100%);
  color: var(--text-light);
}

.section-dark-cta {
  background: linear-gradient(180deg, #0b0f24 0%, #070916 100%);
  color: var(--text-light);
}

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

.section-tag,
.hero-badge,
.dark-tag {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-tag,
.hero-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: #9e7d22;
}

.dark-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--gold-soft);
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  color: inherit;
}

.gold-title {
  color: #b28a22;
text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dark-title {
  color: var(--text-light);
}

.section-text {
  font-size: 1.06rem;
  color: var(--text-soft-dark);
}

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

.strong-text {
  font-weight: 700;
  color: var(--text-dark);
}

.light-text {
  color: var(--text-soft-light);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(11, 16, 38, 0.96) 0%, rgba(20, 26, 64, 0.96) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(10px);
}

.site-header .container,
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.logo,
.logo-admin,
.logo-admin-secret {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f3ead2;
  cursor: default;
  user-select: none;
}

.logo:hover,
.logo-admin:hover,
.logo-admin-secret:hover {
  color: #f3ead2;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.header-nav a,
.site-header a {
  color: #f3ead2;
  font-size: 0.95rem;
  transition: var(--transition);
}

.header-nav a:hover,
.site-header a:hover {
  color: var(--gold);
}

.header-center {
  justify-content: center !important;
}

/* HERO */
.hero-kabbalah {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.25rem 5rem;
  background:
    radial-gradient(circle at 75% 25%, rgba(180, 139, 255, 0.12), transparent 20%),
    radial-gradient(circle at 20% 10%, rgba(240, 139, 215, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg-hero) 0%, var(--bg-hero-2) 100%);
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.hero-left {
  width: 100%;
}

.hero-left h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-left p {
  margin-top: 0.5rem;
  font-size: 1.08rem;
  max-width: 620px;
  color: var(--text-soft-light);
}

.hero-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.kabbalah-tree {
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.22));
  border-radius: 18px;
}

/* ABOUT DANI */
.about-dani-section {
  background: linear-gradient(180deg, #f7f4ee 0%, #f4efe7 100%);
}

.about-dani-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-dani-photo {
  display: flex;
  justify-content: center;
}

.dani-photo {
  width: min(100%, 420px);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-dani-content {
  max-width: 780px;
}

.about-title {
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.about-text {
  display: grid;
  gap: 1rem;
}

.about-text p {
  color: var(--text-soft-dark);
  font-size: 1rem;
}

.about-highlight {
  font-weight: 700;
  color: #7a5b18;
}

/* BUTTONS */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}

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

.btn-gold,
.btn-primary {
  background: linear-gradient(180deg, #e6cf95 0%, #d4af37 100%);
  color: #1e1a12;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.24);
}

.btn-dark {
  background: #171b31;
  color: var(--text-light);
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  backdrop-filter: blur(8px);
}

.btn-full {
  width: 100%;
}

.btn-large {
  min-height: 58px;
  padding-inline: 2rem;
  margin-top: 1.5rem;
}

.btn-whatsapp {
  background: linear-gradient(180deg, #30d16b 0%, #1faa52 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(34, 170, 84, 0.22);
  gap: 0.6rem;
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-soft);
  background: transparent;
}

/* INTRO */
.intro-block {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* BENEFITS */
.benefit-grid,
.steps-grid,
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.benefit-card,
.step-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.benefit-card h3,
.step-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text-dark);
}

.benefit-card p,
.step-box p {
  color: var(--text-soft-dark);
}

.benefit-icon,
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-icon {
  background: rgba(212, 175, 55, 0.12);
  color: #b68b21;
  font-size: 1.1rem;
}

.step-number {
  background: linear-gradient(180deg, #e3c983 0%, #c79a2f 100%);
  color: #17130e;
}

.cta-center,
.center-block {
  text-align: center;
  margin-top: 2rem;
}

/* FORM */
.form-container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.form-shell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.lux-form {
  background: #faf7f1;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #201c18;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  outline: none;
  background: #ffffff;
  color: #1d1a17;
}

.form-group input::placeholder {
  color: #8b847a;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-group.checkbox {
  margin: 1rem 0;
}

.form-group.checkbox label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
  color: #201c18;
}

.form-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--gold);
}

.form-group.checkbox a {
  color: #8a6518;
  font-weight: 700;
  text-decoration: underline;
}

.error-message {
  display: block;
  min-height: 18px;
  margin-top: 0.35rem;
  color: #c53939;
  font-size: 0.86rem;
}

.form-note {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.92rem;
  color: #61584e;
}

.dark-text {
  color: var(--text-soft-light);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-list p {
  margin-top: 0.8rem;
  color: var(--text-soft-dark);
}

/* CARD - PRIVACIDADE / TERMOS */
.card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-soft-dark);
  margin-bottom: 1rem;
}

/* RESULT PAGE - LAYOUT ORIGINAL CORRIGIDO */
.result-page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(180, 139, 255, 0.12), transparent 18%),
    radial-gradient(circle at 20% 10%, rgba(240, 139, 215, 0.08), transparent 16%),
    linear-gradient(180deg, #0b0f2c 0%, #090d24 100%);
  color: var(--text-light);
  min-height: calc(100vh - 140px);
}

.result-page-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  opacity: 0.16;
  pointer-events: none;
}

.result-page-content {
  position: relative;
  z-index: 2;
}

.result-page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.result-page-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.result-page-header p {
  color: var(--text-soft-light);
  font-size: 1.05rem;
}

.result-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.result-summary-card,
.result-details-card,
.result-main-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text-light);
}

.result-summary-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-summary-card .section-tag {
  align-self: center;
  color: var(--gold-soft);
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
}

.result-orb,
.result-number-circle {
  width: 140px;
  height: 140px;
  margin: 1.2rem auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #f0ddb0 0%, #d4af37 58%, #956e17 100%);
  color: #17120d;
  font-size: 3rem;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.26);
}

.large-orb {
  width: 160px;
  height: 160px;
  font-size: 3.3rem;
}

.result-description,
.result-text {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--text-soft-light);
  white-space: pre-line;
  line-height: 1.8;
  text-align: left;
}

.result-details-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.result-details-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.detail-item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: rgba(247, 243, 234, 0.72);
}

.detail-item strong {
  color: #ffffff;
  font-size: 1rem;
  word-break: break-word;
}

.result-page-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Compatibilidade com result.ejs simplificado */
.result-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  color: var(--text-light);
}

.result-tag {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
}

/* UPSALE / PACKAGES */
.upsell-section {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.upsell-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.upsell-intro h2,
#combos .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.upsell-intro p {
  color: var(--text-soft-light);
  font-size: 1.05rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card h3 {
  color: var(--text-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  min-height: 58px;
}

.package-card p {
  color: var(--text-soft-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.package-badge,
.package-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-soft);
  font-size: 0.85rem;
}

.featured-package,
.package-card.featured {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.14);
}

.package-prices-column {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.package-price-box {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.9rem;
  color: rgba(247, 243, 234, 0.75);
}

.package-price,
.price {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}

.package-actions,
.package-actions-stack {
  margin-top: auto;
  display: grid;
  gap: 0.8rem;
}

.package-actions .btn,
.package-actions-stack .btn {
  width: 100%;
  min-height: 52px;
}

.package-actions .btn-dark,
.package-actions-stack .btn-dark {
  background: #141a38;
  color: #ffffff;
}

.whatsapp-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2rem 1.2rem;
}

.whatsapp-cta h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.whatsapp-cta p {
  color: var(--text-soft-light);
  margin-bottom: 1.2rem;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #30d16b 0%, #1faa52 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(34, 170, 84, 0.28);
  z-index: 1200;
  transition: var(--transition);
}

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

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, rgba(11, 16, 38, 0.98) 0%, rgba(20, 26, 64, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  color: #f3ead2;
}

.site-footer .container,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.footer-links,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #f3ead2;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links a + a::before,
.footer-nav a + a::before {
  content: "|";
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ADMIN LOGIN */
.admin-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(180, 139, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #0b0f2c 0%, #070916 100%);
}

.admin-login-card {
  width: min(100%, 440px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  color: var(--text-light);
}

.admin-login-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.admin-login-card p {
  color: var(--text-soft-light);
  margin-bottom: 1.4rem;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-error {
  background: rgba(197, 57, 57, 0.12);
  border: 1px solid rgba(197, 57, 57, 0.35);
  color: #ffd6d6;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
}

/* ADMIN - TEMA CLARO */
.admin-page {
  background: #f5f6fb;
  color: #1a1a1a;
  min-height: 100vh;
  padding: 40px;
}

.admin-container {
  max-width: 1200px;
  margin: auto;
}

.admin-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.admin-subtitle {
  margin-bottom: 20px;
  color: #555;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.admin-actions form {
  margin: 0;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.admin-btn.gold {
  background: linear-gradient(90deg, #d4af37, #f6d77b);
  color: #111;
  font-weight: 600;
}

.admin-btn.danger {
  background: #b42318;
  color: #ffffff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.admin-table thead {
  background: #111;
  color: #fff;
}

.admin-table tbody tr {
  border-bottom: 1px solid #eee;
}

.admin-table tbody tr:hover {
  background: #f8f8f8;
}

.admin-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.admin-success {
  background: #e8f8ef;
  border: 1px solid #9edbb8;
  color: #176b3a;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.admin-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.admin-grid .full {
  grid-column: 1 / -1;
}

.admin-form textarea,
.admin-form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.admin-delete-all-form {
  margin-top: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid #eee;
}

.admin-delete-all-form h2 {
  color: #111;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.admin-delete-all-form p {
  color: #555;
  margin-bottom: 1rem;
}

.admin-delete-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-delete-row input {
  min-width: 240px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .benefit-grid,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-dani-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .result-page-grid,
  .result-container {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .result-page-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

@media (min-width: 900px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero-left {
    max-width: 560px;
  }

  .kabbalah-tree {
    width: 380px;
  }

  .about-title {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .hero-kabbalah {
    padding: 7rem 1.25rem 6rem;
  }

  .lux-form {
    padding: 1.8rem;
  }

  .about-dani-grid {
    gap: 3rem;
  }
}

@media (min-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .site-footer .container,
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .admin-page {
    padding: 20px;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #30d16b 0%, #1faa52 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(34, 170, 84, 0.28);
  z-index: 9999;
  transition: 0.3s ease;
}

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

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* E-BOOKS */
.ebooks-section {
  margin-top: 3rem;
}

.ebooks-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.ebooks-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.ebooks-intro p {
  color: var(--text-soft-light);
}

.ebooks-grid {
  max-width: 430px;
  margin: 0 auto;
}

.ebook-card {
  border-color: rgba(212, 175, 55, 0.28);
}