/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E2C270;
  --gold-dark: #A07830;
  --black: #080808;
  --dark: #101010;
  --dark-2: #181818;
  --dark-3: #222222;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #F5F5F5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
  opacity: 1;
  transform: none;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

/* ===========================
   HOVER BORDER GRADIENT
=========================== */
.btn--hbg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition);
  text-decoration: none;
}

.btn--hbg:hover {
  transform: translateY(-2px);
}

.btn--hbg__inner {
  position: relative;
  z-index: 10;
  border-radius: 9999px;
  background: var(--black);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}

.btn--hbg:hover .btn--hbg__inner {
  color: var(--gold);
}

.btn--hbg__border {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}

.btn--hbg__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(2px);
  background: radial-gradient(20.7% 50% at 50% 100%, #C9A84C 0%, rgba(201,168,76,0) 100%);
  animation: hbgRotate 3s linear infinite;
}

@keyframes hbgRotate {
  0%   { background: radial-gradient(20.7% 50% at 50% 0%,   #C9A84C 0%, rgba(201,168,76,0) 100%); }
  25%  { background: radial-gradient(16.6% 43%  at 0%   50%, #C9A84C 0%, rgba(201,168,76,0) 100%); }
  50%  { background: radial-gradient(20.7% 50% at 50% 100%, #C9A84C 0%, rgba(201,168,76,0) 100%); }
  75%  { background: radial-gradient(16.2% 41%  at 100% 50%, #C9A84C 0%, rgba(201,168,76,0) 100%); }
  100% { background: radial-gradient(20.7% 50% at 50% 0%,   #C9A84C 0%, rgba(201,168,76,0) 100%); }
}

.btn--hbg:hover .btn--hbg__glow {
  animation: none;
  background: radial-gradient(75% 181% at 50% 50%, #C9A84C 0%, rgba(201,168,76,0) 100%);
}

.btn--hbg__fill {
  position: absolute;
  inset: 1.5px;
  z-index: 1;
  border-radius: 9999px;
  background: var(--black);
}

/* ===========================
   SECTION SHARED
=========================== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav__logo-img {
  display: flex;
  align-items: center;
}

.nav__logo-img img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

.nav__logo-img:hover img {
  opacity: 0.85;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.7);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Foto salão jander.png');
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 50%,
    rgba(8,8,8,0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 40px;
  margin-top: 80px;
}


.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: rgba(245,245,245,0.65);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__produtos-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.06);
  text-decoration: none;
  transition: all var(--transition);
  max-width: fit-content;
}

.hero__produtos-cta:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.hero__produtos-cta svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero__produtos-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__produtos-sub {
  display: block;
  font-size: 12px;
  color: rgba(245,245,245,0.5);
  margin-top: 2px;
  font-weight: 300;
}


/* ===========================
   INFOBAR
=========================== */
.infobar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.infobar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 48px;
}

.infobar__item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.infobar__item div {
  display: flex;
  flex-direction: column;
}

.infobar__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.infobar__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.infobar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ===========================
   SERVIÇOS
=========================== */
.servicos {
  background: var(--black);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.servico-card {
  background: var(--dark-2);
  padding: 48px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(0.4);
  transition: opacity var(--transition);
  z-index: 0;
}

.servico-card:hover .servico-card__bg {
  opacity: 0.22;
}

.servico-card__icon,
.servico-card h3,
.servico-card p {
  position: relative;
  z-index: 1;
}

.servico-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card:hover {
  background: var(--dark-3);
  transform: translateY(-4px);
}

.servico-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--gold);
}

.servico-card__icon svg {
  width: 100%;
  height: 100%;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--white);
}

.servico-card p {
  font-size: 14px;
  color: rgba(245,245,245,0.55);
  line-height: 1.7;
}

/* ===========================
   PREÇOS
=========================== */
.precos {
  background: var(--dark);
}

.precos__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.precos__col-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.precos__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.precos__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  color: rgba(245,245,245,0.8);
  transition: color var(--transition);
}

.precos__list li:hover {
  color: var(--white);
}

.price {
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  white-space: nowrap;
}

.precos__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ===========================
   GALERIA CORTES CARDS
=========================== */
.galeria-cortes {
  background: var(--black);
}

.galeria-cortes__sub {
  font-size: 15px;
  color: rgba(245,245,245,0.5);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}

.galeria-cortes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.corte-card {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), border-color var(--transition);
}

.corte-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.25);
}

.corte-card__img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.corte-card:hover .corte-card__img {
  transform: scale(1.04);
}

.corte-card__body {
  padding: 20px;
}

.corte-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.corte-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.corte-card__desc {
  font-size: 13px;
  color: rgba(245,245,245,0.5);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .galeria-cortes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .galeria-cortes__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   GALERIA SHOWCASE
=========================== */
.galeria-showcase {
  background: var(--black);
  overflow: hidden;
}

/* ── Scroll infinito de fotos ── */
.scroll-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 56px;
}

.scroll-gallery__track {
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
}

.scroll-gallery__inner {
  display: flex;
  gap: 12px;
  width: max-content;
}

.scroll-gallery__track--left .scroll-gallery__inner {
  animation: scrollLeft 35s linear infinite;
}

.scroll-gallery__track--right .scroll-gallery__inner {
  animation: scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.scroll-gallery__item {
  width: 220px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.5s ease, transform 0.4s ease;
  filter: grayscale(1) brightness(0.75);
}

.scroll-gallery__item:hover img,
.scroll-gallery__item.is-active img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.06);
}

.scroll-gallery__item.is-dimmed {
  opacity: 0.45;
}

/* Fade lateral */
.scroll-gallery__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}

.scroll-gallery__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.scroll-gallery__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

/* ── Lista de nomes ── */
.showcase {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  user-select: none;
  width: 100%;
}

.showcase__photos {
  display: none;
}

/* Lista de nomes */
.showcase__list {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  padding-top: 8px;
  align-content: start;
}

.showcase__row {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.showcase__row.is-dimmed {
  opacity: 0.4;
}

.showcase__row-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase__pip {
  width: 16px;
  height: 10px;
  border-radius: 5px;
  background: rgba(245,245,245,0.2);
  flex-shrink: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.showcase__row.is-active .showcase__pip {
  background: var(--white);
  width: 20px;
}

.showcase__name {
  font-size: 15px;
  font-weight: 600;
  color: rgba(245,245,245,0.75);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase__row.is-active .showcase__name {
  color: var(--white);
}

.showcase__ig {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  color: var(--gold);
}

.showcase__ig svg {
  width: 13px;
  height: 13px;
}

.showcase__row.is-active .showcase__ig {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.showcase__role {
  margin-top: 3px;
  padding-left: 26px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,245,245,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsivo */
@media (max-width: 1100px) {
  .showcase {
    flex-direction: column;
    gap: 36px;
  }
  .showcase__list {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .showcase__photo {
    width: 145px;
    height: 172px;
  }
}

@media (max-width: 640px) {
  .showcase__photos {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .showcase__photo {
    width: 110px;
    height: 132px;
  }
  .showcase__list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================
   SOBRE
=========================== */
.sobre {
  background: var(--dark);
}

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

.sobre__img-wrap {
  position: relative;
}

.sobre__img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(20%);
}

.sobre__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 16px 48px rgba(201,168,76,0.3);
}

.sobre__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.sobre__badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.sobre__lead {
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.sobre__text {
  font-size: 15px;
  color: rgba(245,245,245,0.65);
  margin-bottom: 20px;
  line-height: 1.8;
}

.sobre__stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat__label {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* ===========================
   CTA BANNER
=========================== */
.ctabanner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 80px 40px;
  text-align: center;
}

.ctabanner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.ctabanner p {
  font-size: 16px;
  color: rgba(8,8,8,0.7);
  margin-bottom: 32px;
}

.ctabanner .btn--gold {
  background: var(--black);
  color: var(--white);
}

.ctabanner .btn--gold:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===========================
   CONTATO
=========================== */
.contato {
  background: var(--black);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.contato__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contato__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contato__list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contato__list span,
.contato__list a {
  font-size: 15px;
  color: rgba(245,245,245,0.7);
  line-height: 1.6;
}

.contato__list a:hover {
  color: var(--gold);
}

.contato__list small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.contato__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   IPHONE MOCKUP
=========================== */
.iphone {
  position: relative;
}

.iphone__frame {
  width: 280px;
  height: 570px;
  background: linear-gradient(135deg, #2a2a2e 0%, #1c1c1e 40%, #111113 100%);
  border-radius: 52px;
  padding: 12px;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 60px rgba(0,0,0,0.7),
    0 4px 12px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 8px 20px rgba(0,0,0,0.4);
  position: relative;
}

/* Botão power (direita) */
.iphone__btn--power {
  position: absolute;
  right: -3px;
  top: 160px;
  width: 3px;
  height: 64px;
  background: linear-gradient(180deg, #2e2e32, #1a1a1c);
  border-radius: 0 3px 3px 0;
  box-shadow: -1px 0 2px rgba(0,0,0,0.5);
}

/* Botões volume (esquerda) */
.iphone__btn--vol-up {
  position: absolute;
  left: -3px;
  top: 130px;
  width: 3px;
  height: 44px;
  background: linear-gradient(180deg, #2e2e32, #1a1a1c);
  border-radius: 3px 0 0 3px;
  box-shadow: 1px 0 2px rgba(0,0,0,0.5);
}

.iphone__btn--vol-down {
  position: absolute;
  left: -3px;
  top: 186px;
  width: 3px;
  height: 44px;
  background: linear-gradient(180deg, #2e2e32, #1a1a1c);
  border-radius: 3px 0 0 3px;
  box-shadow: 1px 0 2px rgba(0,0,0,0.5);
}

.iphone__screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

/* Dynamic Island */
.iphone__island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Maps iframe */
.iphone__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  filter: saturate(0.9) brightness(0.95);
}

/* Home indicator */
.iphone__home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.55);
  z-index: 3;
  pointer-events: none;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--gray);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: var(--gray);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

/* ===========================
   VÍDEOS
=========================== */
.videos {
  background: var(--dark-2);
}

.vcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vcard {
  background: var(--dark-3);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--transition), transform var(--transition);
}

.vcard:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.vcard__media {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
}

.vcard__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vcard__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.4);
  transition: background var(--transition);
}

.vcard__play svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.5));
}

.vcard.is-playing .vcard__play {
  background: transparent;
}

.vcard.is-playing .vcard__play svg {
  opacity: 0;
}

.vcard__info {
  padding: 16px;
}

.vcard__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.vcard__desc {
  font-size: 13px;
  color: rgba(245,245,245,0.55);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .vcards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   3D CARD EFFECT
=========================== */
.servico-card {
  transform-style: preserve-3d;
  perspective: 600px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .precos__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .galeria__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 260px);
  }

  .videos__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre__img-wrap img {
    aspect-ratio: 4/3;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .iphone__frame {
    width: 240px;
    height: 490px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 18px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 18px;
  }

  .nav__toggle {
    display: flex;
    z-index: 1000;
  }

  .hero__content {
    padding: 0 24px;
  }

  .infobar {
    flex-direction: column;
  }

  .infobar__item {
    padding: 20px 24px;
    width: 100%;
  }

  .infobar__divider {
    width: 80%;
    height: 1px;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .sobre__stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .footer__links {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .ctabanner {
    padding: 60px 24px;
  }

  .vcarousel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 40px;
  }

  .vcarousel__stage {
    height: 380px;
  }

  .vcarousel__item {
    width: 200px;
    height: 354px;
    margin-left: -100px;
    margin-top: -177px;
  }

  .vcarousel__item.is-left {
    transform: translateX(-140px) translateY(-36px) scale(0.82) rotateY(16deg);
  }

  .vcarousel__item.is-right {
    transform: translateX(140px) translateY(-36px) scale(0.82) rotateY(-16deg);
  }

  .vcarousel__content {
    min-height: auto;
  }

}

@media (max-width: 480px) {
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 200px);
  }

  .videos__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}
