/* =============================================
   FÊNIX CENTRO DE DANÇA — STYLES
   Clean · No gradients · Dance-focused
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

/* ---------- Variables ---------- */
:root {
  --orange: #ff6a00;
  --orange-hover: #e55d00;
  --orange-bg: #fff3ea;
  --orange-bg-deep: #ffe8d6;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #faf8f6;
  --bg-warm: #fdf9f5;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #8a8a8a;
  --border: #eee8e1;
  --border-light: #f5f0eb;
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Pinyon Script', cursive;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.09);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.11);
  --shadow-orange: 0 6px 24px rgba(255,106,0,0.18);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--orange);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,106,0,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp-green {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.2);
}

.btn-whatsapp-green:hover {
  background: #1eb851;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.btn-svg { flex-shrink: 0; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
  padding: 10px 0;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo .logo-fenix {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  -webkit-text-stroke: 0.5px var(--text-dark);
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo .logo-sub {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}

.nav-links a:not(.btn):hover { color: var(--orange); }

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
}

.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .orange { color: var(--orange); }

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat .stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
}

/* ---------- About ---------- */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image-block .overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text h2 span { color: var(--orange); }

.about-text p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-highlight {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.about-highlight:hover {
  border-color: var(--orange-bg-deep);
  box-shadow: var(--shadow-sm);
}

.about-highlight .ah-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-bg);
  border-radius: 10px;
  font-size: 1.1rem;
}

.about-highlight h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-highlight p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- Modalidades ---------- */
.modalidades { background: var(--bg-alt); }

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.mod-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.mod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.mod-card .mod-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-bg);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--orange);
}

.mod-card:hover .mod-icon {
  background: var(--orange);
  color: var(--white);
}

.mod-card .mod-icon svg {
  stroke: currentColor;
  transition: var(--transition);
}

.mod-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.mod-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Serviços ---------- */
.servicos { background: var(--bg); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.servico-card {
  padding: 32px 24px;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.servico-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.servico-card .sc-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.servico-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.servico-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Níveis ---------- */
.niveis { background: var(--bg-alt); }

.niveis-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.nivel-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 28px 16px;
  position: relative;
  transition: var(--transition);
}

.nivel-item:hover { background: var(--orange-bg); }

.nivel-item .nivel-dot {
  width: 14px;
  height: 14px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  margin: 0 auto 12px;
  position: relative;
}

.nivel-item.active .nivel-dot {
  background: var(--orange);
}

.nivel-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--orange-bg-deep);
}

.nivel-item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--orange-bg-deep);
}

.nivel-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.nivel-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Depoimentos ---------- */
.depoimentos { background: var(--bg); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.dep-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.dep-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
  transform: translateY(-3px);
}

.dep-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.dep-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.dep-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dep-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Contato ---------- */
.contato { background: var(--bg-alt); }

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.contato-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.contato-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.contato-card .cc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-bg);
  border-radius: 50%;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.contato-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contato-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- CTA Final ---------- */
.cta-final {
  background: var(--orange);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20V8H0V6h20V0h2v6h18v2H22v4h18v2H22v4h18v2H22v4.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-final p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-final .btn { position: relative; }

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ---------- WhatsApp Float ---------- */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: popIn 0.6s ease forwards;
  animation-delay: 2s;
  opacity: 0;
}

.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
}

.wpp-float svg { width: 28px; height: 28px; fill: var(--white); }

.wpp-float .ring {
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: ringPulse 2.5s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5); }
  80% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }
.reveal-d7 { transition-delay: 0.56s; }
.reveal-d8 { transition-delay: 0.64s; }
.reveal-d9 { transition-delay: 0.72s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 16px; }
  .hero-art { max-width: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #ffffff;
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: block; }

  .modalidades-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .niveis-bar { flex-direction: column; gap: 0; }
  .nivel-item::after, .nivel-item::before { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .modalidades-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }

  .wpp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wpp-float svg { width: 24px; height: 24px; }
}

/* =============================================
   BIO PAGE
   ============================================= */
.bio-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  padding: 40px 20px;
}

.bio-wrap {
  width: 100%;
  max-width: 420px;
}

.bio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 44px 30px 36px;
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.bio-logo-img {
  max-width: 220px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}

.bio-logo-text {
  font-family: var(--font-script);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1;
  -webkit-text-stroke: 0.8px var(--text-dark);
}

.bio-logo-text .bio-orange { color: var(--orange); }

.bio-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.bio-tagline {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 6px;
}

.bio-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 28px;
}

.bio-divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 28px;
  border-radius: 3px;
}

.bio-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.bio-link:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.bio-link::after {
  content: '→';
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.bio-link:hover::after { color: var(--orange); margin-right: -2px; }

.bio-link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.bio-link-icon.wpp { background: #e6f9f0; }
.bio-link-icon.ig { background: #fce4ec; }
.bio-link-icon.site { background: var(--orange-bg); }
.bio-link-icon.email { background: #e8f0fe; }

.bio-link-text { text-align: left; }
.bio-link-text strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.bio-link-text span { font-size: 0.76rem; color: var(--text-muted); }

.bio-cta {
  width: 100%;
  padding: 16px;
}

.bio-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.bio-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bio-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.bio-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  font-size: 1rem;
  transition: var(--transition);
}

.bio-social-btn:hover {
  background: var(--orange-bg);
  border-color: var(--orange);
  transform: translateY(-2px);
}
