/* ==========================================================================
   GuaroKID Kids League - Distribution Landing Page
   Palette Oficial: Navy #052038 | Teal #1E838B | Silver #CFD2D3 | Gold #EEB444
   ========================================================================== */

:root {
  --bg-main:          #052038;
  --bg-darker:        #031526;
  --bg-card:          rgba(7, 48, 79, 0.75);
  --bg-card-hover:    rgba(10, 61, 96, 0.90);
  --border-card:      rgba(30, 131, 139, 0.20);
  --border-card-hover:rgba(30, 131, 139, 0.55);

  --color-teal:       #1E838B;
  --color-teal-dim:   #167078;
  --color-silver:     #CFD2D3;
  --color-gold:       #EEB444;
  --color-gold-dim:   #D4892A;
  --color-live:       #FF3B30;
  --color-text-main:  #FFFFFF;
  --color-text-muted: #8EA8BB;
  --color-text-sub:   #CFD2D3;

  --font-main:    'Montserrat', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--color-text-main);
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Visual Effects */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.bg-glow-top {
  top: -80px;
  left: 25%;
  width: 550px;
  height: 450px;
  background: radial-gradient(circle, #1E838B 0%, rgba(5, 32, 56, 0) 70%);
}

.bg-glow-bottom {
  bottom: 25%;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #07304F 0%, rgba(0, 0, 0, 0) 70%);
}

.field-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(30, 131, 139, 0.04) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography & Utilities */
.gradient-text {
  background: linear-gradient(135deg, #EEB444 0%, #1E838B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal   { color: var(--color-teal); }
.text-silver { color: var(--color-silver); }
.text-gold   { color: var(--color-gold); }
.text-cyan   { color: var(--color-teal); }
.text-green  { color: var(--color-teal); }

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dim) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(30, 131, 139, 0.40);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #25A0A9 0%, #1E838B 100%);
  box-shadow: 0 12px 30px rgba(30, 131, 139, 0.58);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  border: 1px solid rgba(207, 210, 211, 0.20);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(207, 210, 211, 0.40);
}

.btn-download {
  background: linear-gradient(135deg, var(--color-teal) 0%, #0D5A61 100%);
  color: #FFFFFF;
  padding: 14px 24px;
  border: 1px solid rgba(30, 131, 139, 0.50);
  box-shadow: 0 10px 30px rgba(30, 131, 139, 0.32);
  text-align: left;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 131, 139, 0.50);
}

.btn-download .btn-icon {
  font-size: 30px;
  color: var(--color-gold);
}

.btn-download .btn-text {
  display: flex;
  flex-direction: column;
}

.btn-download .btn-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--color-gold);
  font-weight: 900;
}

.btn-download .btn-main {
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
}

.btn-download .btn-sub {
  font-size: 11px;
  color: var(--color-text-sub);
  font-weight: 500;
}

.btn-whatsapp {
  background: #25D366;
  color: #000;
  font-weight: 800;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-instagram:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
  transform: translateY(-2px);
}

.btn-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.35);
}

.btn-nav-social:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 9, 18, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
  transition: var(--transition-fast);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1;
}

.brand-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-cyan);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--color-text-sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-cyan);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 22px;
  cursor: pointer;
}

/* Hero Section (Spaced & Cleaned) */
.hero {
  padding: 175px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.league-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 210, 255, 0.09);
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-cyan);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-green);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-bottom: 34px;
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.hero-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-sub);
}

/* Phone Mockup Visual (Refined & Centered) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.mascot-badge {
  position: absolute;
  top: -36px;
  right: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.3) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.mascot-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.phone-card {
  padding: 22px 18px 16px;
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.12);
}

.card-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 11px;
}

.match-live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(57, 255, 20, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 10px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.category-tag {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
}

.card-scoreboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  background: rgba(0, 12, 22, 0.75);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 85px;
  text-align: center;
}

.team-shield {
  font-size: 24px;
}

.team-name {
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
}

.score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score {
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: #FFFFFF;
}

.match-time {
  font-size: 10px;
  color: var(--color-green);
  font-weight: 800;
}

.card-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.timeline-event {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.035);
  padding: 8px 10px;
  border-radius: 8px;
}

.event-min {
  font-weight: 900;
  color: var(--color-cyan);
}

.event-desc {
  color: var(--color-text-sub);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-footer-tabs {
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  font-weight: 800;
  color: var(--color-text-muted);
}

.tab-item.active {
  color: var(--color-cyan);
}

.tab-item i {
  font-size: 14px;
}

.floating-badge {
  position: absolute;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  z-index: 2;
  border-radius: 14px;
}

.floating-badge i {
  font-size: 20px;
}

.floating-badge strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #FFF;
}

.floating-badge small {
  font-size: 10px;
  color: var(--color-text-muted);
}

.badge-1 {
  bottom: 20px;
  left: -35px;
  animation: float 4.5s ease-in-out infinite 0.5s;
}

.badge-2 {
  top: 90px;
  right: -30px;
  animation: float 5s ease-in-out infinite 1s;
}

/* Sections */
.section {
  padding: 90px 0;
  position: relative;
}

.bg-darker {
  background: var(--bg-darker);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--color-cyan);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-sub);
}

/* Modules Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.module-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.module-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.icon-cyan {
  background: rgba(0, 210, 255, 0.15);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.icon-green {
  background: rgba(57, 255, 20, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.icon-gold {
  background: rgba(250, 204, 21, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.icon-orange {
  background: rgba(255, 107, 53, 0.15);
  color: var(--color-orange);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.module-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.module-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.module-text {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.module-list li {
  font-size: 12px;
  color: var(--color-text-sub);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.module-list i {
  margin-top: 3px;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.cat-card {
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cat-format {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-cyan);
  margin-bottom: 8px;
}

.cat-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cat-desc {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cat-card.active {
  border-color: var(--color-gold);
  background: rgba(250, 204, 21, 0.08);
}

.cat-card.active .cat-format {
  color: var(--color-gold);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.step-card {
  padding: 32px 24px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-text {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* CTA Banner */
.cta-banner {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 32, 48, 0.9) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid rgba(0, 210, 255, 0.4);
}

.cta-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}

.cta-content p {
  color: var(--color-text-sub);
  font-size: 14px;
}

/* Footer */
.footer {
  background: #00060a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo {
  height: 56px;
  object-fit: contain;
}

.footer-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 6px;
}

.footer-text p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-links-group h4, .footer-contact h4 {
  font-size: 14px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--color-text-sub);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--color-cyan);
}

.footer-contact p {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.footer-social-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Floating Quick Social Dock */
.floating-social-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.dock-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
}

.dock-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dock-whatsapp {
  background: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dock-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlights {
    justify-content: center;
  }

  .badge-1 { left: -10px; }
  .badge-2 { right: -10px; }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 60px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 9, 18, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-card);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 32px;
  }

  .floating-social-dock {
    bottom: 16px;
    right: 16px;
  }
  .dock-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
