.banner-section {
    height: 5vh; /* MÁS fino aún */
    background: radial-gradient(circle at 20% 30%,var(--secundario), transparent 40%),
                radial-gradient(circle at 80% 20%,var(--primario), transparent 40%),
                #000000;
    background-blend-mode: screen;
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenido centrado */
.banner-content {
    z-index: 2;
    max-width: 100%;
}

/* Badge más chico */
.banner-badge {
    background-color: #fff;
    color: var(--secundario);
    font-weight: bold;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    padding: 0.2rem 0.8rem;
    display: inline-block;
    margin-bottom: 0.3rem;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

/* Título reducido */
.banner-title {
    font-family: "Tipografia1", cursive;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Subtítulo opcional */
.banner-subtitle {
    display: none; /* Ocultamos si querés que sea MUY fino */
}

/* Efecto luz lateral más discreto */
.banner-section::before,
.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
    animation: luzParpadeo 5s ease-in-out infinite;
    mix-blend-mode: screen;
}

.banner-section::before {
    left: 0;
    transform: translate(-20%, -30%);
}

.banner-section::after {
    right: 0;
    transform: translate(20%, -30%);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes luzParpadeo {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        padding: 1.2rem 1rem;
    }

    .banner-title {
        font-size: 1.3rem;
    }
}
/* Estilo general de burbujas */
.social-bubble {
  width: 65px;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Hover general */
.social-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Colores específicos por red */
.social-bubble.facebook:hover {
  background-color: #1877f2;
  color: white;
}

.social-bubble.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  color: white;
}

.social-bubble.whatsapp:hover {
  background-color: #25d366;
  color: white;
}

.social-bubble.tiktok:hover {
  background: linear-gradient(135deg, #69C9D0, #EE1D52);
  color: white;
}
.banner-bubble-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; /* Opcional para responsive */
}
/* ======= MOBILE: una sola fila más chica y alineada ======= */
@media (max-width: 768px) {
  .banner-section{
    padding: 0.9rem 0.75rem;
    isolation: isolate;
  }

  /* fila horizontal centrada a lo ancho */
  .banner-bubble-wrapper{
    position: relative;
    z-index: 2;
    display: flex !important;         /* fuerza fila (sobre grid anterior) */
    flex-wrap: nowrap;                 /* sin salto de línea */
    justify-content: space-between;    /* reparte a lo largo de la pantalla */
    align-items: center;
    gap: clamp(8px, 3vw, 18px);
    width: 100%;
    max-width: 420px;                  /* evita que queden muy separados */
    margin: 0 auto;
    padding: 0 6px;
  }

  /* burbujas más chicas y con mejor contraste en mobile */
  .social-bubble{
    width: clamp(40px, 10vw, 52px);
    height: clamp(40px, 10vw, 52px);
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
      0 6px 18px rgba(0,0,0,0.30),
      inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  }

  /* en mobile, feedback de toque sin “brincar” el layout */
  .social-bubble:hover { transform: none; }
  .social-bubble:active{
    transform: scale(0.97);
    box-shadow:
      0 3px 10px rgba(0,0,0,0.28),
      inset 0 0 0 rgba(255,255,255,0);
  }

  /* brillos un toque más suaves para que no compitan */
  .banner-section::before,
  .banner-section::after{
    filter: blur(16px);
    opacity: 0.5;
  }
}

/* ======= XS extra (≤360px): aún más compactos ======= */
@media (max-width: 360px){
  .banner-bubble-wrapper{
    max-width: 340px;
    gap: 10px;
    padding: 0 4px;
  }
  .social-bubble{
    width: 48px; height: 48px; font-size: 1.1rem;
  }
}
/* ===== STICKY HEADER (banner + navbar) en todo el sitio ===== */
:root{
  /* Alturas base (ajustá a gusto) */
  --banner-h: 64px;     /* desktop */
  --navbar-h: 56px;     /* desktop */
}
@media (max-width: 768px){
  :root{
    --banner-h: 56px;   /* móvil */
    --navbar-h: 56px;   /* móvil */
  }
}

/* Banner fijo arriba */
.banner-section{
  position: sticky !important;
  top: 0;
  height: var(--banner-h) !important;     /* altura controlada */
  z-index: 1190 !important;               /* debajo del navbar, encima del contenido */
}

/* Navbar fijo justo debajo del banner */
.custom-navbar{
  position: sticky !important;
  top: var(--banner-h);
  min-height: var(--navbar-h) !important;
  z-index: 1200 !important;               /* encima del banner */
}

/* Drawer / backdrop por ENCIMA del navbar */
.backdrop{ z-index: 1390 !important; }
.drawer{   z-index: 1400 !important; }
.hamburger{ z-index: 1500 !important; }   /* botón siempre clickeable */

/* Deslizamiento a anclas (#seccion) con offset correcto */
html{ scroll-padding-top: calc(var(--banner-h) + var(--navbar-h)); }

/* (Opcional) En páginas SIN banner, poné class="no-banner" en <body> */
body.no-banner{ --banner-h: 0px; }
