* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #e6e6e6;
  background-color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fade-in animation for sections */
section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  text-align: center;
  padding: 2rem 0 1rem;
  background: transparent; /* Remove o degradê e mantém tudo uniforme */
}



.logo {
  font-size: 1.8rem;
  color: #f3c623;
  letter-spacing: 2px;
  font-weight: 700;
}

.contact-link {
  color: #f3c623;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at center, rgba(243,198,35,0.05) 0%, #000 80%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 3rem;
  gap: 3rem;
}

.hero-text {
  max-width: 520px;
  text-align: center;
}

.hero-text h2 {
  color: #f3c623;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.tools {
  font-size: 1rem;
  color: #d4d4d4;
  margin-top: 1.5rem;
}

.tool-badge {
  background-color: #f3c623;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 25px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-image img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(243,198,35,0.2);
  transition: 0.4s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 55px rgba(243,198,35,0.4);
}

/* Shortform Section */
.shortform {
  border-top: 4px dashed #f3c623;
  padding: 3rem 1rem;
  text-align: center;
  background-color: #000;
}

.shortform h3 {
  color: #f3c623;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.video {
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #111;
  border: 1px solid #f3c623;
  padding: 0;
}

.video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16;
}

.video.placeholder p {
  color: #f3c623;
  font-style: italic;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
}

/* Edits Section */
.edits-section {
  width: 100%;
  padding: 80px 5%;
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.edits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 60px;
  margin-bottom: 40px;
}

.edits-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px dotted #f5c400;
  border-radius: 0;
}

/* Container com setas */
.edits-container {
  position: relative;
  display: flex;
  align-items: center;
}

.edits-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #f3c623 #111;
  padding-bottom: 10px;
}

.edits-scroll::-webkit-scrollbar {
  height: 6px;
}
.edits-scroll::-webkit-scrollbar-thumb {
  background-color: #f3c623;
  border-radius: 10px;
}

.edit-item {
  flex: 0 0 320px;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px dotted transparent;
  position: relative;
}

.edit-item:hover {
  transform: scale(1.05);
  border-color: #f3c623;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.edit-item video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 1px solid #222;
  transition: opacity 0.3s ease;
}

/* Auto-play muted preview on hover */
.edit-item:hover video {
  opacity: 0.9;
}

.edit-item:hover video[muted] {
  autoplay: true;
}

.edit-item p {
  margin: 10px 0;
  font-size: 1rem;
  color: #ccc;
}

/* Scroll Buttons */
.scroll-btn {
  background-color: rgba(255, 204, 0, 0.15);
  border: 2px solid #f5c400;
  color: #f5c400;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 10;
}

.scroll-btn:hover {
  background-color: #f5c400;
  color: #000;
  transform: scale(1.1);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
  border-top: 4px dashed #f3c623;
}

.contact h2 {
  font-size: 2.2rem;
  color: #f3c623;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.whatsapp-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 28px;
  background-color: #f3c623;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(243,198,35,0.4);
  animation: glowPulse 2s infinite ease-in-out;
  transition: all 0.3s ease;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(243,198,35,0.2), 0 0 20px rgba(243,198,35,0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(243,198,35,0.5), 0 0 45px rgba(243,198,35,0.8);
  }
}

.whatsapp-btn:hover {
  background-color: #ffe670;
  transform: scale(1.05);
}

.socials a img {
  width: 26px;
  margin: 0 10px;
  filter: invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #f3c623);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .edits-scroll {
    gap: 15px;
  }

  .contact-section {
    padding: 60px 20px;
  }
}
/* === Edits Slider === */
.edits-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.slide.active {
  display: flex;
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide video {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  border: 2px solid #f3c623;
  object-fit: cover;
  background-color: #111;
}

.slide p {
  margin-top: 10px;
  color: #ccc;
  font-size: 1rem;
}

/* Botões laterais */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 204, 0, 0.15);
  border: 2px solid #f3c623;
  color: #f3c623;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.nav-btn:hover {
  background: #f3c623;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev { left: -70px; }
.nav-btn.next { right: -70px; }

/* Bolinhas (indicadores) */
.dots-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #555;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #f3c623;
  box-shadow: 0 0 10px #f3c623;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .nav-btn.prev { left: 10px; }
  .nav-btn.next { right: 10px; }
}
/* === Custom Video Controls === */
.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  background: rgba(20, 20, 20, 0.6);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(243, 198, 35, 0.3);
  backdrop-filter: blur(4px);
}

.play-btn {
  background: none;
  color: #f3c623;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.play-btn:hover {
  color: #ffe670;
  transform: scale(1.1);
}

.progress-bar,
.volume-bar {
  -webkit-appearance: none;
  height: 5px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  background: #333;
}

.progress-bar {
  width: 60%;
}

.volume-bar {
  width: 15%;
}

.progress-bar::-webkit-slider-thumb,
.volume-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f3c623;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover,
.volume-bar::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
/* Isso garante que tanto vídeos locais quanto iframes do YouTube 
   tenham o formato vertical correto (9:16) */
.video video,
.video iframe { 
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16; /* Define a proporção vertical (Shorts) */
}
/* ===== GLOBAL SECTION DIVIDER ===== */
.section-divider-wrapper {
  width: 100%;
  border-top: 4px dashed #f3c623;
}

/* Container padrão */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 6% 90px;
}

/* ===== Horizontal Video Edits ===== */
.horizontal-edits h3 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 500;
  color: #f3c623;
  text-align: center;
}

.horizontal-videos {
  display: flex;
  justify-content: center;
}

.horizontal-video {
  width: 720px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.horizontal-video video,
.horizontal-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.horizontal-video p {
  font-size: 0.95rem;
  opacity: 0.75;
  text-align: center;
}
