:root {
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --accent: #1a73e8; /* Google Blue */
  --accent-hover: #1557b0;
  --accent-soft: rgba(26, 115, 232, 0.06);
  --brand-pink: #CF527E; /* Mantém sutilmente a cor da logo */
  --brand-pink-soft: rgba(207, 82, 126, 0.06);
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

/* Elementos de fundo abstratos */
.bg-decorations {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  transition: all 1s ease;
}

.shape-1 {
  top: -10%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: rgba(26, 115, 232, 0.12);
}

.shape-2 {
  bottom: 10%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: rgba(207, 82, 126, 0.08);
}

/* Container Principal */
.bio-page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  min-height: 100vh;
  padding: 24px 20px 48px;
  display: flex;
  flex-direction: column;
}

/* Cabeçalho / Perfil */
.profile-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.profile-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--text-dark), #2a343f);
  border-radius: var(--radius-xl);
  margin-bottom: -60px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.profile-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(207, 82, 126, 0.35), transparent 70%);
}

.profile-avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  z-index: 2;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--card);
  box-shadow: 0 8px 24px rgba(30, 37, 45, 0.15);
}

.google-badge-discrete {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--card);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-info {
  margin-top: 12px;
}

.profile-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.profile-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.profile-bio {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-dark);
  max-width: 440px;
  margin: 0 auto 12px;
  font-weight: 400;
}

.profile-experience {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
  font-weight: 300;
}

/* Selo de Informações e Serviços */
.profile-badges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--accent-soft);
  border: 1px solid rgba(26, 115, 232, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.profile-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.profile-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.profile-badge-item .badge-icon {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.services-row {
  border-top: 1px solid rgba(26, 115, 232, 0.1);
  padding-top: 6px;
  width: 100%;
  justify-content: center;
}

/* Seção de Links */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

/* Cards do Acordeão */
.accordion-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 37, 45, 0.05);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.accordion-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 115, 232, 0.15);
}

.accordion-trigger {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
}

.card-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--accent);
  transition: stroke 0.2s ease;
}

.accordion-card:hover .card-icon-svg {
  stroke: var(--accent-hover);
}

.alert-card .card-icon-svg {
  stroke: #ea4335;
}

.accordion-card.active .card-icon-svg {
  stroke: var(--accent);
}

.card-title-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  display: block;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(-180deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow::after {
  border-color: var(--accent);
}

/* Conteúdo Expandido */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
  padding: 0 20px 20px 54px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 0;
  padding-top: 16px;
}

.service-description {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
  color: var(--text-dark);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.features-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.3rem;
  margin-right: 8px;
  line-height: 0.8;
}

/* Botão de Ação Dentro do Acordeão */
.cta-inner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(207, 82, 126, 0.15);
}

.cta-inner-button:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Ajuste específico para Card de Alerta */
.alert-card {
  border-left: 4px solid #f97316;
}

/* Separador Elegante */
.links-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 82, 126, 0.2), transparent);
  margin: 16px 0;
}

/* BOTÃO DE AÇÃO PRINCIPAL EM DESTAQUE */
.cta-button-pulse {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, var(--text-dark), #2a343f);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(30, 37, 45, 0.18);
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button-pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(30, 37, 45, 0.25);
}

.btn-logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.cta-button-pulse .btn-logo-svg {
  fill: #25D366; /* WhatsApp Green */
}

.cta-button-pulse .btn-text-wrapper strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cta-button-pulse .btn-text-wrapper span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* Animação de Borda Pulsante */
.cta-button-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: buttonPulse 2s infinite;
}

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

/* Botão Secundário Instagram */
.cta-button-instagram {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid rgba(207, 82, 126, 0.2);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button-instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-pink);
}

.cta-button-instagram .btn-logo-svg {
  fill: var(--brand-pink); /* Instagram Accent */
}

.cta-button-instagram .btn-text-wrapper strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-pink);
  margin-bottom: 2px;
}

.cta-button-instagram .btn-text-wrapper span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Rodapé */
.footer {
  margin-top: auto;
  text-align: center;
  padding-top: 32px;
}

.footer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  mix-blend-mode: multiply;
}

.footer-logo:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Otimizações Mobile */
@media (max-width: 480px) {
  .bio-page {
    padding: 16px 14px 32px;
  }
  
  .profile-name {
    font-size: 1.5rem;
  }
  
  .accordion-trigger {
    padding: 16px 14px;
    gap: 10px;
  }
  
  .accordion-body {
    padding: 0 14px 16px 40px;
  }
}