/* ============================================
   Torneio FIFA — E-Sports & Soccer Theme
   Asthros Digital & UI/UX Pro Max
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Russo+One&display=swap');

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

/* --- Variáveis --- */
:root {
    --bg-primary: #0A0F12;      /* Escuro profundo (stadium night) */
    --bg-secondary: #0D161A;    /* Cor dos cards */
    --bg-glass: rgba(13, 22, 26, 0.75);
    
    /* E-Sports FIFA Theme: Neon Green & Electric Blue */
    --color-primary: #00FF66;       /* Verde Gramado Neon */
    --color-primary-dim: #10B981;   /* Verde mais fechado */
    --color-accent: #3B82F6;        /* Azul Electrico (Lembra EA Sports) */
    --color-accent-light: #60A5FA;
    
    --text-primary: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: rgba(16, 185, 129, 0.25);
    
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Chakra Petch', sans-serif;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Stadium Grass Stripes + Hexagon Glow */
    background-image: 
        repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 100px, transparent 100px, transparent 200px),
        radial-gradient(circle at 20% 40%, rgba(0, 255, 102, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

/* Pitch / Field Lines Overlay (movido para .hero-pitch-circle) */
body::before {
    display: none;
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
    z-index: 1000;
    background-size: 100% 2px;
    pointer-events: none;
}

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

/* --- Typografy --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: italic; /* Esport feel */
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* --- Header / Nav --- */
.header-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    background: rgba(10, 15, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    display: flex;
    align-items: center;
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: italic;
}

.nav-brand span.highlight {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.6);
}



/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.20;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
    /* Linhas verticais reforçadas sobre o vídeo */
    background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.5) 0px, rgba(0,0,0,0.5) 80px, transparent 80px, transparent 160px);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Esport Stadium Light Effect */
.hero-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-pitch-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border: 3px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1; /* Acima do vídeo, abaixo dos textos */
}

.hero-pitch-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(0, 255, 102, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.hero-title {
    font-size: clamp(60px, 10vw, 130px);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(3, 40, 56, 0.8), 0 0 30px rgba(0, 255, 102, 0.4);
    position: relative;
    display: inline-block;
}

.countdown {
    display: flex;
    gap: 16px;
    margin: 40px 0;
    justify-content: center;
}

.cd-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 8px;
    min-width: 90px;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
    border-bottom: 3px solid var(--color-primary); /* Sporty stripe */
}

.cd-num {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-primary);
    line-height: 1;
}

.cd-label {
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.2s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--color-primary);
    color: #0A0F12;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) skewX(-2deg);
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.6), inset 0 0 10px rgba(255,255,255,0.4);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), inset 0 0 20px rgba(59, 130, 246, 0.3);
    border-color: var(--color-accent-light);
    transform: translateY(-3px) skewX(-2deg);
}

/* --- Bento Grid / Cards --- */
.section-title {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; /* Sharper corners for games */
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    /* Subtilt tech-pattern */
    background-image: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--color-accent);
    opacity: 0.5;
    transition: all 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(59, 130, 246, 0.2);
    border-color: var(--border-color);
}

.bento-card:hover::before {
    width: 6px;
    background: var(--color-primary);
    opacity: 1;
}

/* Spans in Grid */
.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-4 { grid-column: span 4; }

@media (max-width: 900px) {
    .col-span-8, .col-span-6, .col-span-4 { grid-column: span 12; }
    .hero-actions { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* --- Prizes & Details --- */
.prize-val {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
    margin: 10px 0;
    font-style: italic;
}

.prize-gold .prize-val { color: #FBBF24; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
.prize-silver .prize-val { color: #E2E8F0; text-shadow: 0 0 20px rgba(226, 232, 240, 0.4); }
.prize-bronze .prize-val { color: #D97706; }

.prize-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 102, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Footer --- */
.footer-main {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    margin-top: 60px;
    background: rgba(10, 15, 18, 0.9);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

/* --- Utilities & Reveals --- */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.rv.v {
    opacity: 1;
    transform: translateY(0);
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

.icon-svg {
    stroke: var(--color-accent-light);
    width: 32px;
    height: 32px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

/* --- Reference UI (Formato/Regras) --- */
.format-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.bracket-box {
    background: rgba(13, 22, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bracket-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0;
}

.bracket-rounds {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
    padding-top: 10px;
}

.bracket-rounds.vertical-flow {
    flex-direction: column;
    justify-content: center;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.bracket-match-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bracket-round-label {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.bracket-match {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 12px;
    color: var(--text-primary);
    justify-content: center;
    transition: all 0.2s ease;
}

.bracket-match.hl {
    border-color: var(--color-accent-light);
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.3);
}

.bracket-match.gold-winner {
    border-color: #FBBF24;
    color: #000;
    background: #FBBF24;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.bracket-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    padding: 0 6px;
    flex-shrink: 0;
    font-weight: 700;
}

.rule-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-card-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(13, 22, 26, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.rule-card-row:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 255, 102, 0.1);
    transform: translateX(-4px);
}

.rule-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rule-icon-box svg {
    margin: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-accent-light);
    filter: none;
}

.rule-text-content h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.rule-text-content p {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* --- Inscrição (CTA) --- */
.reg-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.reg-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--color-accent-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.reg-label::before {
    content: ''; width: 24px; height: 1px; background: var(--color-accent-light);
}
.reg-title {
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.reg-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 40px;
}
.reg-price-currency { color: #FBBF24; font-family: var(--font-heading); font-size: 24px; }
.reg-price-value { color: #FBBF24; font-family: var(--font-heading); font-size: 72px; line-height: 1; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); margin: 0 4px; }
.reg-price-period { color: var(--text-muted); font-size: 14px; }

.reg-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.reg-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}
.reg-perk::before {
    content: '✓'; color: var(--color-accent-light); font-weight: bold;
}
.reg-texts p {
    color: var(--text-muted); font-size: 15px; margin-bottom: 20px;
}

.reg-card {
    background: rgba(13, 22, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.reg-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #00e5ff, #ff2d55);
}
.reg-card h3 { font-size: 26px; margin-bottom: 8px; }
.reg-card p.sub { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; font-family: var(--font-body); }
.wpp-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #25D366; color: #fff; padding: 18px 24px; border-radius: 8px;
    font-family: var(--font-heading); font-size: 18px; transition: transform 0.2s, box-shadow 0.2s;
    width: 100%; margin-bottom: 24px; text-transform: uppercase;
}
.wpp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
.wpp-btn svg { width: 24px; height: 24px; fill: #fff; }

.reg-card-div {
    display: flex; align-items: center; gap: 12px; color: var(--text-muted);
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px;
}
.reg-card-div::before, .reg-card-div::after { content:''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.reg-info-item {
    display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 16px; margin-bottom: 12px;
    font-size: 14px; color: var(--text-muted);
}
.reg-info-item svg { margin: 0; width: 18px; height: 18px; stroke: var(--color-accent-light); fill: none; flex-shrink: 0; }

.reg-alert {
    background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 6px; padding: 16px; text-align: center; font-size: 13px;
    color: #F43F5E; font-weight: 600; margin-top: 24px;
}

@media (max-width: 900px) {
    .format-layout { grid-template-columns: 1fr; }
    /* Making bracket visible on mobile */
    .bracket-box { display: flex; padding: 24px; }
    .reg-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Asthros Developed By Footer Widget --- */
#custom-footer-widget-wrapper {
  padding: 0;
  line-height: 1;
  margin-top: 10px;
}

#custom-footer-widget-wrapper .footer-developed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.6;
}

#custom-footer-widget-wrapper .asthros-logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  vertical-align: middle;
}

#custom-footer-widget-wrapper .asthros-logo {
  height: 14px;
  width: auto;
  display: block;
  /* Apply white mask for deep dark theme */
  filter: brightness(0) invert(1) opacity(0.8);
  transition: all 0.4s ease;
}

#custom-footer-widget-wrapper .asthros-logo-link:hover .asthros-logo {
  opacity: 1;
  /* Hover effect adjusted specifically with our theme's neon primary green */
  filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.4)) brightness(0) invert(1);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  #custom-footer-widget-wrapper .footer-developed {
    justify-content: center !important;
  }
}

/* --- Logos Sponsors --- */
.sponsor-logo {
    width: 320px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* Aplica a mesma cor/mascara branca transparente igual da logo da Asthros do rodapé */
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.4s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    /* Efeito de neon verde igual ao widget da Asthros */
    filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.4)) brightness(0) invert(1);
    transform: translateY(-2px);
}

.sponsor-text:hover {
    color: rgba(255,255,255,1) !important;
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.4);
    transform: translateY(-2px);
}

/* --- NOVO PADRÃO: BOTÃO GARANTIR VAGA --- */
.btn-garantir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: var(--color-primary);
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    color: #0A0F12 !important; /* Texto escuro */
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.25);
    transition: all 0.3s ease;
}

.btn-garantir:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
    filter: brightness(1.1);
}

.btn-garantir svg {
    width: 22px;
    height: 22px;
}

.btn-garantir span {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
.sponsors-wrapper {
    width: 100%;
    overflow: hidden;
}

.sponsors-track {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.clone {
    display: none !important;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 56px; /* Reduced from 96px */
        letter-spacing: -1px;
    }

    .hero-pitch-circle {
        width: 320px;
        height: 320px;
        top: -80px;
    }

    .hero-pitch-logo {
        font-size: 20px;
    }

    .countdown {
        gap: 12px;
        transform: scale(0.9);
    }
    
    .cd-num {
        font-size: 28px;
    }

    .section-title {
        font-size: 40px !important;
    }

    .bento-card {
        padding: 24px !important;
    }

    .reg-wrap {
        gap: 30px;
    }

    .reg-title {
        font-size: 40px;
    }

    .btn-garantir {
        font-size: 16px;
        padding: 16px 20px;
    }

    .btn-garantir svg {
        width: 18px;
        height: 18px;
    }

    /* Transform Sponsors into Infinite Scroll Marquee */
    .sponsors-wrapper {
        position: relative;
        width: 100vw;
        margin-left: -20px; /* Offset the generic container padding */
    }
    
    .sponsors-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        animation: marquee 12s linear infinite;
        padding-left: 0;
    }
    
    .clone {
        display: inline-flex !important;
    }
    img.clone {
        display: block !important;
    }

    .sponsor-logo, .sponsor-text {
        width: 250px !important;
        flex: 0 0 250px !important;
        max-width: none !important;
        font-size: 24px !important;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 20px)); } /* -50% shifts exactly half the track width, minus half of gap */
    }

    .hero-light {
        width: 100vw;
        height: 100vw;
    }

    /* Centralize Footer Elements */
    .footer-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 24px;
    }
    
    .footer-nav {
        justify-content: center !important;
        margin: 0 !important;
        flex-wrap: wrap;
        width: 100%;
    }

    #custom-footer-widget-wrapper {
        margin: 0 auto;
    }
    
    #custom-footer-widget-wrapper .footer-developed {
        justify-content: center !important;
    }

    /* Header Fixes */
    .nav-cta {
        display: none !important;
    }
    
    .nav-container {
        justify-content: center !important;
    }
}
