:root {
  --color-blue: #003366;
  --color-blue-dark: #001f3d;
  --color-blue-light: #f0f7ff;
  --color-red: #b91c1c;
  --color-red-dark: #7f1d1d;
  --color-red-light: #fee2e2;
  --color-white: #ffffff;
  --color-gray-light: #f3f4f6;
  --color-gray: #e5e7eb;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --font-sans: 'Inter', sans-serif;
  --transition-normal: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Force base font size to 16px so rem calculations aren't broken by WordPress themes */
html {
  font-size: 16px !important;
}


::selection {
  background-color: rgba(0, 51, 102, 0.2);
  color: var(--color-blue-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

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

.text-red {
  color: var(--color-red);
}

.text-blue {
  color: var(--color-blue);
}

.text-white {
  color: var(--color-white);
}

.text-red-light {
  color: var(--color-red-light);
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-gray {
  background-color: var(--color-gray-light);
}

.bg-blue-theme {
  background-color: var(--color-blue);
}

.bg-red-theme {
  background-color: var(--color-red);
}

.bg-gray-light {
  background-color: rgba(255, 255, 255, 0.95);
}

.opacity-80 {
  opacity: 0.8;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

.uppercase {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* Scroll Anim Utils - Opacity 1 fallback when JS is disabled */
.scroll-animate-up {
  opacity: 1;
  /* Fallback for if JS fails */
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate-fade {
  opacity: 1;
}

/* We override to start them out hidden only if we add a JS-enabled class to body, but let's just make it simple: 
   Wait, if we set opacity 1 here, intersections don't "reveal" it. Let's do opacity 0 initially but ensure the JS works!
   Actually, a common fix is to just do this: */
.js-enabled .scroll-animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-enabled .scroll-animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-enabled .scroll-animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.js-enabled .scroll-animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.js-enabled .scroll-animate-fade.is-visible {
  opacity: 1;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Header */
.header {
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .header-container {
    justify-content: center;
  }
}

.logo {
  height: 3.75rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo {
    height: 5rem;
  }
}

.mobile-menu-btn {
  color: var(--color-red);
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
}

.icon-menu {
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-content {
  background-color: var(--color-red);
  color: var(--color-white);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .mobile-menu-content {
    display: block !important;
  }
}

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

.main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  gap: 1rem;
}

@media (min-width: 768px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0.75rem 0;
  }
}

.nav-links a {
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-red-light);
}

@media (min-width: 768px) {
  .nav-links a {
    padding: 0;
  }
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-actions {
    flex-direction: row;
    gap: 1rem;
    padding-bottom: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--color-white);
  transition: var(--transition-normal);
  text-align: center;
  font-weight: 700;
  gap: 0.5rem;
}

.btn-blue {
  background-color: var(--color-blue);
}

.btn-blue:hover {
  background-color: var(--color-blue-dark);
}

.btn-red-dark {
  background-color: var(--color-red-dark);
}

.btn-red-dark:hover {
  background-color: #450a0a;
}

.btn-primary {
  background-color: var(--color-red);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1.125rem;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-lg);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Hero */
.hero-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
}

.hero-img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Typography & Sections */
.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-blue-dark);
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Mecanica Steps */
.steps-grid {
  display: grid !important;
  gap: 3rem;
  max-width: 72rem;
  margin: 2rem auto 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 6rem;
  }
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px -5px rgba(185, 28, 28, 0.05);
  position: relative;
  border-bottom: 4px solid var(--color-red);
  transition: var(--transition-normal);
}

.step-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.js-enabled .scroll-animate-up.step-card.is-visible:hover {
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--color-white);
  color: var(--color-red);
  border: 2px solid var(--color-red);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 6.5rem;
  height: 6.5rem;
  margin: 1.5rem auto;
  background: var(--color-blue-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  background: var(--color-white);
  border-color: var(--color-blue-light);
}

.step-icon i {
  width: 3rem;
  height: 3rem;
  color: var(--color-blue-dark);
}

@media (max-width: 768px) {
  .step-icon {
    display: none;
  }
  .step-card {
    padding: 1.5rem 1rem;
  }
}

.step-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-blue-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-desc {
  color: rgba(0, 51, 102, 0.8);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Prizes Grid */
.prizes-grid {
  display: grid !important;
  gap: 1.5rem;
  max-width: 56rem;
}

@media (min-width: 768px) {
  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prize-card {
  border-radius: var(--radius-3xl);
  padding: 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.prize-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
  filter: brightness(1.1);
}

.js-enabled .scroll-animate-scale.prize-card.is-visible:hover {
  transform: translateY(-8px) scale(1);
  filter: brightness(1.1);
}

.prize-weekly {
  background-color: var(--color-blue);
}

.prize-final {
  background-color: var(--color-red);
}

.prize-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.prize-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--color-white);
}

.prize-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: var(--color-white);
}

.prize-desc {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Brands Section */
.marcas-section {
  position: relative;
  overflow: hidden;
}

.marcas-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 30px 30px;
}

.brands-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.brand-card:hover {
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-blue);
  transform: scale(1.05);
}

.js-enabled .scroll-animate-up.brand-card.is-visible:hover {
  transform: scale(1.05);
}

.brand-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
  transform: scale(1.1);
}

.regulamento-text {
  color: #facc15;
  font-weight: 900;
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.regulamento-text i {
  fill: #facc15;
  color: #facc15;
  width: 1.75rem;
  height: 1.75rem;
  filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.3));
}

/* Winners */
.winners-container {
  max-width: 56rem;
  margin: 0 auto;
}

.winners-list {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid rgba(0, 74, 153, 0.1);
}

.winner-item {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 74, 153, 0.1);
  transition: background-color 0.2s;
}

.winner-item:last-child {
  border-bottom: none;
}

.winner-item:hover {
  background-color: var(--color-red-light);
}

@media (min-width: 768px) {
  .winner-item {
    flex-direction: row;
    align-items: center;
  }
}

.winner-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .winner-info {
    margin-bottom: 0;
  }
}

.winner-avatar {
  width: 3rem;
  height: 3rem;
  background: #fee2e2;
  color: var(--color-red);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
}

.winner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.winner-location {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.winner-location i {
  width: 0.75rem;
  height: 0.75rem;
}

.winner-prize {
  background: rgba(0, 51, 102, 0.1);
  color: var(--color-blue-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.winner-prize i {
  width: 1rem;
  height: 1rem;
}

/* App Download */
.app-banner {
  background: var(--color-blue);
  border-radius: 3rem;
  padding: 2rem;
  color: var(--color-white);
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse; /* Stack image above content on mobile */
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .app-banner {
    padding: 4rem;
    flex-direction: row;
  }
}

.app-banner-bg1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-right: -5rem;
  margin-top: -5rem;
  filter: blur(2rem);
}

.app-banner-bg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-left: -2.5rem;
  margin-bottom: -2.5rem;
  filter: blur(1rem);
}

.app-content {
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .app-content {
    width: 50%;
  }
}

.app-title {
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .app-title {
    font-size: 3rem;
  }
}

.app-steps {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  border-left: 4px solid var(--color-white);
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .app-steps {
    font-size: 1.25rem;
  }
}

.app-desc {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: 1;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .app-buttons {
    flex-direction: row;
  }
}

.btn-store {
  background: #000000;
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.875rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-store:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-store i {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.btn-store:active {
  transform: scale(0.95);
}

.store-text {
  text-align: left;
  line-height: 1.25;
}

.store-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 2px;
}

.store-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.app-qr-codes {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: none;
}

@media (min-width: 768px) {
  .app-qr-codes {
    display: flex;
  }
}

.qr-item {
  background: var(--color-white);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 180px;
  flex-shrink: 0;
}

.qr-item img {
  width: 130px;
  height: 130px;
  display: block;
}

.qr-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  text-align: center;
  display: block;
}

.app-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .app-banner {
    flex-direction: row;
    gap: 3rem;
    padding: 4rem;
  }

  .app-visual {
    position: absolute;
    right: 2rem;
    top: 2rem;
    bottom: 2rem;
    width: 45%;
    max-width: 500px;
    justify-content: flex-end;
  }
}

.app-banner-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.8s ease;
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  .app-banner-img {
    height: 100%;
    max-height: none;
    border-radius: 2.5rem;
  }
}

.app-banner:hover .app-banner-img {
  transform: scale(1.05);
}

.phone-logo {
  width: 4rem;
  height: 4rem;
  background: var(--color-white);
  border-radius: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-logo span {
  color: var(--color-blue);
  font-weight: 900;
  font-size: 1.5rem;
}

.phone-title {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.phone-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.phone-card {
  background: var(--color-white);
  width: 100%;
  border-radius: 1rem;
  padding: 1rem;
  text-align: left;
}

.card-label {
  font-size: 0.75rem;
  color: var(--color-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.card-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 0.5rem;
  background: rgba(0, 51, 102, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-red);
  width: 75%;
}

.card-hint {
  font-size: 0.75rem;
  color: rgba(0, 51, 102, 0.6);
  margin-top: 0.5rem;
}

/* Sorteio Final Carousel */
.sorteio-final-section {
  overflow: hidden;
}

.semanais-bg,
.sorteio-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  background-color: #000000;
  pointer-events: none;
}

.semanais-bg {
  background-image: url('https://picsum.photos/seed/party/1920/1080');
}

.sorteio-bg {
  background-image: url('https://picsum.photos/seed/confetti/1920/1080');
}

.trophy-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
}

.carousel-wrapper {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  width: calc(100% - 4rem) !important;
}

@media (min-width: 768px) {
  .carousel-wrapper {
    width: 100% !important;
  }
}

.carousel-container {
  border-radius: 1.5rem;
  border: 4px solid var(--color-white);
  overflow: hidden;
  background: var(--color-white);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-blue-dark);
  background: var(--color-white);
}

@media (min-width: 768px) {
  .carousel-content {
    flex-direction: row;
    align-items: stretch;
  }
}

.carousel-img {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .carousel-img {
    width: 50%;
    height: auto;
    min-height: 24rem;
  }
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-info {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

@media (min-width: 768px) {
  .carousel-info {
    width: 50%;
    padding: 4rem 3rem;
  }
}

.carousel-info i {
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
}

.carousel-info h3 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-blue-dark);
}

@media (min-width: 768px) {
  .carousel-info h3 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.carousel-info p {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.5;
  color: var(--color-blue-dark);
}

@media (min-width: 768px) {
  .carousel-info p {
    font-size: 1.25rem;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 0.9rem !important; /* Increased by ~5px */
  border-radius: var(--radius-full);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.carousel-btn:hover {
  background: var(--color-blue-light);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: -1.75rem !important;
}

.next-btn {
  right: -1.75rem !important;
}

@media (min-width: 768px) {
  .prev-btn {
    left: -2.25rem !important;
  }

  .next-btn {
    right: -2.25rem !important;
  }
}

.carousel-footer-bar {
  display: flex !important;
  flex-direction: column-reverse !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  margin: 1.5rem auto 0 auto !important;
  width: 100% !important;
  max-width: 48rem !important;
  gap: 1.5rem !important;
}

.carousel-indicators {
  position: static !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  gap: 0.75rem;
  margin: 0 !important;
  width: 100% !important;
  clear: none !important;
}

.carousel-action-btn {
  display: block !important;
  text-align: center !important;
  margin: 0 !important;
  clear: none !important;
}

.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-indicator.active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Footer */
.footer-primary {
  background: var(--color-white);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 51, 102, 0.1);
  color: var(--color-blue-dark);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-col-right {
    grid-column-start: 3;
  }
}

.footer-heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--color-red);
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a:hover {
  color: var(--color-red);
}

.footer-secondary {
  background: var(--color-red);
  padding: 2rem 0;
  color: var(--color-white);
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row;
  }
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-box {
  background: var(--color-white);
  padding: 0.5rem;
  border-radius: var(--radius-full);
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  display: flex;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-socials i {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer-links-inline {
    justify-content: flex-end;
  }
}

.footer-links-inline a:hover {
  color: var(--color-gray-light);
}

.footer-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 5;
}

.modal-content {
  background: var(--color-white);
  color: var(--color-blue-dark);
  width: 100%;
  max-width: 48rem;
  max-height: 80vh;
  border-radius: 1.5rem;
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-normal);
}

.modal-overlay.is-open .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 74, 153, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-white);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-red);
  text-transform: uppercase;
}

.btn-close {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-blue-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-dark);
  transition: var(--transition-normal);
}

.btn-close:hover {
  background: var(--color-red-light);
  color: var(--color-red);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body h4 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modal-action-box {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--color-blue-light);
  border-radius: 0.75rem;
  text-align: center;
}

.modal-action-box p {
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Modal Enhancements */
.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 51, 102, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  background: var(--color-white);
}

@media (min-width: 640px) {
  .modal-footer {
    flex-direction: row;
  }
}

.btn-secondary {
  background-color: var(--color-gray-light);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: var(--transition-normal);
  border: 1px solid var(--color-gray);
}

.btn-secondary:hover {
  background-color: var(--color-gray);
  transform: translateY(-2px);
}

.pdf-container {
  width: 100%;
  height: 60vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray);
  background: var(--color-gray-light);
}

.pdf-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.coming-soon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--color-blue-dark);
}

.coming-soon-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-red);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.coming-soon-text {
  font-size: 1.125rem;
  opacity: 0.7;
}

/* Mobile scrollbar hide */
@media (max-width: 768px) {
  *::-webkit-scrollbar {
    display: none;
  }

  * {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}