/* ============================================================
   GROVE STUDIO — STYLESHEET
   Paleta: verde escuro #0a2300 · bege #ffe7c7
   ============================================================ */

/* ── Variáveis ── */
:root {
  --g-dark:    #0a2300;
  --g-mid:     #0d2900;
  --g-accent:  #163800;
  --beige:     #ffe7c7;
  --beige-dim: #e8ceaa;
  --beige-muted: #b89e7e;
  --beige-ghost: rgba(255, 231, 199, 0.08);
  --beige-faint: rgba(255, 231, 199, 0.55);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s var(--ease);
  --trans-slow: 0.65s var(--ease);

  --pad-section: clamp(64px, 9vw, 128px);
  --radius: 10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  background: var(--g-dark);
  color: var(--beige);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */

/* Hero — keyframe direto no load */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atraso escalonado para hero */
.hero .reveal-up:nth-child(1) { transition-delay: .05s; }
.hero .reveal-up:nth-child(2) { transition-delay: .2s; }
.hero .reveal-up:nth-child(3) { transition-delay: .38s; }
.hero .reveal-up:nth-child(4) { transition-delay: .56s; }

/* Cards de artista */
.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-card.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--beige); outline-offset: 3px; }

/* Primário */
.btn--primary {
  background: var(--beige);
  color: var(--g-dark);
  box-shadow: 0 4px 24px rgba(255,231,199,.18);
}
.btn--primary:hover {
  background: var(--beige-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,231,199,.32);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid rgba(255,231,199,.3);
}
.btn--outline:hover {
  border-color: var(--beige);
  background: var(--beige-ghost);
  transform: translateY(-2px);
}

/* Grande */
.btn--lg { padding: 17px 40px; font-size: 1rem; }

/* Ícone */
.btn-icon { width: 19px; height: 19px; flex-shrink: 0; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
  animation: none;
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 80px;
  overflow: hidden;
  background: var(--g-dark);
  text-align: center;
}

/* Orbs decorativos */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb--tl {
  top: -160px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(20,60,0,.65) 0%, transparent 72%);
}
.hero-orb--br {
  bottom: -120px;
  right: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(18,50,0,.5) 0%, transparent 72%);
}

/* Grade sutil de fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,231,199,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,231,199,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--beige-muted);
  border: 1px solid rgba(255,231,199,.2);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(68px, 16vw, 136px);
  font-weight: 900;
  line-height: .88;
  color: var(--beige);
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  display: block;
}

.hero-tagline {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: var(--beige-faint);
  letter-spacing: .06em;
  margin-bottom: 40px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--beige-muted);
  z-index: 1;
  animation: riseUp .9s 1.3s both;
}
.scroll-hint span {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--beige-muted), transparent);
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(.6) translateY(8px); opacity: 1; }
}

/* ============================================================
   SEÇÃO DE ARTISTAS
   ============================================================ */

.artists { display: block; }

/* ── Card base ── */
.artist-card {
  display: flex;
  flex-direction: row;
  min-height: 600px;
}

/* Alternância de fundo */
.artist-card:nth-child(odd)  { background: var(--g-dark); }
.artist-card:nth-child(even) { background: var(--g-mid); }

/* Layout invertido (Erick) */
.artist-card--rev { flex-direction: row-reverse; }

/* ── Coluna de info ── */
.artist-info {
  flex: 0 0 46%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 88px) clamp(32px, 5vw, 72px);
  gap: 14px;
  overflow: hidden;
}
/* Borda lateral decorativa */
.artist-info::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,231,199,.12), transparent);
}
.artist-card--rev .artist-info::after { right: auto; left: 0; }

.artist-num {
  font-family: var(--f-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(255,231,199,.05);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: clamp(32px, 5vw, 72px);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

/* Avatar circular do artista */
.artist-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,231,199,.25);
  box-shadow: 0 0 0 5px rgba(255,231,199,.06), 0 4px 20px rgba(0,0,0,.35);
  flex-shrink: 0;
  transition: border-color var(--trans), box-shadow var(--trans);
  margin-top: 32px; /* espaço acima (número ghost fica por baixo) */
}
.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-avatar:hover {
  border-color: rgba(255,231,199,.6);
  box-shadow: 0 0 0 6px rgba(255,231,199,.1), 0 6px 28px rgba(0,0,0,.4);
}

.artist-style {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beige-muted);
}

.artist-name {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  color: var(--beige);
  line-height: .95;
  letter-spacing: -.03em;
}

.artist-bio {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--beige-faint);
  max-width: 360px;
  font-weight: 300;
}

/* ── Coluna do slider ── */
.slider-wrap {
  flex: 1 1 0;
  overflow: hidden;
  position: relative;
}

/* ── Slider ── */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.slider:active { cursor: grabbing; }

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .55s var(--ease);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.slider:hover .slide img { transform: scale(1.04); }

/* Botões de navegação */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10,35,0,.82);
  border: 1px solid rgba(255,231,199,.22);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.slider-btn svg { width: 17px; height: 17px; }
.slider-btn:hover {
  background: rgba(10,35,0,.96);
  border-color: var(--beige);
  box-shadow: 0 0 18px rgba(255,231,199,.18);
  transform: translateY(-50%) scale(1.06);
}
.slider-btn--prev { left: 14px; }
.slider-btn--next { right: 14px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,231,199,.3);
  border: none;
  padding: 0;
  transition: background var(--trans), width var(--trans), border-radius var(--trans);
}
.s-dot.is-active {
  background: var(--beige);
  width: 22px;
  border-radius: 4px;
}

/* (card "Em Breve" removido) */

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-section {
  padding: var(--pad-section) 24px;
  background: var(--g-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Glow central */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(24,70,0,.6) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-deco {
  display: block;
  font-size: 1.4rem;
  color: var(--beige-muted);
  opacity: .5;
  margin-bottom: 28px;
  letter-spacing: .1em;
}

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: .98rem;
  font-weight: 300;
  color: var(--beige-faint);
  letter-spacing: .04em;
  margin-bottom: 44px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 28px 24px;
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,231,199,.07);
  text-align: center;
}
.footer p {
  font-size: .78rem;
  color: rgba(255,231,199,.3);
  letter-spacing: .05em;
}
.footer-loc { margin-top: 4px; font-size: .73rem; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .artist-card,
  .artist-card--rev {
    flex-direction: column;
    min-height: auto;
  }
  .artist-info { flex: none; padding: 48px 28px 36px; }
  .artist-info::after { display: none; }
  .artist-num { font-size: 4.5rem; top: 14px; left: 28px; }
  .slider-wrap { height: 420px; flex: none; }
}

/* Mobile */
@media (max-width: 540px) {
  .hero { padding: 88px 20px 72px; }
  .hero-title { font-size: clamp(58px, 20vw, 90px); }

  .artist-info { padding: 44px 20px 32px; }
  .artist-num  { left: 20px; }
  .artist-avatar { margin-top: 24px; }
  .slider-wrap { height: 360px; }

  .btn--lg { padding: 15px 28px; font-size: .95rem; }

  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================================
   SEÇÃO COMPARTILHADA — LABEL E TÍTULOS
   ============================================================ */

.sec-label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--beige-muted);
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 700;
  color: var(--beige);
  line-height: .95;
  letter-spacing: -.025em;
}
.sec-title em { font-style: italic; display: block; }

.sec-desc {
  font-size: .95rem;
  line-height: 1.78;
  color: var(--beige-faint);
  font-weight: 300;
  max-width: 440px;
}

/* ============================================================
   SEÇÃO BODY PIERCING
   ============================================================ */

.piercing-section {
  background: var(--g-mid);
  padding: var(--pad-section) clamp(24px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

.piercing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
}

.piercing-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Tags dos tipos */
.piercing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.piercing-tags span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beige-muted);
  border: 1px solid rgba(255,231,199,.18);
  padding: 6px 14px;
  border-radius: 50px;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  cursor: default;
}
.piercing-tags span:hover {
  border-color: rgba(255,231,199,.55);
  color: var(--beige);
  background: var(--beige-ghost);
}

/* Decoração animada (direita) */
.piercing-deco {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,231,199,.1);
  animation: rotateSlow linear infinite;
}
.p-ring--xl { width: 290px; height: 290px; animation-duration: 28s; border-style: dashed; }
.p-ring--lg { width: 220px; height: 220px; animation-duration: 20s; animation-direction: reverse; }
.p-ring--md { width: 155px; height: 155px; animation-duration: 14s; border-style: dashed; border-color: rgba(255,231,199,.14); }
.p-ring--sm { width: 88px;  height: 88px;  animation-duration: 9s;  animation-direction: reverse; border-color: rgba(255,231,199,.18); }

.p-symbol {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  color: rgba(255,231,199,.15);
  font-family: var(--f-display);
  line-height: 1;
}

/* Pontos orbitantes */
.p-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,231,199,.3);
}
.p-dot--a { top: 10px;  left: 50%;  transform: translateX(-50%); animation: orbitA 6s linear infinite; }
.p-dot--b { bottom: 14px; right: 14px; animation: orbitB 9s linear infinite; }
.p-dot--c { top: 50%; left: 10px; transform: translateY(-50%); animation: orbitC 7s linear infinite; }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitA {
  0%,100% { opacity: .3; transform: translateX(-50%) scale(1); }
  50%      { opacity: .9; transform: translateX(-50%) scale(1.5); }
}
@keyframes orbitB {
  0%,100% { opacity: .2; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.8); }
}
@keyframes orbitC {
  0%,100% { opacity: .3; transform: translateY(-50%) scale(1); }
  50%      { opacity: .7; transform: translateY(-50%) scale(1.4); }
}

/* ============================================================
   SEÇÃO LOCALIZAÇÃO
   ============================================================ */

.location-section {
  background: var(--g-dark);
  padding: var(--pad-section) clamp(24px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
/* Glow de fundo */
.location-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18,55,0,.45) 0%, transparent 70%);
  pointer-events: none;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(40px, 7vw, 88px);
}

.location-text {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.location-address { font-style: normal; }

.addr-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.addr-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--beige-muted);
  margin-top: 3px;
}
.addr-row span {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--beige-faint);
  font-weight: 300;
}

/* Iframe do mapa */
.location-map {
  flex: 1 1 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(255,231,199,.1);
  box-shadow: 0 12px 50px rgba(0,0,0,.5);
  position: relative;
  z-index: 1;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ── Responsivo das novas seções ── */

@media (max-width: 900px) {
  .piercing-inner { flex-direction: column; }
  .piercing-deco  { display: none; }

  .location-inner { flex-direction: column; }
  .location-text  { flex: none; }
  .location-map   { min-height: 320px; }
  .location-map iframe { min-height: 320px; }
}

@media (max-width: 540px) {
  .location-map { min-height: 260px; border-radius: 10px; }
  .location-map iframe { min-height: 260px; }
  .sec-title { font-size: clamp(34px, 10vw, 52px); }
}
