/* ============================================
   BLACK FRIDAY LANDING PAGE - STYLES
   ============================================ */

/* Reset e Estilos Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes glitter {
  0%, 100% {
    filter: brightness(1.1) contrast(1.1);
  }
  50% {
    filter: brightness(1.3) contrast(1.2);
  }
}

@keyframes shine {
  0%, 100% {
    opacity: 0.7;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* ============================================
   CLASSES UTILITÁRIAS
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.glitter-title {
  font-weight: 700;
  letter-spacing: 2px;
  background: url('../assets/img/glitter-texture.jpg') center/cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: glitter 3s ease-in-out infinite;
}

.shine-effect {
  animation: shine 2s ease-in-out infinite;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-gold {
  background: url('../assets/img/glitter-texture.jpg') center/cover;
  animation: glitter 3s ease-in-out infinite;
}

.btn-gold:hover {
  background-color: #e8c547;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  border: 2px solid #d4af37;
  color: #d4af37;
  background-color: transparent;
  padding: 10px 28px;
}

.btn-outline-gold:hover {
  background-color: #d4af37;
  color: #0a0a0a;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-logo span {
  font-weight: 700;
  font-size: 1.125rem;
  display: none;
}

@media (min-width: 640px) {
  .nav-logo span {
    display: inline;
  }
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  background-color: #0a0a0a;
  border-top: 1px solid #333;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: #d4af37;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background-color: #d4af37;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(96px);
  opacity: 0.1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 160px;
  right: 40px;
  width: 288px;
  height: 288px;
  background-color: #d4af37;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(96px);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d3d3d3;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  color: #a8a8a8;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  max-width: 512px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.hero-image2 {
  text-align: center;
}

.hero-image2 img {
  max-width: 100%;
  width: 100%;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  padding: 5rem 0;
  background-color: rgba(31, 31, 31, 0.5);
}

.problem-content {
  max-width: 768px;
  margin: 0 auto;
}

.problem-content p {
  font-size: 1.125rem;
  color: #d3d3d3;
  margin-bottom: 1.5rem;
}

.problem-highlight {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ============================================
   WHAT YOU'LL FIND SECTION
   ============================================ */

.what-find {
  padding: 5rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  border-color: #d4af37;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.card p {
  color: #a8a8a8;
  font-size: 0.95rem;
}

/* ============================================
   VIP SECTION
   ============================================ */

.vip {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(31, 31, 31, 0.5), #000000);
}

.vip-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.vip-intro p {
  font-size: 1.125rem;
  color: #d3d3d3;
  max-width: 768px;
  margin: 0 auto 2rem;
}

.vip-subtitle {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #fbbf24;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-item {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(31, 31, 31, 0.3);
  transition: all 0.3s ease;
}

.resource-item:hover {
  background-color: rgba(31, 31, 31, 0.6);
}

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.resource-item h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fbbf24;
  font-size: 0.875rem;
}

.resource-item p {
  font-size: 0.75rem;
  color: #a8a8a8;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages {
  padding: 5rem 0;
}

.packages-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-subtitle {
  font-size: 1.25rem;
  color: #a8a8a8;
  margin-bottom: 3rem;
}

.packages-box {
  max-width: 896px;
  margin: 0 auto;
  background-color: rgba(31, 31, 31, 0.5);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.packages-box p {
  color: #d3d3d3;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.packages-highlight {
  text-align: center;
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================
   SATISFACTION SECTION
   ============================================ */

.satisfaction {
  padding: 5rem 0;
  background: linear-gradient(to right, #000000, rgba(31, 31, 31, 0.5));
}

.satisfaction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .satisfaction-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.satisfaction-content h2 {
  margin-bottom: 1.5rem;
}

.satisfaction-content p {
  font-size: 1.25rem;
  color: #d3d3d3;
  margin-bottom: 1.5rem;
}

.satisfaction-highlight {
  color: #fbbf24;
  font-weight: 700;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 1.5rem;
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text h4 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.benefit-text p {
  font-size: 0.95rem;
  color: #a8a8a8;
  margin: 0;
}

.satisfaction-image {
  display: flex;
  justify-content: center;
}

.satisfaction-circle {
  position: relative;
  width: 256px;
  height: 256px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.satisfaction-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.satisfaction-circle-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.satisfaction-circle-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: #0a0a0a;
}

.satisfaction-circle-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 384px;
  height: 384px;
  background-color: #d4af37;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(96px);
  opacity: 0.1;
  transform: translateX(-50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #fbbf24;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #d3d3d3;
  margin-bottom: 1rem;
}

.cta-highlight {
  font-size: 1.125rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-button {
  margin-bottom: 2rem;
}

.cta-footer {
  font-size: 0.875rem;
  color: #808080;
  max-width: 512px;
  margin: 0 auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 5rem 0;
  background-color: rgba(31, 31, 31, 0.5);
  border-top: 1px solid #333;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  margin-bottom: 1rem;
}

.contact-content p {
  color: #a8a8a8;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #0a0a0a;
  border-top: 1px solid #333;
  padding: 2rem 0;
  text-align: center;
}

footer p {
  color: #808080;
  margin-bottom: 0.5rem;
}

footer .highlight {
  color: #fbbf24;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .vip-subtitle {
    font-size: 1.5rem;
  }

  .satisfaction-grid {
    text-align: center;
  }

  .benefit-item {
    justify-content: center;
  }

  .satisfaction-circle {
    width: 200px;
    height: 200px;
  }

  .satisfaction-circle-number {
    font-size: 3rem;
  }
}
