/* ============================================================
   ANGEL CITYVAN — Global Styles
   Paleta: #0099FF (azul), #0A0F1C (negro), #FFFFFF (blanco)
   ============================================================ */

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

:root {
  --blue: #0099FF;
  --blue-dark: #0077CC;
  --blue-glow: rgba(0,153,255,0.25);
  --dark: #0A0F1C;
  --dark2: #111827;
  --dark3: #1a2235;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-blue-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--blue);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-blue-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(10,15,28,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(10,15,28,0.97);
}
.navbar__logo img {
  height: 48px;
  width: auto;
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.navbar__menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.navbar__menu a:hover { color: var(--blue); }
.navbar__menu a:hover::after,
.navbar__menu a.active::after { width: 100%; }
.navbar__menu a.active { color: var(--blue); }

.navbar__cta { margin-left: 20px; }

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── SECCIÓN ETIQUETA ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ── FOOTER ── */
.footer {
  background: #070B14;
  padding: 64px 60px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 48px; margin-bottom: 20px; }
.footer__brand p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  color: var(--gray);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--blue); }
.footer__col p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}
.footer__col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
}
.footer__col .contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  color: var(--gray);
  font-size: 13px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glow);
}

/* ── WHATSAPP FLOTANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ── PILL ICON CARDS ── */
.pill-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pill-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.pill-card:last-child { border-right: none; }
.pill-card:hover { background: var(--dark3); }
.pill-card svg {
  width: 40px; height: 40px;
  color: var(--blue);
  margin: 0 auto 16px;
}
.pill-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pill-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 60px;
}
.cta-banner__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-banner__left svg {
  width: 40px; height: 40px;
  color: var(--blue);
  flex-shrink: 0;
}
.cta-banner__text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-banner__text h3 span { color: var(--blue); }
.cta-banner__text p {
  color: var(--gray);
  font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .footer { padding: 48px 32px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pill-cards { grid-template-columns: repeat(2, 1fr); }
  .pill-card:nth-child(2) { border-right: none; }
  .pill-card:nth-child(1),
  .pill-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cta-banner { margin: 0 32px; padding: 32px 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar__menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,15,28,0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navbar__menu.open { display: flex; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .footer { padding: 40px 20px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .pill-cards { grid-template-columns: 1fr 1fr; }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    margin: 0 20px;
    padding: 28px 24px;
  }
  .cta-banner__left { flex-direction: column; text-align: center; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .pill-cards { grid-template-columns: 1fr; }
  .pill-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
