@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --black: #080c10;
  --dark: #0f1923;
  --card: #141e2a;
  --border: rgba(255,255,255,0.07);
  --white: #ffffff;
  --off: #a8b5c2;
  --red: #e63946;
  --red-glow: rgba(230,57,70,0.25);
  --yellow: #f4a521;
  --green: #2ecc71;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 70px;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 0.08em;
  color: var(--white); text-decoration: none;
}
.logo span { color: var(--red); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--off); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: #ff4d5a !important; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 0 25px var(--red-glow);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 0 40px var(--red-glow); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 4px;
  background: rgba(230,57,70,0.08);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em; line-height: 1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--off);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 3rem;
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(230,57,70,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card-top { height: 4px; background: var(--red); border-radius: 4px 4px 0 0; margin: -2rem -2rem 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 0.85rem; color: var(--off); line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--off); margin-bottom: 1rem; }
.footer-col a, .footer-col p {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 0.88rem; margin-bottom: 0.5rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

/* ── WHATSAPP FLOTTANT ── */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .section { padding: 4rem 1.2rem; }
  footer { padding: 2rem 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
