/* Variables & Theme Setup */
:root {
  --bg-dark: #121110;
  --bg-card: #1C1A18;
  --color-sand: #D8CBB5;
  --color-sand-light: #EAE3D2;
  --color-red: #A00D1E;
  --color-red-hover: #C41227;
  --color-orange-tag: #F26522;
  --text-light: #FFFFFF;
  --text-muted: #B3B0A8;
  --font-title: 'Bebas Neue', display, sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-fast: 0.3s ease;
}

/* Reset Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Classificação Indicativa Badge */
.age-badge {
  position: fixed;
  top: 18px;
  left: 18px;
  background-color: var(--color-orange-tag);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
}

.hero-picture {
  width: 100%;
  display: block;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 85vh;
  object-fit: cover;
  object-position: top center;
}

.cta-banner-bar {
  background: linear-gradient(180deg, rgba(18,17,16,0.85) 0%, rgba(18,17,16,1) 100%);
  width: 100%;
  padding: 35px 20px 45px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(216, 203, 181, 0.1);
}

.slogan {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 25px;
}

.slogan span {
  color: var(--text-light);
  border-bottom: 2px solid var(--color-red);
}

/* Button UI */
.btn-primary {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 45px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(160, 13, 30, 0.4);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-primary:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 18, 39, 0.7);
}

/* Main Layout & Sections */
.section {
  padding: 80px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  letter-spacing: 4px;
  color: var(--color-sand);
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: var(--color-red);
}

/* Synopsis Styling */
.synopsis-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 300;
  text-align: justify;
}

.synopsis-content strong {
  color: var(--color-sand-light);
  font-weight: 600;
}

.quote-box {
  margin: 40px 0;
  padding: 25px 30px;
  background-color: var(--bg-card);
  border-left: 4px solid var(--color-red);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-sand);
  border-radius: 0 8px 8px 0;
}

/* Service Card Container */
.service-container {
  background-color: var(--bg-card);
  padding: 50px 35px;
  border-radius: 12px;
  border: 1px solid rgba(216, 203, 181, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.detail-card {
  background-color: rgba(0,0,0,0.3);
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition-fast);
}

.detail-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.detail-card h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-sand);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.detail-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.detail-card strong {
  color: var(--text-light);
}

.cta-center {
  text-align: center;
  margin-top: 45px;
}

/* Footer & Sponsors */
footer {
  background-color: #0A0A09;
  padding: 50px 20px 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.sponsors-wrapper {
  background-color: var(--color-sand);
  color: #121110;
  padding: 25px 20px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto 35px auto;
}

.sponsors-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.sponsors-list {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.8;
  color: #2b2825;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Mobile Sticky Button */
.mobile-sticky-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-red);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
  transition: transform var(--transition-fast);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .slogan {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-container {
    padding: 35px 20px;
  }

  .mobile-sticky-btn {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}
