/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000;
}

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

ul {
  list-style: none;
}

/* HERO FULLSCREEN */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

/* Vídeo padrão: ocupa fundo inteiro */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Mostrar apenas o vídeo para desktop */
.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

/* Quando for mobile (telas menores que 768px) */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

/* OVERLAY ESCURO */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* LOGO FIXA NO CANTO ESQUERDO */
.hero-logo-fixed {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.hero-logo-fixed img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

/* CONTEÚDO CENTRAL */
.hero-content-center {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
}

.hero-content-center h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* BOTÕES */
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary, .btn-outline {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-primary { background: #e50914; color: #fff; border: none; }
.btn-outline { background: transparent; color: #e50914; border: 2px solid rgba(229,9,20,0.9); }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1000px) {
  .hero-inner { padding: 16px; gap: 12px; max-width: 980px; }
  .hero-logo img { width: 140px; }
  .hero-center h1 { font-size: 2.8rem; text-align: center; }
  .hero-center { text-align: center; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero { height: 65vh; }
  .hero-logo img { width: 110px; }
  .hero-center h1 { font-size: 1.9rem; }
  .btn-primary, .btn-outline { padding: 10px 14px; font-size: 14px; }
}


/* Section base */
section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
}

/* Serviços */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  flex: 1 1 250px;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #111;
    border: 2px solid #e50914;       /* Vermelho forte */
  box-shadow: 0 0 12px #e50914, 
              0 0 22px #e50914;   /* Efeito neon */
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px; /* ajuste se quiser mais alto ou mais baixo */
}

.service:hover {
  box-shadow: 0 0 18px #e50914,
              0 0 32px #e50914;
  transform: translateY(-4px);
}


/* Cards */
.grid {
  display: grid;
  gap: 20px;
}

.card,
.plano {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

.card img,
.gallery img {
  width: 100%;
  border-radius: 10px;
}

.plano ul {
  margin: 20px 0;
}

.plano li {
  margin: 5px 0;
}

.plano .preco {
  font-size: 1.5rem;
  color: #e50914;
  font-weight: bold;
}

.plano.destaque {
  border: 2px solid #e50914;
}

/* Galeria */
.gallery {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
/* ===== Sobre mim com imagem ===== */
.sobre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.sobre-texto {
  flex: 1;
  text-align: left;
}

.sobre-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  background: #111;
    border: 2px solid #e50914;       /* Vermelho forte */
  box-shadow: 0 0 12px #e50914, 
              0 0 22px #e50914;   /* Efeito neon */
  transition: 0.3s;
}
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto {
    text-align: center;
  }
}


/* Responsividade */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services {
    flex-wrap: nowrap;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }
}

/* ====== Floating actions ====== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  overflow: hidden !important;
  /* Garante que nada ultrapasse os limites */
  white-space: nowrap;
  /* Evita que os elementos quebrem linha */
}


.floating-buttons a {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* Verde do WhatsApp */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  /* Isso faz os botões ficarem redondos */
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  /* Gradiente do Instagram */
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: #111;
  padding: 40px 20px;
}

footer .social {
  margin: 20px 0;
}

footer .social a {
  margin: 0 10px;
  color: #e50914;
  font-weight: bold;
}

.copy {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Rodapé */
.site-footer {
  padding: 28px 0;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center
}

.footer-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.footer-row a {
  color: var(--pink)
}

.copyright {
  opacity: .7;
  margin-top: 8px
}

/* ====== Responsivo ====== */
@media (max-width:1100px) {
  .pose {
    width: min(40vw, 360px)
  }

  .hero-photo {
    width: min(52vw, 520px)
  }
}

@media (max-width:900px) {
  .hero-inner {
    padding: 80px 20px 40px
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr
  }

  .plans {
    grid-template-columns: 1fr
  }

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

@media (max-width:560px) {
  h2 {
    font-size: 22px
  }

  .title-impact {
    font-size: 44px;
    -webkit-text-stroke: 1.5px #000
  }

  .title-script {
    font-size: 28px
  }

  .floating-actions {
    right: 12px;
    bottom: 12px
  }
}

.avant {
  color: #75756a;/
}

.banner-final {
  text-align: center;
  padding: 40px 20px;
}

.banner-final img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-reservas {
  background-color: #e50914;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  transition: 0.3s ease;
  cursor: pointer;

  display: block;       /* força o botão para uma nova linha */
  width: fit-content;   /* mantém o tamanho natural */
  margin: 20px auto 0;  /* centraliza */
}


.btn-reservas:hover {
  opacity: 0.9;
}

.faixa-fotos {
  width: 100%;
  overflow: hidden; /* garante que não apareça barra de rolagem */
  padding: 0;
  margin: 0;
}

.faixa-container {
  display: flex;
  width: 100%;
}

.faixa-container img {
  width: calc(100% / 5); /* divide a largura igualmente entre as 7 imagens */
  height: 290px;         /* altura baixa para estilo banda - você pode ajustar */
  object-fit: cover;     /* mantém o enquadramento perfeito cortando o excesso */
  margin: 0;
  padding: 0;
  display: block;
}
