/* ==================================================
   RESET + BASE
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
  line-height: 1.6;
}

/* garante que conteúdo nunca “passe por cima” do header fixed */
main {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==================================================
   LAYOUT
================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
}

.section__subtitle {
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
  opacity: 1;
  color: #fff;
}

.section__text {
  max-width: 620px;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* ==================================================
   MINI CTA
================================================== */
.mini-cta .link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 700;
  opacity: 0.95;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mini-cta .link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

/* ==================================================
   GRID
================================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ==================================================
   CARDS
================================================== */
.card {
  background: #121212;
  border-radius: 14px;
  padding: 2rem;
}

/* ==================================================
   NAV (fixa, transparente no topo, fundo ao rolar)
================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

/* estado ao rolar */
.header.is-scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* evita flicker em alguns navegadores */
.header,
.header * {
  transform: translateZ(0);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brandName {
    font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__brandTag {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
}

/* menu desktop */
.nav__menu {
  display: flex;
  gap: 1.5rem;
}

.nav__link {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.nav__link:hover {
  opacity: 1;
}

/* botão do menu (mobile) — fica escondido no desktop */
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__toggleBar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

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

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero__content {
  max-width: 680px;
}

.hero__kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.hero__highlight {
  color: #c7c7c7;
}

.hero__subtitle {
  max-width: 520px;
  opacity: 0.9;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* evita que o conteúdo “encoste” no topo por conta do header fixed */
#inicio {
  scroll-margin-top: 80px;
}

/* ==================================================
   BOTÕES
================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  background: linear-gradient(36deg,rgba(224, 230, 255, 0.53) 0%, rgba(252, 70, 107, 1) 100%);
  transform: translateY(-1px);
}

/* ==================================================
   ARTISTA – FOTO REDONDA + ALINHAMENTO
================================================== */
.artist-grid {
  align-items: center;
}

.figure--artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.figure--artist img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.figure--artist img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.figure__caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ==================================================
   IG PORTFÓLIO
================================================== */
.ig-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.25rem;
}

.ig-card {
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ig-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.ig-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0f0f0f;
}

.ig-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.ig-card:hover .ig-card__media img {
  transform: scale(1.06);
}

.ig-card__body {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.ig-card__title {
  margin: 0;
  font-size: 1rem;
}

.ig-card__text {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.78;
}

.ig-card__btn {
  justify-self: start;
  margin-top: 0.25rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
}

/* ==================================================
   FOOTER
================================================== */
.footer {
  background: #050505;
  padding: 2rem 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer__links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ==================================================
   WHATSAPP FLOAT
================================================== */
.wa-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 9998;
}

/* ==================================================
   STICKY CTA (MOBILE)
================================================== */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 84px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(8px);
    padding: 0.75rem;
    z-index: 9997;
  }

  .sticky-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #25d366;
    color: #000;
    padding: 0.95rem;
    border-radius: 10px;
    font-weight: 800;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* quando adicionar .is-open no header/nav via JS */
  .header.is-open .nav__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ==================================================
   SKIP LINK (só aparece no teclado)
================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 8px;
  z-index: 10000;
}

.skip-link:focus {
  left: 12px;
}

/* ===== IG: vídeo dentro do card ===== */
.ig-card__media {
  position: relative;
}

.ig-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* botão pause/play pequeno no canto */
.ig-video__toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.ig-video__toggle:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.7);
}

/* ==================================================
   CTA BAR (Orçamento)
================================================== */
.cta-bar{
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cta-bar__inner{
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1.2fr .8fr;
}

.cta-bar__title{
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: .5px;
}

.cta-bar__text{
  margin: 0;
  opacity: .85;
  max-width: 60ch;
}

.cta-bar__actions{
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .cta-bar__inner{
    grid-template-columns: 1fr;
  }

  .cta-bar__actions{
    justify-content: flex-start;
  }

  .cta-bar__actions .btn{
    width: 100%;
  }
}

/* ==================================================
   CTA COM IMAGEM DE FUNDO
================================================== */
.cta-image {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  background-image: url("./img/topo-page.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.cta-image__inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-image__content {
  max-width: 720px;
}

.cta-image__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.cta-image__title span {
  color: #c7c7c7;
}

.cta-image__text {
  max-width: 520px;
  opacity: 0.9;
}

.cta-image__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* mobile */
@media (max-width: 768px) {
  .cta-image {
    min-height: 60vh;
  }

  .cta-image__actions {
    flex-direction: column;
  }

  .cta-image__actions .btn {
    width: 100%;
  }
}


/* ==================================================
   LOCALIZAÇÃO: mais “premium”
================================================== */
.contact-grid{
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.contact-chip{
  display: grid;
  grid-template-columns: 34px 120px 1fr;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.contact-chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.contact-chip__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 1rem;
}

.contact-chip__label{
  font-size: .85rem;
  opacity: .7;
}

.contact-chip__value{
  font-weight: 700;
  letter-spacing: .2px;
}

.contact-chip--wa .contact-chip__icon{
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.25);
}

.contact-actions{
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.contact-actions .btn{
  border-radius: 12px;
}

/* mapa com moldura */
.card--map .map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

.card--map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 768px){
  .contact-chip{
    grid-template-columns: 34px 1fr;
    grid-template-areas:
      "i v"
      "i l";
    align-items: start;
  }

  .contact-chip__icon{ grid-area: i; }
  .contact-chip__value{ grid-area: v; }
  .contact-chip__label{ grid-area: l; }

  .contact-actions .btn{
    width: 100%;
  }

  .card--map iframe{
    height: 320px;
  }
}

.section--local .section__title{
  position: relative;
  padding-bottom: .75rem;
}

.section--local .section__title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 72px;
  height: 3px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.contact-chip__icon svg{
  width: 18px;
  height: 18px;
  display: block;
}

/* WhatsApp */
.contact-chip__icon--wa{
  color: #25d366;
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.35);
}

/* Instagram */
.contact-chip__icon--ig{
  color: #e1306c;
  background: rgba(225,48,108,.15);
  border-color: rgba(225,48,108,.35);
}

.section-head{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.section-head__tag{
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  opacity: .75;
}

.section-head--instagram .section-head__tag{
  color: #e1306c;
  border-color: rgba(225,48,108,.35);
}

