/* Global Styles */
:root {
  --primary-green: #00604b;
  --primary-gold: #fbbf24;
  /* Adjusted specifically for "Mantenha seus dados..." banner to match image */
  --banner-gold: #ffcc00;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --bg-light: #f9f9f9;
  /* --bg-auth: #fdfdf5; Light creamy background for bottom section */
  --bg-auth: #FFF0D8;
  /* Light creamy background for bottom section */

  --font-main: 'Montserrat', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Header */
.main-header {
  width: 100%;
}

.header-placeholder {
  width: 100%;
  /* Removed fixed height and placeholder styles to accommodate image */
}

.header-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

/* Typography & Sections */
h1,
h2,
h3 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.section {
  margin-bottom: var(--spacing-lg);
}

.subtitle {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--primary-green);
}

p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

/* Participation */
.participation-method {
  margin-bottom: var(--spacing-sm);
}

/* Banner */
.vip-banner {
  background-color: var(--banner-gold);
  color: #000;
  padding: var(--spacing-sm) var(--spacing-md);
  font-weight: 700;
  font-size: 0.9rem;
  margin: var(--spacing-md) 0;
  display: inline-block;
  /* Or block depending on design preferences */
  width: 100%;
  /* border-radius: 4px; */
  /* Image shows sharp or slightly rounded, kept simple */
}

/* List Styles */
ul {
  list-style: none;
  padding-left: var(--spacing-xs);
}

.prize-list li,
.rules-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.prize-list li::before,
.rules-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ccc;
  /* Subtle bullet color */
  font-weight: bold;
}

.date {
  font-weight: 600;
  color: var(--text-dark);
}

/* Auth Section */
.auth-wrapper {
  background-color: var(--bg-auth);
  width: 100%;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.auth-section {
  padding: 0;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.auth-section h3 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.auth-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.qr-code-placeholder {
  margin-bottom: var(--spacing-md);
  /* Removed placeholder background styles */
}

.qr-code-placeholder img {
  width: 250px;
  height: auto;
  display: block;
}

.btn-verify {
  background-color: #f1f2f4;
  border: 1px solid #d1d5db;
  padding: 0.8rem 2rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-verify:hover {
  background-color: #e5e7eb;
}

.verification-code {
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--primary-green);
}

.verification-code strong {
  color: var(--primary-green);
  font-weight: 700;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: var(--spacing-md);
  padding-top: 0;
}

.main-footer p {
  font-weight: 700;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: var(--spacing-xs);
}

.btn-download {
  color: #5e17eb;
  /* Vibrant purple */
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
  background-color: var(--bg-auth);
  /* Using the cream color */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-item {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-label-2025 {
  text-decoration: none;
  color: #333;
}

.arrow-down {
  color: #ff3333;
  /* Red arrow */
  font-size: 1rem;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-auth);
  /* Cream background */
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  z-index: 100;
  list-style: none;
  margin-top: 5px;
  /* border-radius: 0 0 4px 4px; */
}

.dropdown.show .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li::before {
  content: none;
  /* Remove duplicate bullets from global ul styles */
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}



.dropdown-menu a:hover {
  background-color: #f7d896;
  /* Highlight color on hover */
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}

#esgotado {
  color: #ed0509;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
}

/* Mobile Responsiveness adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 1.2rem;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
}
