/* ==============================
   Drone
============================== */

/* ======================================================
   PÁGINA DRONE | FOCUS
   Página full hero, editorial, premium
====================================================== */

.drone-page {
  font-family: 'Inter', sans-serif;
  background: #050507;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===== CONTAINER GERAL ===== */
.drone-fullpage {
  min-height: 100vh;
   background: linear-gradient(
    120deg,
    #050507,
    #1a0022,
    #2a0055,
    #1a0022,
    #050507
  );
  background-size: 300% 300%;
  animation: bgGradient 18s ease infinite;
  display: flex;
  align-items: center;
}

@keyframes bgGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== CONTEÚDO ===== */
.drone-content {
  padding-left: 8%;
}

.drone-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.drone-icon img {
  width: 40px;
  filter: invert(1);
}

.drone-content h1 {
  font-size: 5.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.drone-text {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 2;
  color: #cfcfe3;
}

.drone-text span {
  color: #8b5cf6;
  font-weight: 600;
}

.drone-content h5 {
  margin: 45px 0 20px;
  font-size: 1.15rem;
  font-weight: 600;
}

.drone-content ul {
  padding-left: 18px;
}

.drone-content ul li {
  font-size: 1.05rem;
  color: #b9b9d6;
  margin-bottom: 12px;
}

/* ===== GALERIA ===== */
.drone-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper da imagem */
.gallery-wrapper {
  width: 420px;
  height: 700px;
  position: relative;
}

.gallery-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.gallery-wrapper img.active {
  opacity: 1;
}

/* ===== SETAS ===== */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

.gallery-arrow:hover {
  background: #8b5cf6;
}

.gallery-arrow.left {
  left: 190px;   /* 🔥 colado na imagem */
}

.gallery-arrow.right {
  right: 190px;  /* 🔥 colado na imagem */
}

/* ===== INDICADOR (IGUAL AO DA HOME) ===== */
.gallery-indicator {
  position: absolute;
  bottom: -55px;
  display: flex;
  gap: 12px;
}

.gallery-indicator span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #555;
  transition: 0.3s ease;
}

.gallery-indicator span.active {
background: #6d28d9;
box-shadow: 0 0 10px rgba(109, 40, 217, 0.7);
}

.back-home {
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 50;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.back-home:hover {
  background: #8b5cf6;
}


/* ===== EFEITO CINEMATOGRÁFICO ===== */
.gallery-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
  pointer-events: none;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1200px) {
  .drone-content h1 {
    font-size: 4.5rem;
  }

  .gallery-wrapper {
    width: 380px;
    height: 620px;
  }
}

@media (max-width: 992px) {
  .drone-fullpage {
    padding: 80px 0;
  }

  .drone-content {
    padding: 0 40px;
    margin-bottom: 70px;
  }

  .drone-content h1 {
    font-size: 3.4rem;
  }

  .gallery-wrapper {
    width: 300px;
    height: 500px;
  }

  .gallery-arrow.left {
    left: -55px;
  }

  .gallery-arrow.right {
    right: -55px;
  }
}

@media (max-width: 576px) {
  .drone-content {
    padding: 0 25px;
  }

  .drone-content h1 {
    font-size: 2.8rem;
  }

  .drone-text {
    font-size: 1rem;
  }
}


.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up-soft {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSoft 0.8s ease forwards;
}

@keyframes fadeUpSoft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-zoom {
  opacity: 0;
  transform: scale(1.08);
  animation: imageZoom 1.2s ease forwards;
}

@keyframes imageZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

