/* ── TITANS CC — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A0A0A;
  --navy2: #161616;
  --blue: #1E9CE0;
  --blue2: #28AEF0;
  --gold: #CC1414;
  --gold2: #E02020;
  --red: #CC1414;
  --white: #FFFFFF;
  --off-white: #0F0F0F;
  --card-bg: #1A1A1A;
  --text: #F0F0F0;
  --muted: #9CA3AF;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--off-white); color: var(--text); overflow-x: hidden; }


/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.5px;
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 38px; width: 38px;
  border-radius: 50%; object-fit: cover;
  margin-right: 0.6rem;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  display: block;
  padding: 0 1rem;
  line-height: 60px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--blue); background: rgba(255,255,255,0.05); }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; border-radius: 2px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D0D0D 50%, #0A1520 100%);
  color: var(--white); text-align: center;
  padding: 3.5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(30,156,224,0.2);
}
.page-hero::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(204,20,20,0.08); border-radius: 50%;
}
.page-hero-tag {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800; line-height: 1.1;
  font-family: 'Bebas Neue', 'Poppins', sans-serif;
  letter-spacing: 2px;
}
.page-hero p {
  font-size: 1rem; opacity: 0.8; margin-top: 0.6rem;
}
.hero-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  border-radius: 2px;
  margin: 1.5rem auto 0;
}

/* ── CONTAINERS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.5rem 0; }
.section-alt { background: var(--navy2); }

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-block;
  background: rgba(30,156,224,0.12); color: var(--blue);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 0.6rem; border: 1px solid rgba(30,156,224,0.25);
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--blue); }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.5); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  border-radius: 8px; font-weight: 700;
  font-size: 0.875rem; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: #050505; color: rgba(255,255,255,0.7);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1.5rem;
}
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--blue); }
.footer-since { font-size: 0.8rem; opacity: 0.6; margin-top: 0.2rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.social-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.social-btn.instagram { background: rgba(225,48,108,0.15); color: #e1306c; border: 1px solid rgba(225,48,108,0.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,0.25); }
.social-btn.facebook { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.25); }
.social-btn.facebook:hover { background: rgba(24,119,242,0.25); }
.social-btn.whatsapp { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.25); }
.social-btn.whatsapp:hover { background: rgba(37,211,102,0.25); }
.footer-copy { font-size: 0.72rem; opacity: 0.4; width: 100%; text-align: center; margin-top: 1rem; padding-top: 1rem; }

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li a { line-height: 1; padding: 0.9rem 1.5rem; }
  .nav-mobile-btn { display: block; }
  nav { position: relative; }
}
