/* ==========================================================================
   ADRIELLY PIRES PERSONAL TRAINER - LUXURY DARK & ROSE RUBY THEME
   Mobile-First Editorial Landing Page / Link na Bio
   ========================================================================== */

/* -----------------------------
   Variáveis e Paleta de Cores (Dark & Rose Red / Rubi)
   ----------------------------- */
:root {
  --bg-main: #0C0A0D;
  --bg-card: rgba(22, 17, 23, 0.78);
  --bg-card-hover: rgba(30, 21, 30, 0.92);
  --bg-card-border: rgba(225, 29, 72, 0.22);
  --bg-card-border-hover: rgba(251, 113, 133, 0.55);

  /* Tons Vermelho Rosado / Rose Gold & Rubi */
  --rose-primary: #E11D48;
  --rose-light: #FDA4AF;
  --rose-soft: #F43F5E;
  --rose-dark: #881337;
  --rose-gradient-text: linear-gradient(135deg, #FFFFFF 20%, #FECDD3 60%, #FB7185 100%);
  --rose-btn-primary: linear-gradient(135deg, #FB7185 0%, #E11D48 50%, #9F1239 100%);
  --rose-btn-primary-hover: linear-gradient(135deg, #FECDD3 0%, #F43F5E 50%, #BE123C 100%);

  /* Textos */
  --text-main: #F4F4F6;
  --text-muted: #A3A3B0;
  --text-rose: #FDA4AF;

  /* Tipografia Delicada e Nobre */
  --font-editorial: 'Tenor Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Efeitos */
  --shadow-rose-glow: 0 0 30px rgba(225, 29, 72, 0.28);
  --shadow-card: 0 12px 32px -10px rgba(0, 0, 0, 0.85), 0 0 1px 1px var(--bg-card-border);
  --radius-card: 18px;
  --radius-btn: 14px;
}

/* -----------------------------
   Reset & Base
   ----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(225, 29, 72, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 85% 45%, rgba(159, 18, 57, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(225, 29, 72, 0.08) 0%, transparent 50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 36px 0;
  overflow-x: hidden;
  position: relative;
}

/* -----------------------------
   Luzes e Halos Ambientais
   ----------------------------- */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.glow-top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 280px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.28) 0%, transparent 70%);
}

.glow-middle {
  top: 50%;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(159, 18, 57, 0.16) 0%, transparent 70%);
}

.glow-bottom {
  bottom: 0;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, transparent 70%);
}

/* -----------------------------
   Container Principal
   ----------------------------- */
.main-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -----------------------------
   HERO / HEADER EDITORIAL (Foto Completa com Transição Suave sem Linha de Recorte)
   ----------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Container da Foto com Máscara Gradiente Suave */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.5) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.5) 80%, transparent 100%);
}

.hero-full-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.98) contrast(1.03);
}

/* Fade Gradiente Degradê Suave na Base da Foto */
.hero-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(12, 10, 13, 0.35) 65%,
    rgba(12, 10, 13, 0.85) 85%,
    var(--bg-main) 100%
  );
  pointer-events: none;
}

/* Luz de Fundo suave atrás da treinadora */
.hero-rose-aura {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

/* Textos e Apresentação do Hero */
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  line-height: 1.15;
}

/* Nome com Tipografia Nobre, Delicada e Leve */
.hero-name {
  font-family: var(--font-editorial);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 4px;
  background: var(--rose-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(251, 113, 133, 0.25);
  text-transform: uppercase;
}

.hero-role {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--rose-light);
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Bio Curta e Elegante */
.hero-bio {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #D1D1DB;
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto;
}

/* -----------------------------
   CARDS DE SERVIÇO
   ----------------------------- */
.cards-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--bg-card-border-hover);
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.9), 0 0 22px rgba(225, 29, 72, 0.22);
}

.card-glow-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Card Header */
.card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--rose-light);
  text-transform: uppercase;
}

.tag-presencial {
  color: #FFA5B6;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: pulseDot 2s infinite;
}

.star-icon {
  font-size: 0.7rem;
  color: var(--rose-light);
}

/* Título dos Cards: Delicado, Limpo e Elegante */
.card-title {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #FFFFFF;
}

/* Descrição Concisa */
.card-description {
  font-size: 0.84rem;
  line-height: 1.48;
  color: var(--text-muted);
  font-weight: 300;
}

/* Features Pills Rápidas */
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.feature-pill {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #E2E2EA;
  white-space: nowrap;
  text-align: center;
}

.feature-icon {
  width: 11px;
  height: 11px;
  color: var(--rose-light);
  flex-shrink: 0;
}

/* Alerta de Horários / Vagas */
.status-alert-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.28);
  border-radius: 9px;
  padding: 8px 11px;
}

.alert-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.alert-text {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--rose-light);
  font-weight: 300;
}

.alert-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* -----------------------------
   BOTÕES DE AÇÃO (CTA)
   ----------------------------- */
.cta-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
  margin-top: 4px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* Botão Primário (Vermelho Rosado Rubi) */
.primary-cta {
  background: var(--rose-btn-primary);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.35);
}

.primary-cta:hover {
  background: var(--rose-btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(225, 29, 72, 0.5);
}

.primary-cta:active {
  transform: translateY(0);
}

/* Botão Secundário (Dark Rose Luxury) */
.secondary-cta {
  background: linear-gradient(135deg, #1A1318 0%, #110C10 100%);
  color: #FFFFFF;
  border: 1px solid rgba(225, 29, 72, 0.45);
}

.secondary-cta:hover {
  background: linear-gradient(135deg, #241A22 0%, #170F15 100%);
  border-color: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(225, 29, 72, 0.28);
}

.secondary-cta:active {
  transform: translateY(0);
}

.whatsapp-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Shimmer Sweep Animation */
.btn-shimmer {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 55%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: shimmerSweep 3.8s infinite;
  pointer-events: none;
}

/* -----------------------------
   FOOTER & REDES SOCIAIS
   ----------------------------- */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 0 16px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 12px;
  color: #D6D6DF;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.social-btn svg {
  width: 15px;
  height: 15px;
  color: var(--rose-light);
}

.social-btn:hover {
  background: rgba(225, 29, 72, 0.12);
  border-color: var(--rose-light);
  color: #FFF;
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.68rem;
  color: #686875;
  letter-spacing: 0.3px;
  font-weight: 300;
}

/* -----------------------------
   KEYFRAMES / ANIMAÇÕES
   ----------------------------- */
@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@keyframes shimmerSweep {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 140%;
  }
}

/* -----------------------------
   Telas Maiores / Desktop
   ----------------------------- */
@media (min-width: 600px) {
  body {
    padding: 24px 20px 48px 20px;
  }
  
  .main-wrapper {
    gap: 24px;
    border-radius: 24px;
    background: rgba(12, 10, 13, 0.85);
    border: 1px solid rgba(225, 29, 72, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    padding-bottom: 24px;
  }

  .hero-image-wrapper {
    height: 520px;
  }

  .hero-name {
    font-size: 2.3rem;
  }

  .service-card {
    padding: 22px 20px;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 13px 18px;
    letter-spacing: 0.6px;
    gap: 9px;
  }
}
