/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #111;
}

/* ===== ÍCONES FLUTUANTES – CENTRALIZADOS, SEM FAIXA ===== */
.navbar.social-only {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: transparent !important;
  height: 0 !important;
  pointer-events: none;
}

.navbar.social-only .social-top {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
  z-index: 1001;
}

.navbar.social-only .social-top .social {
  color: #fff;
  font-size: 1.65rem;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  opacity: .95;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .45));
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}

.navbar.social-only .social-top .social:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .14);
}

/* tablets */
@media (max-width: 1024px) {
  .navbar.social-only .social-top { gap: 20px; }
  .navbar.social-only .social-top .social { width: 52px; height: 52px; font-size: 1.5rem; }
}

/* celulares */
@media (max-width: 768px) {
  .navbar.social-only .social-top {
    gap: 18px;
    top: calc(env(safe-area-inset-top, 0px) + 14px);
  }
  .navbar.social-only .social-top .social {
    width: 48px; height: 48px; font-size: 1.4rem;
  }
}

/* iPhones muito estreitos */
@media (max-width: 380px) {
  .navbar.social-only .social-top { gap: 16px; }
  .navbar.social-only .social-top .social { width: 44px; height: 44px; font-size: 1.3rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* imagem de fundo */
.hero-bg {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
  filter: brightness(.58);
  z-index: 1;
}

/* LOGO — base (mobile/tablet perfeito) */
.hero-texto {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 420px); /* mobile/tablet OK - NÃO mexer */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
}

/* tamanho do logo */
.hero-texto .logo {
  width: clamp(260px, 70vw, 1200px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .45));
}

/* tablets */
@media (max-width: 1024px) {
  .hero-texto { top: calc(env(safe-area-inset-top, 0px) + 430px); }
  .hero-texto .logo { width: clamp(240px, 76vw, 1000px); }
}

/* celulares */
@media (max-width: 768px) {
  .hero-texto { top: calc(env(safe-area-inset-top, 0px) + 440px); }
  .hero-texto .logo { width: clamp(220px, 74vw, 880px); }
}

/* iPhones muito estreitos */
@media (max-width: 380px) {
  .hero-texto { top: calc(env(safe-area-inset-top, 0px) + 450px); }
  .hero-texto .logo { width: clamp(210px, 78vw, 820px); }
}

/* ===== SEÇÕES ===== */
.biografia,
.musica,
.redes {
  padding: 4em 2em;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #ff0066;
  text-align: center;
  margin-bottom: 1em;
}

/* ===== VÍDEOS ===== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== REDES (seção) ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-links a {
  background: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links a i { font-size: 1.2em; }

/* ===== RODAPÉ ===== */
.footer {
  text-align: center;
  padding: 2em;
  background: #000;
  font-size: .9rem;
}

/* =========================================================
   ==========  AJUSTE SÓ PARA DESKTOP (≥1025px)  ==========
   Impede o corte do logo e permite ajustar a altura
   sem mexer no mobile/tablet.
   ========================================================= */
@media (min-width: 1025px) {
  :root{
    --logoTop: 460px;          /* <-- ajuste (desktop): menor = sobe, maior = desce */
    --logoBottomMargin: 60px;  /* <-- ajuste (desktop): espaço mínimo do logo até a base da tela */
  }

  /* posição do bloco do logo no desktop */
  .hero-texto{
    top: var(--logoTop) !important;   /* força posição só no desktop */
  }

  /* evita corte: limita a altura do logo ao espaço visível restante */
  .hero-texto .logo{
    max-height: calc(100vh - var(--logoTop) - var(--logoBottomMargin));
    width: auto;                               /* permite reduzir pela altura */
    max-width: min(80vw, 1200px);
  }
}


/* ===== CONTATO ===== */
.contato {
  padding: 4em 2em;
  max-width: 900px;
  margin: 0 auto;
}

.contato h2 {
  color: #ff0066;
  text-align: center;
  margin-bottom: 1.2em;
}

/* CTAs rápidos */
.contato-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.contato-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}

.btn-whatsapp {
  background: #25D366;
  color: #111;
}
.btn-email {
  background: #222;
  color: #fff;
}
.contato-ctas a:hover { transform: translateY(-1px); opacity: .95; }

/* Form */
.form-contato {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 20px;
}

.form-contato .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-contato .campo { display: flex; flex-direction: column; }
.form-contato .campo-full { grid-column: 1 / -1; }
.form-contato label { font-size: .95rem; margin-bottom: 6px; opacity: .9; }

.form-contato input,
.form-contato select,
.form-contato textarea {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
}
.form-contato textarea { resize: vertical; }

.form-contato input:focus,
.form-contato select:focus,
.form-contato textarea:focus {
  border-color: #ff0066;
  box-shadow: 0 0 0 2px rgba(255,0,102,.2);
}

.campo-inline { align-items: center; }
.campo-inline .checkbox { display: inline-flex; align-items: center; gap: 10px; }
.campo-inline input[type="checkbox"] { width: 18px; height: 18px; }

.btn-enviar {
  margin-top: 10px;
  width: 100%;
  background: #ff0066;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-enviar:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,0,102,.25);
}

.aviso-form {
  opacity: .7;
  font-size: .9rem;
  margin-top: 10px;
  text-align: center;
}

.contato-nota {
  text-align: center;
  margin-top: 1em;
  opacity: .8;
}
.contato-nota a { color: #fff; text-decoration: underline; }

/* Responsivo contato */
@media (max-width: 768px) {
  .form-contato .grid { grid-template-columns: 1fr; }
}
