/* =========================
   BASE
========================= */
:root {
    --bg: #f4f4f4;
    --negro: #171719;
    --negro_80: #3e3e3e;
    --negro_50: #6b6b6b;
    --negro_30: #c9c9c9;
    --negro_10: #ededed;

    --acento_color: #6c58b3;

    --radius: 16px;
    --shadow_sm: 0 10px 30px rgba(0, 0, 0, .06);
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--negro);
}

/* Links */
a {
    color: var(--negro);
}

a:hover {
    color: var(--acento_color);
}

/* =========================
   NAVBAR (premium)
========================= */
.nav-blur {
    background: rgba(244, 244, 244, .72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(23, 23, 25, .08);
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--negro);
    opacity: .9;
}

.navbar .nav-link:hover {
    opacity: 1;
    color: var(--negro);
}
.navbar.fixed-top{
  z-index: 1050; /* igual que Bootstrap modal/backdrop levels */
}
/* Botón acento */
.btn-acento {
    background: var(--acento_color);
    border: 1px solid rgba(0, 0, 0, .06);
    color: #fff;
    border-radius: 999px;
}

.btn-acento:hover {
    filter: brightness(1.05);
    background: var(--negro);
    color: #fff;
}


@media (max-width: 992px){
  .btn-acento{
    display: block;           /* necesario para margin auto */
    margin: 0 auto 20px auto; /* centrado */
  }
  .btn-servicios {
     display: block;           /* necesario para margin auto */
    margin: 0 auto 20px auto; /* centrado */
  }
}

/* Arregla alineación del caret (flecha) en desktop */
@media (min-width: 992px){
  .navbar .dropdown-toggle{
    display: inline-flex !important;
    align-items: center !important;
    gap: .35rem;
    line-height: 1.2;
  }

  .navbar .dropdown-toggle::after{
    margin-top: .15em;      /* baja un poquito la flecha */
    vertical-align: middle; /* por si el navegador lo respeta */
  }
}


/* Dropdown */
.dropdown-menu {
    border: 1px solid rgba(23, 23, 25, .10);
    border-radius: 14px;
    box-shadow: var(--shadow_sm);
}

/* MOBILE: servicios como lista abierta */
.nav-servicios-movil{
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(23,23,25,.04);
  border: 1px solid rgba(23,23,25,.06);
}

.nav-servicios-title{
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(23,23,25,.65);
  margin-bottom: 6px;
}

.nav-link-sub{
  padding: 9px 10px !important;
  border-radius: 12px;
  opacity: .92;
}

.nav-link-sub:hover{
  background: rgba(108,88,179,.10);
  opacity: 1;
}

/* Desktop: oculta bloque móvil */
@media (min-width: 992px){
  .nav-servicios-movil{ display:none; }
}


.dropdown-item:active {
    background: var(--acento_color);
}

/* Botón hamburguesa premium */
.navbar-toggler{
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23,23,25,.14) !important;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(23,23,25,.08);
}

/* Quita outline tosco */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible{
  outline: none !important;
  box-shadow: 0 10px 22px rgba(23,23,25,.12) !important;
}

/* Ícono más delgado y elegante */
.navbar-light .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(23,23,25,0.82)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.6' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E") !important;
  width: 22px;
  height: 22px;
}

/* En móvil, que el menú desplegado se vea limpio */
@media (max-width: 992px){
  .navbar-collapse{
    margin-top: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(244,244,244,.92);
    box-shadow: 0 18px 40px rgba(23,23,25,.12);
  }

  .navbar-nav .nav-link{
    padding: 10px 6px;
  }

  /* Dropdown menú en móvil */
  .dropdown-menu{
    border-radius: 14px;
  }
}

.separador_navbar {
  height: 0;
}

/* =========================
   HERO (limpio)
========================= */
.hero{
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #0b0b0f;
  display: flex;
  align-items: center;

  /* para móvil cuando sea background-image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Video desktop */
.hero video.hero-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.02);
  z-index: 1;
}

/* Overlay único */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(900px 520px at 15% 40%, rgba(108,88,179,.28), rgba(0,0,0,0) 55%),
    linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.15) 100%);
}

/* Contenido */
.hero-content{
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 70px;
  color: #fff;
}

.hero-lead{
  color: rgba(255,255,255,.82);
}

/* Móvil */
.hero--movil{
  min-height: 86vh;
}

/* Ajustes responsive */
@media (max-width: 992px){
  .hero-content{
    padding-top: 50px;
    padding-bottom: 46px;
    text-align: left;
  }

  .hero-overlay{
    background:
      radial-gradient(680px 420px at 20% 35%, rgba(108,88,179,.32), rgba(0,0,0,0) 58%),
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.25) 100%);
  }
}


/* =========================
   CARDS / SECCIONES
========================= */
.card-nuovo {
    background: #fff;
    border: 1px solid rgba(23, 23, 25, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow_sm);
}

.section-title {
    color: var(--negro);
}

.section-muted {
    color: var(--negro_80);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--negro);
    color: rgba(255, 255, 255, .86);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer a {
    color: rgba(255, 255, 255, .80);
}

.footer a:hover {
    color: #fff;
}

.footer .muted {
    color: rgba(255, 255, 255, .65);
}

.footer .footer-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
}

.footer .social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
}

/* HERO */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
    /* fallback */
}

/* VIDEO abajo */
.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY encima del video */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        /* Izquierda protegida para el texto, pero sin apagar el video */
        linear-gradient(90deg,
        rgba(23, 23, 25, .70) 0%,
        rgba(23, 23, 25, .55) 35%,
        rgba(23, 23, 25, .30) 65%,
        rgba(23, 23, 25, .18) 100%),
        /* Viñeta MUY suave (solo esquinas) */
        radial-gradient(circle at 20% 30%,
        rgba(23, 23, 25, .18) 0%,
        rgba(23, 23, 25, .32) 60%,
        rgba(23, 23, 25, .42) 100%);
}

/* CONTENIDO arriba de todo */
.hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* sombra sutil para legibilidad premium */
.hero h1,
.hero p {
    text-shadow:
        0 2px 6px rgba(0, 0, 0, .35),
        0 12px 36px rgba(0, 0, 0, .45);
}

.hero .hero-lead {
    color: rgba(255, 255, 255, .82);
}

.hero h1 strong {
    color: var(--acento_color);
    text-shadow:
        0 2px 6px rgba(23, 23, 23, .35),
        0 10px 30px rgba(23, 23, 23, .45);
}

/* Vidrio biselado premium */
.glass-biselado {
    position: relative;

    /* Fondo tipo vidrio */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, .78) 0%,
        rgba(245, 245, 245, .60) 40%,
        rgba(255, 255, 255, .55) 100%);

    /* Blur del fondo */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Bisel sutil */
    border: 1px solid rgba(255, 255, 255, .65);
    border-top: 1px solid rgba(255, 255, 255, .85);
    border-left: 1px solid rgba(255, 255, 255, .85);

    /* Profundidad */
    box-shadow:
        0 25px 50px rgba(23, 23, 25, .12),
        inset 0 1px 0 rgba(255, 255, 255, .7);

    border-radius: 20px;
}

/* Vidrio biselado premium */
.glass-biselado {
    position: relative;

    /* Fondo tipo vidrio */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, .78) 0%,
        rgba(245, 245, 245, .60) 40%,
        rgba(255, 255, 255, .55) 100%);

    /* Blur del fondo */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Bisel sutil */
    border: 1px solid rgba(255, 255, 255, .65);
    border-top: 1px solid rgba(255, 255, 255, .85);
    border-left: 1px solid rgba(255, 255, 255, .85);

    /* Profundidad */
    box-shadow:
        0 25px 50px rgba(23, 23, 25, .12),
        inset 0 1px 0 rgba(255, 255, 255, .7);

    border-radius: 20px;
}

.glass-biselado-acento {
    position: relative;
    background: linear-gradient(135deg,
        rgb(108 88 179 / 40%) 0%,
        rgb(108 88 179 / 20%) 40%,
        rgba(255, 255, 255, .55) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-top: 1px solid rgba(255, 255, 255, .85);
    border-left: 1px solid rgba(255, 255, 255, .85);
    box-shadow:
        0 25px 50px rgba(23, 23, 25, .12),
        inset 0 1px 0 rgba(255, 255, 255, .7);
    border-radius: 20px;
}

/* imagen con texto*/
.div_imagen {
    position: relative;
    width: 100%;
    max-width: 1168px;
    aspect-ratio: 1168 / 560;
    /* mantiene proporción */
    margin: 0 auto;
    overflow: hidden;
}

/* Imagen superior (1–1, fija) */
.img_fondo_estatica {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* Imagen inferior con movimiento */
.div_imagen_movimiento {
    position: absolute;
    inset: 0;
    width: 110%;
    /* un poco más grande para el movimiento */
    height: 110%;
    object-fit: cover;
    z-index: 1;
    animation: movimiento_suave 12s ease-in-out infinite alternate;
}

/* Animación */
@keyframes movimiento_suave {
    0% {
        transform: translate(-2%, -2%) scale(1.02);
    }

    100% {
        transform: translate(2%, 2%) scale(1.05);
    }
}

@keyframes sombra-giratoria {
    0% {
        box-shadow: 8px 8px 25px rgba(0, 0, 0, .25);
    }

    25% {
        box-shadow: -8px 8px 25px rgba(0, 0, 0, .25);
    }

    50% {
        box-shadow: -8px -8px 25px rgba(0, 0, 0, .25);
    }

    75% {
        box-shadow: 8px -8px 25px rgba(0, 0, 0, .25);
    }

    100% {
        box-shadow: 8px 8px 25px rgba(0, 0, 0, .25);
    }
}

.sombra-animada {
    animation: sombra-giratoria 8s linear infinite;
}

.haz-luz {
    position: relative;
}

/* Haz de luz base */
.haz-luz::after {
    content: "";
    position: absolute;
    top: -35%;
    left: -70%;
    width: 45%;
    height: 180%;
    pointer-events: none;
    z-index: 5;

    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .18) 40%,
        rgba(255, 255, 255, .55) 50%,
        rgba(255, 255, 255, .18) 60%,
        rgba(255, 255, 255, 0) 100%);

    filter: blur(1.5px);
    transform: rotate(18deg) translateX(0) scaleX(0.85);
    opacity: 0;
}

/* Activación con AOS */
.haz-luz.aos-animate::after {
    opacity: 1;
    animation: sweep-luz-pro 1.4s cubic-bezier(.15, .9, .25, 1) forwards;
}

/* Animación PRO */
@keyframes sweep-luz-pro {
    0% {
        transform: rotate(18deg) translateX(0) scaleX(0.8);
        opacity: 0;
    }

    15% {
        opacity: 1;
        /* entra rápido */
    }

    60% {
        transform: rotate(18deg) translateX(220%) scaleX(1);
    }

    100% {
        transform: rotate(18deg) translateX(340%) scaleX(1.35);
        opacity: 0;
        /* se desvanece suave */
    }
}

/* NUeva propuesta de imagen y texto */
/* Banner descanso visual (Nosotros) */
.banner-nosotros{
  max-width: 1100px;           /* más ancho tipo banner */
  aspect-ratio: 1100 / 320;    /* tipo franja elegante */
}

/* Overlay para que el texto siempre se lea */
.banner-nosotros .banner-overlay{
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(23,23,25,.70) 0%,
    rgba(23,23,25,.45) 45%,
    rgba(23,23,25,.18) 100%
  );
}

/* Texto encima */
.banner-nosotros .banner-texto{
  position: absolute;
  z-index: 4;
  left: 6%;
  bottom: 18%;
  max-width: 520px;
  color: #fff;
}

/* Tipos */
.banner-nosotros .banner-texto h3{
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.banner-nosotros .banner-texto p{
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  text-shadow: 0 10px 30px rgba(0,0,0,.28);
}

/* Sección gris full ancho */
.section-servicio-marketing{
  background: #c9c9c9;
  padding: 56px 0;
}

/* Bloque contenedor */
.div_servicio{
  position: relative;
  width: 100%;
  min-height: 520px;
}

/* Cuadro blanco 80% centrado */
.div_servicio_cuadro_blanco{
  position: relative;
  width: min(1200px, 80%);
  margin: 0 auto;
  background: #f4f4f4;
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 22px 45px rgba(23,23,25,.18);
  min-height: 520px;
  overflow: visible;
}

/* Imagen */
.div_servicio_imagen{
  position: absolute;
  top: 38px;
  width: calc(50% - 38px);
  height: calc(100% - 76px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(23,23,25,.12);
}

.div_servicio_imagen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(.98);
}

/* Panel texto */
.div_servicio_texto{
  position: absolute;
  top: 50%;
  width: 40%;
  transform: translateY(-50%);
  background: rgba(62,62,62,.92);
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 22px 45px rgba(23,23,25,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Badge morado */
.div_servicio_titulo{
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--acento_color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 25px rgba(23,23,25,.18);
  white-space: nowrap;
}

/* Variantes */
.div_servicio.is-right .div_servicio_imagen{ left: 38px; }
.div_servicio.is-right .div_servicio_texto{ left: 58%; }

.div_servicio.is-left .div_servicio_imagen{ right: 38px; }
.div_servicio.is-left .div_servicio_texto{ left: 2%; }

/* Responsive: (por si alguien fuerza el desktop layout en móvil) */
@media (max-width: 992px){
  .div_servicio{ min-height: auto; }

  .div_servicio_cuadro_blanco{
    width: min(980px, 92%);
    padding: 22px;
    min-height: auto;
  }

  .div_servicio_imagen{
    position: relative;
    left: auto; right: auto; top: auto;
    width: 100%;
    height: 280px;
    margin-bottom: 18px;
  }

  .div_servicio_texto{
    position: relative;
    top: auto; left: auto;
    width: 100%;
    transform: none;
    margin-top: 26px;
  }

  .div_servicio_titulo{
    top: -16px;
  }
}


/* Sección */
/* =========================
   PRESENCIA INTERNACIONAL
========================= */
.section-presencia{
  background: #fff;
}

/* Kicker */
.presencia-kicker{
  letter-spacing: .14em;
  color: var(--negro_80);
}

/* Stat cards */
.presencia-stat{
  background: #fff;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 30px rgba(23,23,25,.08);
  border: 1px solid rgba(23,23,25,.06);
  height: 100%;
}

.presencia-stat-num{
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--negro);
  margin-bottom: 8px;
}

.presencia-stat-label{
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 2px;
}

.presencia-stat-sub{
  font-size: 13px;
  color: var(--negro_80);
}

/* Visual card (glass) */
.presencia-visual{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(23,23,25,.12);
}

/* Badge superior */
.presencia-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--acento_color);
  box-shadow: 0 14px 30px rgba(23,23,25,.18);
}

/* Mapa */
.presencia-map-wrap{
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.presencia-map{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
  transform: scale(1.01);
}

/* Mini texto debajo del mapa */
.presencia-mini{
  background: rgba(255,255,255,.40);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.presencia-mini-title{
  font-weight: 800;
  color: var(--negro);
  margin-bottom: 6px;
}

.presencia-mini-text{
  color: var(--negro_80);
  line-height: 1.7;
}

/* Tu glass existente (si ya lo tienes, puedes omitir esto).
   Aquí lo dejo por si quieres uniformidad con tu estilo anterior. */
.glass-biselado-acento{
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(108 88 179 / 22%) 0%,
    rgb(108 88 179 / 12%) 38%,
    rgba(255,255,255,.60) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.85);
  border-left: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 25px 50px rgba(23,23,25,.12), inset 0 1px 0 rgba(255,255,255,.7);
  border-radius: 22px;
}

/* Responsive tweaks */
@media (max-width: 992px){
  .presencia-visual{ border-radius: 18px; }
  .presencia-map-wrap{ border-radius: 16px; }
  .presencia-mini{ border-radius: 16px; }
}

/* =========================
   CLIENTES (PRUEBA SOCIAL)
========================= */
.section-clientes{
  background: #fff;
}

.clientes-kicker{
  letter-spacing: .14em;
  color: var(--negro_80);
}

/* Contenedor tipo “glass” */
.clientes-wrap{
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(23,23,25,.10);
  overflow: hidden;
}

/* Tarjeta individual de logo */
.logo-card{
  height: 96px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.logo-card img{
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.logo-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(23,23,25,.12);
  background: rgba(255,255,255,.70);
}

.logo-card:hover img{
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

/* Nota inferior */
.clientes-foot{
  font-size: 13px;
  opacity: .9;
}

/* Responsive */
@media (max-width: 576px){
  .logo-card{ height: 86px; }
  .logo-card img{ max-height: 46px; }
}


/* =========================
   CTA FINAL
========================= */
.section-cta-final{
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f4f4 100%
  );
}

.cta-wrap{
  border-radius: 26px;
  padding: 48px 46px;
  box-shadow: 0 30px 70px rgba(23,23,25,.15);
}

.cta-kicker{
  letter-spacing: .16em;
  color: var(--negro_80);
}

.cta-text{
  color: var(--negro_80);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}

/* Botón CTA */
.btn-cta-final{
  background: var(--acento_color);
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 18px 35px rgba(108,88,179,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-cta-final:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 55px rgba(108,88,179,.45);
  background: #5b4aa0; /* leve oscurecido */
}

/* Responsive */
@media (max-width: 992px){
  .cta-wrap{
    padding: 34px 28px;
    text-align: center;
  }

  .cta-text{
    margin: 0 auto;
  }
}


/* Contenedor general del botón */
.whatsapp-fixed {
  position: fixed;
  z-index: 5;
}

/* Por defecto (escritorio) → lado derecho a media altura */
.whatsapp-fixed {
  right: -109px;
  bottom: 50%;
  width: 168px;
  height: 66px;
}

.whatsapp-fixed:hover {
  right: -20px;
}

/* Imagen que se ve en escritorio */
.whatsapp-img-desktop {
  display: block;
  height: 60px;
}

.whatsapp-img-mobile {
  display: none;
}

/* ======= VISTA MÓVIL ======= */
@media (max-width: 768px) {

  /* Barra inferior izquierda en móvil */
  .whatsapp-fixed {
    left: 5px;
    right: auto;
    bottom: 25px;
    width: 230px;
    height: 32px;
  }

  .whatsapp-img-mobile {
    display: block;
    height: 60px;
  }

  .whatsapp-img-desktop {
    display: none;
  }
}

/* =========================
   PROXIMAMENTE
========================= */

.section-proximamente{
  min-height: 80vh;
  background: #f1f1f1;
  padding: 80px 0;
}

.card-proximamente{
  background: #ffffff;
  border-radius: 22px;
  padding: 56px 48px;
  box-shadow: 0 25px 55px rgba(23,23,25,.18);
  border: 1px solid rgba(23,23,25,.06);
}

.badge-prox{
  display: inline-block;
  background: rgba(108,88,179,.12);
  color: var(--acento_color);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .4px;
}

/* Ajuste móvil */
@media (max-width: 768px){
  .card-proximamente{
    padding: 38px 26px;
  }
}

/* En desktop: que la col de botones tenga altura completa como las otras */
@media (min-width: 768px) {
  .nuovo-botones-col { height: 100%; }
}

/* (Opcional) si quieres que el bloque quede alineado a la derecha en desktop */
@media (min-width: 768px) {
  .nuovo-botones { justify-content: flex-start; } /* o flex-end si los quieres pegados a la derecha */
}
 #contacto_alert{ border-radius:12px; }