/**
 * Tema compartido - variables inyectadas dinámicamente desde el panel
 */

:root {
  --brand-bg: #E700FF;
  --brand-text: #fff;
  --brand-card-bg: rgba(255, 255, 255, 0.15);
  --brand-card-text: #fff;
  --brand-border: rgba(255, 255, 255, 0.32);
}

html,
body {
  background: var(--brand-bg) !important;
  background-color: var(--brand-bg) !important;
  color: var(--brand-text) !important;
  min-height: 100vh;
}

body a {
  color: var(--brand-text);
}
body a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

/* Header minimalista - oculto en páginas del menú */
.header--hidden {
  display: none !important;
}
.header--minimal {
  margin-bottom: 2rem;
}
.header--minimal .logo {
  color: var(--brand-text);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Contenedor principal */
.main {
  max-width: min(50rem, 90vw);
  margin-left: auto;
  margin-right: auto;
}

/* Profile card */
.profile-card {
  background: var(--brand-card-bg);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  color: var(--brand-card-text);
}

.profile-card__content {
  text-align: center;
}

.profile-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

.profile-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-card-text);
}

.profile-card__phone {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--brand-card-text);
}

.profile-card__slogan {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--brand-card-text);
}

.profile-card__address {
  margin-bottom: 1rem;
}
.profile-card__address a {
  font-size: 0.9rem;
  color: var(--brand-card-text);
  text-decoration: underline;
}
.profile-card__address a:hover {
  opacity: 0.8;
}

.profile-card__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.profile-card__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.profile-card__social-link img,
.profile-card__social-link svg {
  width: 24px;
  height: 24px;
}
.profile-card__social-link--whatsapp img,
.profile-card__social-link--whatsapp svg {
  filter: none;
}
.profile-card__social-link--whatsapp:hover img,
.profile-card__social-link--whatsapp:hover svg {
  opacity: 0.85;
}
.profile-card__social-link--x,
.profile-card__social-link--tiktok,
.profile-card__social-link--instagram {
  color: var(--brand-card-text);
}
.profile-card__social-link--x img,
.profile-card__social-link--x svg,
.profile-card__social-link--tiktok img,
.profile-card__social-link--tiktok svg,
.profile-card__social-link--instagram img,
.profile-card__social-link--instagram svg {
  color: var(--brand-card-text);
}
.profile-card__social-link:hover {
  opacity: 0.8;
}

.profile-card__horarios {
  display: block;
  width: 100%;
  background: #fff;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.profile-card__horarios:hover {
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  opacity: 1;
}

/* Footer */
.footer--brand {
  padding: 4rem 0 3rem;
  text-align: center;
}
.footer--brand:before {
  display: none;
}
.footer--brand p {
  max-width: none;
  color: var(--brand-text);
  opacity: 0.9;
}
.footer--brand a {
  color: var(--brand-text);
}
