/*
 * =========================================================
 * Círculo de Empresarios - Custom Stylesheet
 * Reemplaza gaia.css (Creative Tim 2019) con estilos modernos
 * Compatible con Bootstrap 5.3+
 * =========================================================
 */

/* ==========================================
   1. VARIABLES Y RESET BASE
   ========================================== */
:root {
  --primary: #e78b90;
  --primary-hover: #e47a80;
  --secondary: #777777;
  --accent: #c5a47e;
  --dark: #1a1a2e;
  --dark-light: #333333;
  --text-muted: #777777;
  --text-light: #aaaaaa;
  --whatsapp: #25D366;
  --whatsapp-hover: #20b058;
  --coral: #ff6f61;
  --coral-hover: #ff3b2f;
  --info-color: #00abc0;
  --success-color: #7accb8;
  --warning-color: #f88f58;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --section-padding: 80px 0;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Cambo', serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================
   2. TIPOGRAFÍA
   ========================================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-light);
}

h1, .h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.5em; }
h3, .h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: 0.75em; margin-bottom: 0.75em; }
h4, .h4 { font-size: 1.25rem; }
h5, .h5 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--secondary);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

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

.text-muted-custom { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-primary-custom { color: var(--primary); }

/* ==========================================
   3. SEPARADOR / DIVISOR
   ========================================== */
.separator {
  color: var(--accent);
  margin: 0 auto 20px;
  max-width: 200px;
  text-align: center;
  position: relative;
  font-size: 1.5rem;
}

.separator::before,
.separator::after {
  content: "";
  display: inline-block;
  width: 35%;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-top: 10px;
}

.separator::before { margin-right: 15px; }
.separator::after { margin-left: 15px; }

.separator-danger { color: var(--primary); }
.separator-danger::before,
.separator-danger::after { border-color: var(--primary); background: var(--primary); }

/* ==========================================
   4. NAVBAR
   ========================================== */
.navbar {
  padding: 15px 0;
  transition: all var(--transition-fast);
  z-index: 1050;
}

.navbar.scrolled {
  background: var(--white) !important;
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.navbar-brand img {
  max-height: 100px;
  width: auto;
  transition: all var(--transition-fast);
}

.navbar.scrolled .navbar-brand img {
  max-height: 100px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  padding: 8px 16px !important;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
  color: var(--dark-light);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border: none;
  padding: 0;
  font-size: 1.5rem;
  color: var(--white);
}

.navbar.scrolled .navbar-toggler {
  color: var(--dark-light);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Links sociales en navbar */
.navbar .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
}

.navbar .social-links a {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.navbar.scrolled .social-links a {
  color: var(--dark-light);
}

.navbar .social-links a:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================
   5. HERO / SECCIÓN HEADER
   ========================================== */
.section-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-parallax .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 80px;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 800;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-content .subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-content img {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin: 1rem auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Video de fondo */
.bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Flecha scroll */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 2rem;
  color: var(--white);
  opacity: 0.8;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  text-align: center;
  transition: all var(--transition-fast);
  animation: bounce-arrow 2s ease infinite;
}

.scroll-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================
   6. SECCIONES GENERALES
   ========================================== */
.section {
  padding: var(--section-padding);
  position: relative;
  background-color: var(--white);
}

.section-gray {
  background-color: var(--light-bg);
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.title-area {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.title-area h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.title-area h2 {
  margin-bottom: 1rem;
}

.title-area .description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   7. QUIÉNES SOMOS
   ========================================== */
.about-description h3 {
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ==========================================
   8. SECCIÓN AFÍLIATE (CTA Banner)
   ========================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.cta-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

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

/* ==========================================
   9. BOTONES
   ========================================== */
.btn-ciempre {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ciempre:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(231, 139, 144, 0.4);
}

.btn-ciempre-fill {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ciempre-fill:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(231, 139, 144, 0.5);
  transform: translateY(-2px);
}

.btn-ciempre-white {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ciempre-white:hover {
  background: var(--white);
  color: var(--dark-light);
  transform: translateY(-2px);
}

.btn-lg-custom {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* ==========================================
   10. CARDS DE SEDES
   ========================================== */
.sede-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  background-size: cover;
  background-position: center;
}

.sede-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: background var(--transition-fast);
  z-index: 1;
}

.sede-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.sede-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.sede-card .card-header-sede {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.sede-card .card-footer-sede {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.btn-sede {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-sede:hover {
  background: var(--coral-hover);
  box-shadow: 0 4px 15px rgba(255, 63, 47, 0.4);
  transform: translateY(-2px);
}

/* ==========================================
   11. PROYECTOS
   ========================================== */
.project-item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-item:last-child {
  border-bottom: none;
}

.project-image-wrapper {
  position: relative;
  display: inline-block;
}

.imagen-redondeada {
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  object-fit: cover;
}

.imagen-redondeada:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-xl);
}

.marca-agua {
  position: absolute;
  top: 35%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 40%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}

.project-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark-light);
  margin-bottom: 1rem;
  display: block;
}

.project-title:hover {
  color: var(--primary);
}

.project-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================
   12. EVENTOS
   ========================================== */
.event-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
  height: 100%;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.event-card .content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Badge de fecha circular */
.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  margin-bottom: 15px;
  flex-shrink: 0;
}

.event-date-badge .month {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.event-date-badge .date {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-card h3 a {
  color: var(--dark-light);
  transition: color var(--transition-fast);
}

.event-card h3 a:hover {
  color: var(--primary);
}

.event-subtitle {
  color: var(--warning-color);
  font-weight: 500;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.event-price {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.event-info {
  color: var(--info-color);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.event-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--whatsapp);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  margin-top: 10px;
}

.event-whatsapp:hover {
  color: var(--whatsapp-hover);
  transform: translateX(3px);
}

.event-image-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 100%;
}

.event-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.event-image-card:hover img {
  transform: scale(1.05);
}

/* Estado "Próximamente" */
.coming-soon-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.coming-soon-card h2 {
  margin-bottom: 1rem;
}

/* ==========================================
   13. SWIPER / AFILIADOS
   ========================================== */
.affiliates-section .swiper {
  width: 100%;
  padding: 30px 0;
}

.affiliates-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card {
  background: var(--white);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-card img {
  max-height: 85%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter var(--transition-fast);
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.logo-card:hover img {
  filter: grayscale(0%);
}

/* ==========================================
   14. FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer .btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer .btn-social:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer .copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   15. WHATSAPP FLOTANTE
   ========================================== */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: pulse-whatsapp 2s ease infinite;
}

.whatsapp-icon:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon img {
  width: 32px;
  height: 32px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 330px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-fast);
}

.chat-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-box textarea {
  width: 100%;
  height: 110px;
  resize: none;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  border: 2px solid #e8e8e8;
  background: var(--light-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-light);
  outline: none;
  transition: all var(--transition-fast);
}

.chat-box textarea:focus {
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.chat-box .btn-send {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition-fast);
}

.chat-box .btn-send:hover {
  background: var(--whatsapp-hover);
}

/* ==========================================
   16. ANIMACIONES SCROLL (Intersection Observer)
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ==========================================
   17. RESPONSIVE
   ========================================== */
@media (max-width: 991.98px) {
  .sede-card {
    height: 320px;
    margin-bottom: 20px;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-collapse .nav-link,
  .navbar-collapse .social-links a {
    color: var(--dark-light) !important;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 50px 0;
  }

  .title-area {
    margin-bottom: 40px;
  }

  .sede-card {
    height: 280px;
  }

  .sede-card .card-header-sede {
    font-size: 1.4rem;
    top: 18px;
    left: 18px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .chat-box {
    width: 290px;
    right: -10px;
  }

  .scroll-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon img {
    width: 28px;
    height: 28px;
  }

  .chat-box {
    width: calc(100vw - 40px);
    right: -5px;
  }
}

/* ==========================================
   18. UTILIDADES
   ========================================== */
.badge-maps {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition-fast);
}

.badge-maps:hover {
  background: var(--light-bg);
}

/* Smooth scroll offset para fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}
