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

:root {
  --verde-claro:  #A8C4A0;
  --verde-medio:  #6E9E6A;
  --verde-escuro: #3d6b3a;
  --rosa:         #E88BB3;
  --rosa-escuro:  #c0527a;
  --creme:        #F5F1EB;
  --dark:         #0f1a10;
  --dark2:        #0d1410;
  --text-light:   #f0ece4;
  --text-muted:   #b8c8b4;
  --gold:         #d4af74;
  --gold-light:   #f0d89a;

  --font-title:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:   'Lato', 'Helvetica Neue', sans-serif;

  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 8px 32px rgba(0,0,0,0.35);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--dark2);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--verde-medio); border-radius: 3px; }

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 13, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110,158,106,0.15);
  transition: background var(--transition);
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    var(--gold-light) 0%,
    var(--rosa) 40%,
    var(--gold) 60%,
    var(--gold-light) 100%
  );
  background-size: 250% 100%;
  animation: nav-shimmer 8s ease-in-out infinite;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

@keyframes nav-shimmer {
  0%   { background-position: 200% center; }
  50%  { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

.site-header .main-nav,
.site-header .hamburger {
  position: relative;
  z-index: 1;
}

.nav-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-header.scrolled {
  background: rgba(9, 13, 9, 0.97);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(
    120deg,
    var(--gold-light) 0%,
    var(--rosa) 40%,
    var(--gold) 60%,
    var(--gold-light) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nav-link-shimmer 4s linear infinite;
  transition: opacity var(--transition), filter var(--transition);
  position: relative;
}

@keyframes nav-link-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(135deg, #F5F1EB, #f0d89a, #E88BB3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover { opacity: 0.8; filter: brightness(1.15); }
.main-nav a:hover::after { transform: scaleX(1); }

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--rosa));
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #080d08;
  z-index: 99;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(110,158,106,0.12);
  overflow: hidden;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(212,175,116,0.04) 30%,
    rgba(232,139,179,0.06) 55%,
    rgba(168,191,163,0.04) 75%,
    transparent 100%
  );
  background-size: 250% 100%;
  animation: nav-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.mobile-nav ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #F5F1EB 30%, #f0d89a 60%, #E88BB3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nav-link-shimmer 5s linear infinite;
  transition: opacity var(--transition), filter var(--transition);
}

.mobile-nav a:hover {
  opacity: 0.8;
  filter: brightness(1.15);
}

section {
  position: relative;
  z-index: 3;
}

section > * {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--creme);
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--rosa), var(--gold));
  border-radius: 2px;
  margin: 1.25rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(37,211,102,0.65);
}

.btn-outline {
  background: transparent;
  color: var(--creme);
  border: 1px solid rgba(168,191,163,0.5);
}

.btn-outline:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  box-shadow: 0 0 18px rgba(232,139,179,0.25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,175,116,0.5);
  animation: shimmer 3s linear infinite;
}

.btn-gold:hover {
  box-shadow: 0 6px 35px rgba(212,175,116,0.75);
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 1.5rem 4rem;
  background: linear-gradient(180deg, #891c5a 0%, #3d1030 60%, #1e0c1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-taro {
  position: absolute;
  z-index: 0;
  width: clamp(220px, 20vw, 340px);
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  border: 1px solid rgba(240,216,154,0.28);
  padding: 0.9rem;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: left;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.5),
    0 0 30px rgba(240,216,154,0.09);
  pointer-events: none;
  user-select: none;
  opacity: 0.94;
  background:
    radial-gradient(circle at 20% 18%, rgba(240,216,154,0.16) 0%, transparent 40%),
    radial-gradient(circle at 80% 84%, rgba(232,139,179,0.14) 0%, transparent 42%),
    linear-gradient(160deg, #1d2e1d 0%, #121e12 64%, #0b140b 100%);
  overflow: hidden;
}

.hero-taro::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(240,216,154,0.45);
  border-radius: 12px;
  pointer-events: none;
}

.hero-taro::after {
  content: '✦';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.92rem;
  color: rgba(240,216,154,0.65);
  letter-spacing: 0.02em;
}

.hero-taro__art {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-top: 0.95rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(240,216,154,0.26);
  background: linear-gradient(160deg, rgba(245,241,235,0.08), rgba(245,241,235,0.02));
  padding: 0.35rem;
  position: relative;
  overflow: hidden;
}

.hero-taro__art::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(240,216,154,0.22);
  border-radius: 7px;
  pointer-events: none;
}

.hero-taro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  border: 1px solid rgba(240,216,154,0.2);
  filter: saturate(0.92) contrast(1.05) brightness(0.95);
  transform: scale(1.32);
  transform-origin: center;
}

.hero-taro--right .hero-taro__img {
  transform: scale(1.10);
}

.hero-taro__label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,212,198,0.78);
  padding: 0 0.5rem;
}

.hero-taro__name {
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
  line-height: 1.2;
  color: var(--creme);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  padding: 0 0.5rem;
}

.hero-taro--left {
  left: clamp(20px, 6vw, 120px);
  bottom: 12%;
  transform: rotate(-12deg);
  animation: taro-float-left 7s ease-in-out infinite;
}

.hero-taro--right {
  right: clamp(20px, 6vw, 120px);
  bottom: 14%;
  transform: rotate(10deg);
  animation: taro-float-right 8s ease-in-out infinite;
}

@keyframes taro-float-left {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-10deg) translateY(-16px); }
}

@keyframes taro-float-right {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%       { transform: rotate(8deg) translateY(-12px); }
}

.hero-inner {
  max-width: 780px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61,107,58,0.22);
  border: 1px solid rgba(168,196,160,0.35);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 1.8rem;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 50%;
  border: 3px solid rgba(232,139,179,0.6);
  box-shadow:
    0 0 30px rgba(232,139,179,0.3),
    0 0 80px rgba(78,107,80,0.2);
  margin: 0 auto 2rem;
  animation: float 6s ease-in-out infinite;
  mix-blend-mode: lighten;
  background: transparent;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  background: linear-gradient(140deg, var(--creme) 30%, var(--gold-light) 60%, var(--rosa) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.hero-sub {
  font-size: 0.98rem;
  color: rgba(200,212,198,0.75);
  margin-bottom: 0.6rem;
}

.hero-stars {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0.6;
}

.star-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* Seção Sobre */
#sobre {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #1e0c1a 0%, #180e1a 20%, #0e1510 50%, #0f1e10 80%, #122012 100%);
}

.sobre-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: -60px;
}

.sobre-img-wrap {
  position: relative;
  z-index: 1;
}

.sobre-img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 2px solid rgba(232,139,179,0.4);
  box-shadow:
    0 0 40px rgba(232,139,179,0.2),
    0 0 100px rgba(78,107,80,0.15);
}

.sobre-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,139,179,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.mystic-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,191,163,0.2);
  animation: rotate-ring 20s linear infinite;
}

.mystic-ring::before,
.mystic-ring::after {
  content: '✦';
  position: absolute;
  font-size: 1rem;
  color: var(--gold);
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
}

.mystic-ring::after {
  top: auto;
  bottom: -0.6rem;
  left: 50%;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.sobre-text p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.sobre-baralhos {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 1.25rem;
}

.baralho-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(61,107,58,0.18), rgba(192,82,122,0.12));
  border: 1px solid rgba(110,158,106,0.3);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.baralho-item:hover {
  border-color: rgba(232,139,179,0.45);
  box-shadow: 0 4px 20px rgba(232,139,179,0.1);
}

.baralho-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.baralho-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.baralho-info strong {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--creme);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.baralho-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(192,82,122,0.18);
  border: 1px solid rgba(232,139,179,0.35);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  color: var(--rosa);
}

#servicos {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #122012 0%, #1a0e16 40%, #3d1030 75%, #891c5a 100%);
}

#baralhos {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0f1e10 0%, #0e1a0e 20%, #1a0e16 55%, #3d1030 80%, #891c5a 100%);
}

.baralhos-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.baralho-card {
  background: transparent;
  border: 1px solid rgba(110,158,106,0.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.baralho-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,139,179,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 28px rgba(232,139,179,0.1);
}

.baralho-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.baralho-card__icon img {
  width: auto;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(232,139,179,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  mix-blend-mode: luminosity;
  opacity: 0.72;
}

.baralho-card:hover .baralho-card__icon img {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 32px rgba(232,139,179,0.2);
  mix-blend-mode: normal;
  opacity: 1;
}

.baralho-card__titulo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--creme);
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.baralho-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.baralho-card__desc strong {
  color: var(--creme);
  -webkit-text-fill-color: var(--creme);
}

.baralho-card__tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--verde-claro);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(110,158,106,0.2);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
  width: 100%;
}

.baralhos-nota {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ── FAQ ── */
#faq {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #891c5a 0%, #3d1030 30%, #1a0e16 60%, #122012 100%);
}

.faq-lista {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: linear-gradient(145deg, rgba(18,32,18,0.85), rgba(30,10,22,0.85));
  border: 1px solid rgba(110,158,106,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(232,139,179,0.4);
}

.faq-pergunta {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--creme);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

.faq-pergunta::-webkit-details-marker { display: none; }

.faq-pergunta::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--rosa);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}

.faq-item[open] .faq-pergunta {
  color: var(--rosa);
}

.faq-item[open] .faq-pergunta::after {
  transform: rotate(45deg);
}

.faq-resposta {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 1.5rem 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .divider {
  margin: 1.25rem auto;
}

.cards-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.cards-grid .card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background: linear-gradient(145deg, rgba(18,32,18,0.92), rgba(10,22,10,0.96));
  border: 1px solid rgba(110,158,106,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,158,106,0.07), rgba(232,139,179,0.05));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(110,158,106,0.55);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(110,158,106,0.15);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.85rem;
  color: var(--rosa);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover { gap: 0.6rem; color: var(--gold-light); }

.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--rosa), var(--gold));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
}

#como-funciona {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #891c5a 0%, #3d1030 25%, #1a0e16 55%, #0e1a0e 80%, #0f1e10 100%);
}

.steps-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(40,15,30,0.55);
  border: 1px solid rgba(232,139,179,0.15);
  transition: transform var(--transition), border-color var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(232,139,179,0.5);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--creme);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(176,71,126,0.4);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--creme);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#cta {
  padding: 3.5rem 2vw 0;
  background: linear-gradient(180deg, #122012 0%, #1a0e16 40%, #3d1030 75%, #891c5a 100%);
  position: relative;
  overflow: hidden;
}

.cta-layout {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-caricatura-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
}

.cta-caricatura {
  height: clamp(260px, 36vw, 460px);
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.55));
  pointer-events: none;
  margin-bottom: 0;
}

.cta-inner {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 2.5rem;
}

.cta-icon {
  font-size: 4.5rem;
  margin-bottom: 1.25rem;
  display: block;
  text-align: center;
  animation: float 5s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--creme);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-title span {
  background: linear-gradient(135deg, var(--gold), var(--rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.2rem;
  margin-bottom: 2.75rem;
  overflow-x: auto;
}

.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--verde-claro);
}

.cta-feature::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(61,107,58,0.35);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--verde-claro);
}

footer {
  padding: 2.5rem 1.5rem;
  padding-top: 6rem;
  background: rgba(9, 13, 9, 0.88);
  border-top: 1px solid rgba(110,158,106,0.15);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

footer > * {
  position: relative;
  z-index: 3;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  background: linear-gradient(
    120deg,
    var(--gold-light) 0%,
    var(--rosa) 40%,
    var(--gold) 60%,
    var(--gold-light) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  animation: footer-logo-shimmer 4s linear infinite;
}

@keyframes footer-logo-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.footer-text {
  font-size: 0.82rem;
  color: rgba(200,212,198,0.4);
  line-height: 1.7;
}

.footer-text a {
  color: rgba(232,139,179,0.7);
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rosa);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(232,139,179,0.3);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social-link:hover {
  background: rgba(232,139,179,0.12);
  border-color: rgba(232,139,179,0.6);
  color: var(--creme);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  box-shadow: 0 10px 40px rgba(37,211,102,0.7);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-ping {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--dark2);
  animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  z-index: 200;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 32, 18, 0.9);
  border: 1px solid rgba(110,158,106,0.4);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(61,107,58,0.8);
  border-color: rgba(110,158,106,0.9);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--creme);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mystic-deco {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1920px) {
  html { font-size: 18px; }

  #hero { padding: 120px 4rem 6rem; }

  .hero-inner { max-width: 1000px; }

  .hero-logo {
    width: 240px;
    height: 240px;
  }

  .hero-taro {
    display: flex;
    width: clamp(360px, 20vw, 500px);
  }

  .hero-taro--left  { left: clamp(80px, 8vw, 220px); }
  .hero-taro--right { right: clamp(80px, 8vw, 220px); }

  .sobre-inner {
    max-width: 1200px;
    gap: 8rem;
  }

  .sobre-img {
    width: 560px;
    height: 560px;
  }

  .cards-grid  { max-width: 1380px; }
  .steps-grid  { max-width: 1100px; }
  .cta-inner   { max-width: 820px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .hero-taro {
    display: flex;
    width: clamp(180px, 16vw, 280px);
  }

  .hero-taro--left  { left: 1.5vw; }
  .hero-taro--right { right: 1.5vw; }

  .hero-inner { max-width: min(640px, calc(100vw - 2 * (16vw + 1.5vw + 20px))); }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .hero-taro {
    display: flex;
  }

  .hero-taro--left  { left: clamp(60px, 7vw, 160px); }
  .hero-taro--right { right: clamp(60px, 7vw, 160px); }

  .sobre-inner { max-width: 1100px; }
  .cards-grid  { max-width: 1200px; }
  .steps-grid  { max-width: 1000px; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-taro {
    width: clamp(160px, 15vw, 240px);
    opacity: 0.5;
  }

  .hero-taro--left  { left: 1vw; }
  .hero-taro--right { right: 1vw; }

  .hero-inner { max-width: min(580px, calc(100vw - 2 * (15vw + 1vw + 20px))); }

  .sobre-inner {
    max-width: 900px;
    gap: 4rem;
  }

  .sobre-img {
    width: 380px;
    height: 380px;
  }

  .sobre-visual { margin-left: -20px; }

  .cards-grid { max-width: 960px; }
  .steps-grid { max-width: 820px; }
}

@media (min-width: 901px) and (max-width: 1023px) {
  .hero-taro { display: none; }

  .hero-inner { max-width: 680px; }

  .sobre-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 860px;
  }

  .sobre-visual { margin-left: -10px; }

  .sobre-img {
    width: 320px;
    height: 320px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }

  .steps-grid { max-width: 760px; }
}

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-start;
  }

  .main-nav { display: none; }

  .hamburger {
    display: flex;
    order: 0;
  }

  .hero-taro { display: none; }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .sobre-visual {
    margin-left: 0;
    justify-content: center;
  }

  .sobre-img {
    width: 280px;
    height: 280px;
  }

  .baralhos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

@media (min-width: 601px) and (max-width: 767px) {
  #hero { padding: 90px 1.5rem 3rem; }

  .hero-taro { display: none; }

  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .sobre-visual { margin-left: 0; }

  .sobre-img {
    width: 260px;
    height: 260px;
  }

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

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .cta-features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  #hero { padding: 95px 1.5rem 3.5rem; }

  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }

  .sobre-img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  #hero         { padding: 85px 1.2rem 2.5rem; }
  #sobre,
  #servicos,
  #baralhos,
  #faq,
  #como-funciona,
  #cta          { padding: 3.5rem 1.2rem; }

  .hero-taro { display: none; }

  #hero,
  #sobre,
  #servicos,
  #baralhos,
  #faq,
  #como-funciona { text-align: center; }

  #cta          { text-align: center; }

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

  .faq-pergunta { font-size: 0.95rem; padding: 1rem 1.1rem; }
  .faq-resposta { padding: 0 1.1rem 1rem; font-size: 0.88rem; }

  .cta-inner {
    margin: 0 auto;
    padding-right: 0;
  }

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

  .hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.1em;
  }

  .hero-role {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.8rem 1.5rem;
  }

  .hero-stars {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.25rem;
  }

  .hero-stars span {
    font-size: 0.72rem !important;
  }

  .sobre-visual { margin-left: 0; }

  .sobre-img {
    width: 260px;
    height: 260px;
  }

  .mystic-ring { inset: -18px; }
  .sobre-glow  { inset: -12px; }

  .sobre-text p {
    font-size: 0.95rem;
    text-align: center;
  }

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

  .pill {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
  }

  .cards-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cards-grid .card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }

  .card {
    padding: 1.5rem 1.25rem;
  }

  .card-title { font-size: 1.15rem; }
  .card-desc  { font-size: 0.88rem; }

  .step { padding: 1.5rem 1rem; }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  .step-title { font-size: 1rem; }
  .step-desc  { font-size: 0.85rem; }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-label {
    font-size: 0.7rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .cta-feature { font-size: 0.82rem; }

  .whatsapp-float span { display: none; }
  .whatsapp-float {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    bottom: 1.5rem !important;
    right: 1rem !important;
    left: auto !important;
    z-index: 9999 !important;
    position: fixed !important;
  }

  .back-to-top {
    display: flex !important;
    position: fixed !important;
    bottom: 5.5rem !important;
    right: 1.1rem !important;
    left: auto !important;
    z-index: 9999 !important;
  }

  footer { padding: 2rem 1rem; }
  .footer-text { font-size: 0.78rem; }
}

@media (max-width: 380px) {
  html { font-size: 14px; }

  #hero { padding: 80px 1rem 2rem; }

  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .sobre-img {
    width: 220px;
    height: 220px;
  }

  .card { padding: 1.25rem 1rem; }

  .btn {
    font-size: 0.82rem;
    padding: 0.75rem 1.2rem;
  }

  .cta-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }
}

/* ── Responsivo: caricatura CTA ── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .cta-layout {
    gap: 1.5rem;
  }

  .cta-caricatura {
    height: clamp(240px, 30vw, 380px);
  }

  .cta-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  }
}

@media (min-width: 901px) and (max-width: 1023px) {
  .cta-layout {
    gap: 1rem;
  }

  .cta-caricatura {
    height: clamp(200px, 28vw, 320px);
  }

  .cta-title {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .cta-layout {
    gap: 1rem;
  }

  .cta-caricatura {
    height: clamp(180px, 30vw, 280px);
  }

  #cta {
    padding-top: 3rem;
  }
}

@media (max-width: 768px) {
  .cta-layout {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .cta-caricatura-col {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
    overflow: hidden;
  }

  .cta-caricatura {
    height: clamp(140px, 45vw, 240px);
    margin-bottom: 0;
    display: block;
  }

  .cta-inner {
    order: 1;
    text-align: center;
    padding: 1.5rem 1.2rem 1rem;
    width: 100%;
  }

  .cta-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  #cta {
    padding: 2.5rem 1.2rem 0;
  }

  footer {
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  .cta-caricatura-col {
    display: none;
  }

  footer {
    padding-top: 2rem;
  }
}
