/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid #111;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 20px;
}

nav a {
  margin-left: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, #000, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px; /* compensar header fixo */
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
  animation: cinematicFade 1.2s ease;
}

.hero-content p {
  max-width: 600px;
  margin: auto;
  opacity: 0.75;
  margin-bottom: 40px;
  animation: cinematicFade 1.6s ease;
}

.cta {
  padding: 16px 50px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.cta:hover {
  background: #fff;
  color: #000;
}

/* SECTIONS */
.section {
  padding: 120px 60px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

/* SERVICE BLOCK */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse .service-info {
  direction: ltr;
}

/* SLIDER – FORMATO INSTAGRAM */
.slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin: auto;
  overflow: hidden;
}

/* IMAGENS */
.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slider img.active {
  opacity: 1;
  z-index: 1;
  animation: cinematicZoom 6s linear;
}

/* BOTÕES SLIDER */
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 5;
}

.slider .prev { left: 10px; }
.slider .next { right: 10px; }

/* SERVICE INFO */
.service-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.service-info p {
  opacity: 0.75;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-service {
  display: inline-block;
  padding: 15px 45px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.4s;
}

.btn-service:hover {
  background: #fff;
  color: #000;
}

/* REELS */
.reels-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.reel-card {
  position: relative;
  width: 220px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid #111;
  transition: transform 0.4s ease;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card:hover {
  transform: scale(1.05);
}

.reel-card::after {
  content: "Assistir no Instagram";
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.8);
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0;
  transition: 0.4s;
}

.reel-card:hover::after {
  opacity: 1;
}

/* FOOTER */
footer {
  padding: 50px;
  text-align: center;
  border-top: 1px solid #111;
  opacity: 0.6;
}

/* ANIMAÇÕES */
@keyframes cinematicFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* ===================== */
/* MOBILE – CORREÇÃO TOTAL */
/* ===================== */
@media (max-width: 768px) {

  header {
    padding: 16px 24px;
  }

  .hero {
    min-height: auto;
    padding: 160px 24px 80px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 24px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .slider {
    max-width: 100%;
  }

  /* REMOVE QUALQUER ALTURA FORÇADA */
  section,
  .section,
  .service-block,
  .slider {
    height: auto !important;
    min-height: unset !important;
  }
}
