/* 
  MAX FORCE - Design System & Global Styles
  Project: Landing Page Max Force
*/

:root {
  /* Marca */
  --mf-red:        #C7392D;
  --mf-red-dark:   #681D16;
  --mf-red-glow:   rgba(199, 57, 45, 0.2);
  --mf-dark:       #363636;
  --mf-black:      #1A1A1A;
  --mf-light:      #FAFAFA;

  /* UI */
  --mf-gray:       #888888;
  --mf-gray-light: #D0D0D0;
  --mf-gray-bg:    #F0F0F0;
  --mf-white:      #FFFFFF;

  /* Overlays */
  --mf-overlay:       rgba(26, 26, 26, 0.75);
  --mf-overlay-heavy: rgba(26, 26, 26, 0.88);
  --mf-overlay-red:   rgba(104, 29, 22, 0.6);

  /* Fontes */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --container:      1280px;
  --pad-x:          clamp(20px, 5vw, 80px);
  --section-y:      clamp(80px, 10vw, 140px);
  --section-y-sm:   clamp(48px, 6vw, 80px);
  --gap-sm:         16px;
  --gap-md:         32px;
  --gap-lg:         56px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--mf-black);
  color: var(--mf-light);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--mf-black); }
::-webkit-scrollbar-thumb { background: var(--mf-red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mf-red-dark); }

/* Selection */
::selection      { background: var(--mf-red); color: var(--mf-white); }
::-moz-selection { background: var(--mf-red); color: var(--mf-white); }

/* Typography */
h1, h2, h3, .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  font-weight: 900;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
}

.label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--mf-red);
  margin-bottom: 12px;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Sections */
section {
  padding: var(--section-y) 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 72px;
}

/* Utility */
.bg-dark { background-color: var(--mf-dark); color: var(--mf-light); }
.bg-black { background-color: var(--mf-black); color: var(--mf-light); }
.bg-light { background-color: var(--mf-light); color: var(--mf-dark); }
.text-white { color: var(--mf-white); }
.text-red { color: var(--mf-red); }
.text-gray { color: var(--mf-gray); }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
  height: 64px;
}

.navbar .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-cta .btn-small {
  padding: 10px 22px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--mf-light);
  text-decoration: none;
  letter-spacing: 0.12em;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--mf-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mf-red);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Logic */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--mf-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 100;
    display: none; /* Definitively hide to prevent scroll leakage */
    pointer-events: none;
    opacity: 0;
    z-index: -10; 
    transition: opacity 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    pointer-events: all;
    opacity: 1;
    z-index: 2000;
  }

  .nav-link {
    font-size: 24px !important;
    letter-spacing: 0.1em;
    opacity: 1 !important;
  }
}

.navbar-logo img {
  height: clamp(36px, 4vw, 44px);
  width: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar-cta .btn-small {
  padding: 10px 22px;
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.btn-primary {
  background: var(--mf-red);
  color: var(--mf-white);
  border-color: var(--mf-red);
}

.btn-primary:hover {
  background: var(--mf-red-dark);
  border-color: var(--mf-red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--mf-white);
  border-color: var(--mf-white);
}

.btn-outline:hover {
  background: var(--mf-white);
  color: var(--mf-black);
}

.btn-outline-red {
  background: transparent;
  color: var(--mf-red);
  border-color: var(--mf-red);
}

.btn-outline-red:hover {
  background: var(--mf-red);
  color: var(--mf-white);
}

[data-lucide] {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.wa-official-icon {
  width: 32px;
  height: 32px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2500; /* Definitively on top of everything */
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--mf-white);
  margin: 6px 0;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--mf-black);
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mf-overlay-heavy);
}

.hero-watermark {
  position: absolute;
  right: 5%;
  bottom: 12%;
  width: 42vw;
  opacity: 0.08;
  z-index: 0;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero .container {
    max-width: 100%;
    padding: 0 10vw 0 clamp(40px, 8vw, 120px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: left;
}

.hero-title span {
  display: block;
}

.hero-description {
  margin-top: 16px;
  max-width: 520px;
  color: rgba(250, 250, 250, 0.8);
  font-size: 18px;
}

.hero-btns {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    max-width: 280px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--mf-red), transparent);
}

.scroll-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
  padding: 0;
  border: none;
}

.about-img-container:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 0 var(--mf-red);
}

.about-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: block;
}

.about-content {
  position: relative;
}

.about-content h2, .about-content p, .about-content .about-quote, .about-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-content.visible h2, .about-content.visible p, .about-content.visible .about-quote, .about-content.visible .btn {
  opacity: 1;
  transform: translateY(0);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--mf-red);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--mf-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .about-badge {
    bottom: 16px;
    left: 16px;
  }
  .about-img {
    box-shadow: 12px 12px 0 var(--mf-red);
  }
}

.about-quote {
  border-left: 3px solid var(--mf-red);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mf-dark);
}

/* Differentials Section */
.diff-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--mf-gray) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.12;
  z-index: 0;
}

.diff-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--mf-red) 1.8px, transparent 1.8px);
  background-size: 40px 40px;
  opacity: 1;
  z-index: 1;
  -webkit-mask-image: radial-gradient(
    250px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    black 0%,
    transparent 100%
  );
  mask-image: radial-gradient(
    250px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    black 0%,
    transparent 100%
  );
  transition: opacity 0.3s;
}

.bg-dark:hover .diff-bg-glow {
  opacity: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 10;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .diff-grid { grid-template-columns: 1fr; }
}

.diff-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(199, 57, 45, 0.3);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.diff-card:hover {
  background: rgba(199, 57, 45, 0.05);
  border-color: var(--mf-red);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.diff-icon {
  font-size: 52px;
  color: var(--mf-red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.diff-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.5px;
}

.diff-card h3 {
  margin-bottom: 16px;
  color: var(--mf-white);
}

.diff-card p {
  color: var(--mf-gray);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

.span-2 {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .span-2 { grid-column: span 1; }
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--mf-dark);
  height: 340px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    transparent 100%
  );
  transition: background 0.35s ease;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(
    to top,
    rgba(104, 29, 22, 0.9) 0%,
    rgba(199, 57, 45, 0.25) 55%,
    transparent 100%
  );
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.product-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 26px);
  text-transform: uppercase;
  color: var(--mf-white);
  line-height: 1.1;
}

.product-card-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(250, 250, 250, 0.7);
  margin-top: 4px;
  transition: opacity 0.3s;
}

.product-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--mf-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--mf-white);
}

.product-card:hover .product-card-arrow {
  opacity: 1;
  transform: scale(1);
}

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

/* Catalog Banner */
.catalog-banner {
  background: var(--mf-black);
  color: var(--mf-white);
  padding: var(--section-y) 0;
  overflow: hidden;
}

.catalog-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.catalog-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(104, 29, 22, 0.8) 0%,
    rgba(26, 26, 26, 0.85) 60%
  );
}

.catalog-container {
  position: relative;
  z-index: 2;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between;
  gap: 64px;
}

.catalog-content {
    flex: 0 0 52%;
    max-width: 52%;
    text-align: left;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 991px) {
  .catalog-container { 
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .catalog-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
  }
}

.catalog-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start !important;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

.catalog-mockup:hover {
  transform: translateY(-15px) scale(1.04);
}

.mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.mockup-logo-float {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.catalog-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.catalog-list li svg {
  color: var(--mf-red);
}

.catalog-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.catalog-mockup {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
}

@media (max-width: 1024px) {
  .catalog-mockup { display: none; }
}

/* Numbers Section */
.numbers {
  background: var(--mf-dark);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.numbers-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.number-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .number-item {
    min-width: calc(50% - 20px);
  }
}

.number-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 80px);
  color: var(--mf-white);
  line-height: 1;
}

.number-val span {
  color: var(--mf-red);
}

.number-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mf-gray);
  margin-top: 8px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-container {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--mf-gray-light);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--mf-white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

select.form-input option {
  background-color: var(--mf-black);
  color: var(--mf-white);
  padding: 12px;
}

.form-input:focus {
  outline: none;
  border-color: var(--mf-red);
  box-shadow: 0 0 0 3px var(--mf-red-glow);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mf-gray);
  margin-bottom: 32px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.channel-card:hover {
  transform: translateY(-3px);
}

.channel-card-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.channel-card-wa:hover { background: rgba(37, 211, 102, 0.18); }

.channel-card-ig {
  background: rgba(199, 57, 45, 0.1);
  border: 1px solid rgba(199, 57, 45, 0.25);
}
.channel-card-ig:hover { background: rgba(199, 57, 45, 0.18); }

.channel-card-mail {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.channel-card-mail:hover { background: rgba(255,255,255,0.08); }

.channel-icon {
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon i {
  font-size: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon .fa-whatsapp, 
.channel-icon .fa-instagram {
  font-size: 42px;
}

.channel-card-wa .channel-icon {
    color: #25D366 !important;
}

.channel-card-ig .channel-icon {
    color: var(--mf-red) !important;
}

.channel-info h3 {
  font-size: 18px;
  color: var(--mf-white);
}

.channel-info span {
  display: block;
}

.channel-info .sub {
  font-size: 14px;
  color: var(--mf-gray);
}

.channel-info .val {
  font-size: 16px;
  font-weight: 600;
  color: var(--mf-white);
  margin-top: 2px;
}

/* Footer */
.footer {
  background: var(--mf-red-dark);
  padding: 80px 0 40px;
  color: var(--mf-white);
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
  color: var(--mf-white) !important;
  opacity: 0.9;
}

.footer-tagline, .footer-nav a, .footer-contact-item {
  color: rgba(255,255,255,0.7) !important;
}

.footer-nav a:hover, .footer-contact-item:hover {
  color: var(--mf-white) !important;
}

.footer-divider {
  border-top-color: rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--mf-gray);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 991px) {
  .social-links { justify-content: center; }
}

.social-link {
  color: var(--mf-white);
  font-size: 24px;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--mf-red);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--mf-red);
  margin-bottom: 24px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--mf-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--mf-white);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mf-gray);
  font-size: 14px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item i {
  font-size: 18px;
  width: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .footer-contact-item { justify-content: center; }
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 32px 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: rgba(250,250,250,0.6);
  text-align: center;
}

/* Animations - Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }
.stagger > *:nth-child(7) { transition-delay: 0.7s; }
.stagger > *:nth-child(8) { transition-delay: 0.8s; }
.stagger > *:nth-child(9) { transition-delay: 0.9s; }

/* Modal System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--mf-dark);
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(40px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--mf-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1010;
}

.modal-close:hover {
  background: var(--mf-red);
  transform: rotate(90deg);
}

.modal-header {
  padding: 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mf-white);
  line-height: 1;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--mf-gray);
  max-width: 600px;
  font-size: 16px;
}

.modal-body {
  padding: 40px 48px;
}

.modal-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .modal-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-photo {
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.modal-photo:hover img {
  transform: scale(1.1);
}
