:root {
  --brand-deep: #17142b;
  --brand-main: #42259e;
  --brand-mid: #2e1485;
  --brand-gold: #ffbf1b;
  --brand-gold-dark: #e2a305;
  --brand-soft: #f5efe3;
  --white: #ffffff;
  --gray-50: #faf8f4;
  --gray-100: #f0ece5;
  --gray-200: #e5ddd0;
  --gray-400: #a89f91;
  --gray-600: #6f675f;
  --gray-800: #2e2936;
  --text-main: #433c3c;
  --text-muted: #6f675f;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --radius-full: 9999px;
  --shadow-sm: 0 3px 12px rgba(23, 20, 43, 0.08);
  --shadow-md: 0 10px 30px rgba(23, 20, 43, 0.13);
  --shadow-lg: 0 18px 54px rgba(23, 20, 43, 0.2);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 920px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
}
address {
  font-style: normal;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(215, 173, 84, 0.12);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  font-weight: 900;
  color: var(--brand-main);
  line-height: 1.12;
  margin-bottom: 10px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(
    135deg,
    var(--brand-gold),
    var(--brand-gold-dark)
  );
  color: var(--brand-deep);
  box-shadow: 0 8px 22px rgba(215, 173, 84, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215, 173, 84, 0.38);
}
.btn--outline {
  background: transparent;
  color: var(--brand-main);
  border: 2px solid var(--brand-main);
}
.btn--outline:hover {
  background: var(--brand-main);
  color: var(--white);
  transform: translateY(-2px);
}
.hero {
  position: relative;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(215, 173, 84, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--brand-deep),
      var(--brand-main) 62%,
      var(--brand-mid)
    );
  padding: 72px 20px 52px;
  overflow: hidden;
  text-align: center;
}
.hero__watermark {
  position: absolute;
  inset: auto -20px 10px auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 30vw, 18rem);
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  line-height: 0.75;
  pointer-events: none;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero__avatar-wrap {
  position: relative;
  display: inline-block;
}

.hero__avatar img {
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
}
.hero__status-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid var(--brand-main);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(37, 211, 102, 0);
  }
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(215, 173, 84, 0.13);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.15rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  max-width: 780px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero__tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  max-width: 610px;
  padding-top: 4px;
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 520px;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
  white-space: nowrap;
}
.hero__rating .rating__text {
  font-size: 0.75rem; /* reduz só o texto */
}
.stars {
  color: var(--brand-gold);
  font-size: 1rem;
  letter-spacing: 1px;
}
.rating__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero__primary-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--brand-gold),
    var(--brand-gold-dark)
  );
  color: var(--brand-soft);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(215, 173, 84, 0.28);
  transition: var(--transition);
  margin-top: 10px;
}
.hero__primary-cta:hover {
  transform: translateY(-2px);
}
.tab-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(23, 20, 43, 0.08);
  border-bottom: 1px solid var(--gray-200);
}
.tab-nav__inner {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--container-max);
  margin: 0 auto;
}
.tab-nav__inner::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  flex: 0 0 auto;
  padding: 16px 19px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gray-600);
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--brand-main);
}
.tab-btn.active::after {
  transform: scaleX(1);
}
.tab-content {
  min-height: 60vh;
}
.tab-panel {
  display: none;
  padding: 48px 0 64px;
  animation: fade-up 0.35s ease both;
}
.tab-panel.active {
  display: block;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.contact-card--whatsapp::before {
  background: #25d366;
}
.contact-card--diagnostico::before {
  background: var(--brand-gold);
}
.contact-card--phone::before {
  background: var(--brand-main);
}
.contact-card--instagram::before {
  background: linear-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 1.25rem;
}
.contact-card--whatsapp .contact-card__icon {
  background: #e8faf0;
  color: #25d366;
}
.contact-card--diagnostico .contact-card__icon {
  background: rgba(215, 173, 84, 0.15);
  color: var(--brand-gold-dark);
}
.contact-card--phone .contact-card__icon {
  background: rgba(23, 20, 43, 0.08);
  color: var(--brand-main);
}
.contact-card--instagram .contact-card__icon {
  background: #fdf0f7;
  color: #dc2743;
}
.contact-card__text {
  flex: 1;
  min-width: 0;
}
.contact-card__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
}
.contact-card__text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.contact-card__arrow {
  font-size: 1.2rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.contact-card:hover .contact-card__arrow {
  color: var(--brand-gold-dark);
  transform: translateX(3px);
}
.vcard-block,
.method-card {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-main));
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.vcard-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.vcard-block::before,
.method-card::before {
  content: "bh";
  position: absolute;
  right: -10px;
  bottom: -22px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  opacity: 0.05;
  pointer-events: none;
}
.vcard-block__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vcard-block__avatar {
  border-radius: 50%;
  border: 2px solid rgba(215, 173, 84, 0.45);
  overflow: hidden;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.vcard-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vcard-block__name {
  display: block;
  font-weight: 800;
  color: var(--white);
  font-size: 0.96rem;
}
.vcard-block__role {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.reviews-block {
  margin-top: 28px;
}

.section-header--left {
  text-align: center;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.reviews-score {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
  color: var(--brand-main);
}

.reviews-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 0.82rem;
  opacity: 0.85;
  color: var(--text-muted);
}

.reviews-google {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4285f4;
}

.testimonials-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.testimonial-mini {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  min-height: 112px;
  box-shadow: var(--shadow-sm);
}

.testimonial-mini p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-main);
}

.testimonial-mini span {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: 18px;
  margin: 20px auto 0;
  text-align: center;
}

.method-card {
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
}
.method-card__badge {
  display: inline-block;
  color: var(--brand-gold);
  background: rgba(215, 173, 84, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.method-card h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
}
.method-card p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin-bottom: 22px;
  position: relative;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
}
.method-steps div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 12px;
}
.method-steps strong {
  display: block;
  color: var(--brand-gold);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 8px;
}
.method-steps span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}
.service-card--highlight {
  background: linear-gradient(135deg, var(--brand-main), var(--brand-mid));
  color: var(--white);
  border-color: transparent;
}
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
  background: rgba(215, 173, 84, 0.13);
  color: var(--brand-gold-dark);
  font-weight: 900;
}
.service-card--highlight .service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card--highlight h3 {
  color: var(--brand-gold) !important;
}
.service-card--featured h3 {
  color: var(--brand-gold) !important;
}

.service-card--highlight h3 {
  color: var(--white);
}
.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card--highlight p {
  color: rgba(255, 255, 255, 0.78);
}
.service-card__tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-main);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.service-card--highlight .service-card__tag {
  color: var(--brand-deep);
  background: var(--brand-gold);
}
.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #21105f, #4521b8 65%, #5a2de0);
  color: #fff;
}

.service-card--featured h3,
.service-card--featured p {
  color: #fff;
}

.service-card--featured .service-card__tag {
  background: #ffd318;
  color: #21105f;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-lead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 1.4rem;
  color: var(--brand-gold-dark);
  flex-shrink: 0;
}
.value-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
}
.value-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-main));
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-card:nth-child(even) .stat-card__number {
  color: var(--brand-gold);
}
.stat-card__label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 7px;
  font-weight: 700;
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(215, 173, 84, 0.15);
  color: var(--brand-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}
.location-detail strong {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 4px;
}
.location-detail p,
.location-detail address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.map-embed {
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
}
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  transition: var(--transition);
  animation: float-btn 3s ease-in-out infinite;
  font-size: 1.4rem;
  font-weight: 900;
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}
@keyframes float-btn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.footer {
  text-align: center;
  padding: 28px 20px 36px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
@media (max-width: 720px) {
  .hero {
    padding: 58px 18px 44px;
  }
  .contact-grid,
  .services-grid,
  .about-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }
  .testimonials-mini {
    grid-template-columns: 1fr;
  }

  .reviews-cta {
    width: 100%;
  }
  .method-steps,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .tab-btn {
    padding: 15px 16px;
  }
  .hero__title {
    max-width: 520px;
  }
  .location-actions .btn {
    width: 100%;
  }
  .service-card--featured {
    grid-column: span 1;
  }
  .tab-nav {
    overflow: hidden;
  }

  .tab-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 14px 16px;
    font-size: 0.78rem;
    scroll-snap-align: start;
  }

  .tab-btn:first-child {
    margin-left: 0;
  }

  .tab-btn:last-child {
    margin-right: 16px;
  }
  .tab-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .tab-nav__inner {
    scrollbar-width: none;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__avatar {
    width: 96px;
    height: 96px;
  }
  .contact-card {
    padding: 15px;
  }
  .contact-card__icon {
    width: 44px;
    height: 44px;
  }
  .vcard-block {
    align-items: stretch;
  }
  .vcard-block .btn {
    width: 100%;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .fab-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Ajustes v2 — identidade boosterhub. ===== */
:root {
  --brand-deep: #21105f;
  --brand-main: #4521b8;
  --brand-mid: #5a2de0;
  --brand-gold: #ffd318;
  --brand-gold-dark: #f2bc00;
  --brand-soft: #f4f0ff;
  --gray-50: #fbfaff;
  --gray-100: #f1edff;
  --gray-200: #e4dcff;
  --gray-400: #a89ed0;
  --gray-600: #625a85;
  --text-main: #211a3f;
  --text-muted: #625a85;
  --shadow-sm: 0 2px 10px rgba(69, 33, 184, 0.08);
  --shadow-md: 0 8px 26px rgba(69, 33, 184, 0.14);
  --shadow-lg: 0 18px 54px rgba(69, 33, 184, 0.22);
}

.hero {
  background:
    radial-gradient(
      circle at 70% 8%,
      rgba(255, 211, 24, 0.35),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(90, 45, 224, 0.42),
      transparent 28%
    ),
    linear-gradient(135deg, #21105f 0%, #4521b8 58%, #5a2de0 100%);
  padding: 54px 20px 42px;
}

.hero__watermark {
  font-size: clamp(7rem, 24vw, 14rem);
  color: rgba(255, 255, 255, 0.045);
  right: -8px;
  bottom: 8px;
}

.hero__brand {
  position: relative;
  z-index: 2;
  width: min(280px, 78vw);
  margin: -4px auto 4px;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(15, 9, 46, 0.18);
}

.hero__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__avatar {
  width: 96px;
  height: 96px;
  border: 3px solid var(--brand-gold);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero__title {
  font-size: clamp(1.45rem, 4.8vw, 2.35rem);
  line-height: 1.08;
  max-width: 640px;
  margin-inline: auto;
}

.hero__title span {
  display: block;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero__title small {
  display: block;
  margin-top: 7px;
  font-size: clamp(0.88rem, 2.5vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.hero__tagline {
  max-width: 540px;
  font-size: clamp(0.9rem, 2.6vw, 1rem);
}

.hero__eyebrow,
.section-label,
.method-card__badge {
  color: var(--brand-gold-dark);
  background: rgba(255, 211, 24, 0.12);
}

.btn--primary,
.hero__primary-cta {
  background: linear-gradient(
    135deg,
    var(--brand-gold),
    var(--brand-gold-dark)
  );
  color: var(--brand-main);
  box-shadow: 0 10px 24px rgba(255, 211, 24, 0.26);
}

.btn--outline {
  color: #4521b8;
  border-color: #4521b8;
}

.btn--outline:hover {
  background: #4521b8;
}

.tab-btn.active,
.tab-btn:hover,
.section-title,
.service-card h3 {
  color: #4521b8;
}

.tab-btn::after,
.contact-card--diagnostico::before {
  background: #ffd318;
}

.vcard-block,
.method-card,
.stat-card,
.service-card--highlight {
  background: linear-gradient(135deg, #21105f, #4521b8 70%, #5a2de0);
}

.vcard-block::before,
.method-card::before {
  content: "bh.";
}

.service-card__icon,
.location-icon {
  background: var(--brand-gold);
  color: var(--brand-main);
}

.service-card--highlight .service-card__tag {
  background: #ffd318;
  color: #21105f;
}

.stat-card:nth-child(even) .stat-card__number,
.method-steps strong,
.stars {
  color: #ffd318;
}

.fab-whatsapp {
  background: #25d366;
  font-size: 1.25rem;
}

.footer {
  margin-top: 32px;
  padding: 24px 16px 18px;
  text-align: center;
  font-size: 0.8rem;

  /* Mesmo fundo do hero */
  background:
    radial-gradient(
      circle at 70% 8%,
      rgba(255, 211, 24, 0.35),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(90, 45, 224, 0.42),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--brand-deep) 0%,
      var(--brand-main) 58%,
      var(--brand-mid) 100%
    );

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  color: rgba(255, 255, 255, 0.78);
}

.footer__logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 10px;
}

.footer p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  color: #ffffff;
  font-weight: 800;
}

.footer-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-sub strong {
  color: var(--brand-gold);
}

.footer small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}
@media (max-width: 480px) {
  .hero {
    padding-top: 44px;
  }

  .hero__brand {
    width: min(250px, 82vw);
  }

  .hero__title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .hero__title small {
    font-size: 0.9rem;
  }
}
