* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080808;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

:root {
  --promo-banner-h: 60px;
}

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.promo-banner.hide {
  display: none;
}

.promo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-banner-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: #1a1200;
}

.promo-banner-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.promo-banner-text {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1200;
}

.promo-banner-text strong {
  font-weight: 900;
  margin-right: 4px;
}

.promo-banner-cta {
  flex-shrink: 0;
  background: #000;
  color: #ffb703;
  font-weight: 900;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: 0.3s;
}

.promo-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}

.promo-banner-close {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  color: #1a1200;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.promo-banner-close:hover {
  background: rgba(0, 0, 0, 0.3);
}

.header {
  width: 100%;
  position: fixed;
  top: var(--promo-banner-h);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: top 0.3s ease;
}

body.banner-dismissed .header {
  top: 0;
}

.nav {
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 183, 3, 0.75);
  box-shadow: 0 0 22px rgba(255, 183, 3, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.brand-text span {
  color: #ffb703;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-top: 6px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  color: #ddd;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffb703;
}

.ig-icon {
  vertical-align: -3px;
  margin-right: 6px;
}

.menu a.menu-clube {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 900;
  animation: pulse-clube 2.4s infinite;
}

.menu a.menu-clube:hover {
  color: #000;
  transform: translateY(-2px);
}

@keyframes pulse-clube {
  0%, 100% { box-shadow: 0 0 12px 2px rgba(255, 183, 3, 0.45); }
  50% { box-shadow: 0 0 38px 12px rgba(255, 183, 3, 0.95); }
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
}

.hero {
  min-height: 100vh;
  background: url("assets/fachada-elvis.jpeg") center top/cover no-repeat;
  background-color: #060606;
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 901px) {
  .hero {
    background-position: right top;
    background-size: 62% auto;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(140px + var(--promo-banner-h));
  transition: padding-top 0.3s ease;
}

body.banner-dismissed .hero-content {
  padding-top: 140px;
}

.tag,
.section-tag {
  display: inline-block;
  color: #ffb703;
  background: rgba(10, 8, 4, 0.55);
  border: 1px solid rgba(255, 183, 3, 0.4);
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.tag-clube {
  animation: pulse-clube 2.4s infinite;
}

.hero h1 {
  max-width: 760px;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}

.subtitle {
  max-width: 590px;
  margin-top: 25px;
  font-size: 20px;
  color: #d1d1d1;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.3s;
}

a.primary {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 183, 3, 0.35);
}

a.clube-btn {
  border: 2px solid #ffb703;
  color: #ffb703;
  background: rgba(255, 183, 3, 0.08);
  animation: pulse-clube 2.4s infinite;
}

a.dark {
  background: #000;
  color: #fff;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-4px);
}

.stats {
  margin-top: 55px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stats-item {
  display: block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: 18px;
  transition: 0.3s;
}

a.stats-item:hover {
  transform: translateY(-4px);
  border-color: #ffb703;
}

.stats-item strong {
  display: block;
  font-size: 28px;
  color: #ffb703;
}

.stats-item span {
  color: #ccc;
}

.clube-vip {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.22), transparent 35%),
    linear-gradient(135deg, #050505, #15100a);
}

.clube-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: left;
}

.clube-logo-wrap {
  display: inline-block;
  width: 90px;
  max-width: 90px;
  background: #fff;
  padding: 12px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 0 22px rgba(255, 183, 3, 0.3);
  overflow: hidden;
}

.clube-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.clube-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.clube-header p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 18px;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.plano-card {
  position: relative;
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 38px;
  border-radius: 30px;
  transition: 0.3s;
}

.plano-card:hover {
  transform: translateY(-10px);
  border-color: #ffb703;
  box-shadow: 0 0 40px rgba(255, 183, 3, 0.16);
}

.plano-destaque {
  border: 2px solid #ffb703;
  background: linear-gradient(180deg, #2a1b00, #111);
  box-shadow: 0 0 45px rgba(255, 183, 3, 0.22);
}

.plano-destaque:hover {
  transform: translateY(-10px);
}

.selo {
  position: absolute;
  top: -16px;
  right: 25px;
  background: #ffb703;
  color: #000;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 900;
}

.plano-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.plano-combo {
  color: #ffdd8a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.plano-preco {
  font-size: 38px;
  font-weight: 900;
  color: #ffb703;
  margin-bottom: 24px;
}

.plano-preco span {
  font-size: 16px;
  color: #aaa;
}

.plano-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.plano-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}

.plano-card li.ok {
  color: #ddd;
}

.plano-card li.no {
  color: #888;
  opacity: 0.75;
}

.plano-card .ic {
  font-size: 16px;
  flex-shrink: 0;
}

.plano-card .ic-ok {
  color: #22c55e;
}

.plano-card .ic-no {
  color: #ef4444;
}

.plano-card a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  padding: 15px;
  border-radius: 50px;
  font-weight: 900;
}

.como-funciona {
  margin-top: 60px;
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 45px;
}

.como-funciona h3 {
  font-size: 28px;
  color: #ffb703;
  margin-bottom: 24px;
}

.como-funciona p {
  color: #cfcfcf;
  line-height: 1.9;
  font-size: 16px;
  max-width: 820px;
  margin: 0 0 18px 0;
}

.como-funciona p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 100px 0;
}

.section h2,
.sobre h2,
.depoimentos h2,
.cta h2,
.mapa h2 {
  font-size: 46px;
  margin-bottom: 40px;
  max-width: 700px;
}

.servicos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 45px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ddd;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover {
  border-color: #ffb703;
  color: #ffb703;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 22px rgba(255, 183, 3, 0.35);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card,
.review {
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 35px;
  border-radius: 28px;
  transition: 0.3s;
}

.card:hover,
.review:hover {
  transform: translateY(-10px);
  border-color: #ffb703;
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.15);
}

.card.destaque {
  border-color: #ffb703;
  background: linear-gradient(180deg, #2a1b00, #111);
}

.icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.icon-clipper {
  width: 42px;
  height: 42px;
  display: block;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.card p,
.sobre p,
.review p {
  color: #cfcfcf;
  line-height: 1.7;
}

.sobre .section-tag {
  color: #ffb703;
}

.card strong {
  display: block;
  margin: 25px 0;
  font-size: 32px;
  color: #ffb703;
}

.card a {
  display: block;
  text-align: center;
  background: #fff;
  color: #000;
  padding: 14px;
  border-radius: 50px;
  font-weight: 900;
}

.sobre {
  padding: 100px 0;
  background: linear-gradient(135deg, #111, #1f1400);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.sobre ul {
  margin-top: 25px;
  list-style: none;
}

.sobre li {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 700;
}

.sobre-btn {
  display: inline-block;
  margin-top: 30px;
}

.sobre-box {
  background: #ffb703;
  color: #000;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(255, 183, 3, 0.25);
}

.logo-box {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.galeria {
  background: #0c0c0c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: 0.3s;
  filter: brightness(0.85);
  background: #000;
}

.gallery-grid .gallery-img-barbeiro {
  object-position: center top;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.depoimentos {
  padding: 100px 0;
  background: #080808;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.4);
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffb703;
  font-weight: 800;
  margin-bottom: 40px;
  transition: 0.3s;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.25);
}

.google-badge span {
  color: #ddd;
  font-weight: 600;
  font-size: 14px;
}

.review span {
  color: #ffb703;
  font-size: 22px;
}

.review p {
  margin: 20px 0;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  text-align: center;
}

.cta h2 {
  margin: 0 auto 20px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 35px;
}

.mapa {
  padding: 100px 0;
  background: #0c0c0c;
  text-align: center;
}

.mapa-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

footer {
  padding: 55px 0 30px;
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-info strong {
  display: block;
  font-size: 20px;
  color: #ffb703;
  margin-bottom: 14px;
}

.footer-info p {
  color: #aaa;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-sitemap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-sitemap strong {
  color: #ffb703;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-sitemap a {
  color: #aaa;
  font-size: 15px;
  transition: 0.3s;
}

.footer-sitemap a:hover {
  color: #ffb703;
}

.footer-copy {
  text-align: center;
  color: #777;
  font-size: 14px;
  padding-top: 25px;
}

a.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  padding: 16px 22px;
  border-radius: 50px;
  font-weight: 900;
  z-index: 999;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --promo-banner-h: 100px;
  }

  .promo-banner-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .promo-banner-link {
    flex: 1 1 100%;
  }

  .promo-banner-logo {
    width: 34px;
    height: 34px;
  }

  .promo-banner-text {
    font-size: 12.5px;
  }

  .promo-banner-cta {
    order: 1;
  }

  .promo-banner-close {
    order: 2;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }

  .cards,
  .sobre-grid,
  .gallery-grid,
  .planos-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-info,
  .footer-sitemap {
    text-align: center;
    align-items: center;
  }

  .section h2,
  .sobre h2,
  .depoimentos h2,
  .cta h2,
  .mapa h2,
  .clube-header h2 {
    font-size: 34px;
  }

  .gallery-grid img,
  .gallery-grid video {
    height: 280px;
  }

  .gallery-grid .gallery-img-barbeiro {
    object-position: center 18%;
  }

  .gallery-grid .gallery-img-corte {
    height: 380px;
    object-position: center 29%;
  }

  .logo-box {
    min-height: 300px;
  }

  .logo-box img {
    max-width: 280px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .como-funciona {
    padding: 30px;
  }

  .como-funciona h3 {
    font-size: 24px;
  }

  .mapa-embed iframe {
    height: 300px;
  }

  .hero {
    align-items: flex-start;
  }

  .hero-content {
    padding-top: calc(150px + var(--promo-banner-h));
  }

  body.banner-dismissed .hero-content {
    padding-top: 150px;
  }

  .tag {
    margin-top: 20px;
  }
}