/* ===============================
   VARIABLES DE TEMA
   =============================== */
:root {
  --bg: #FAFCFF;
  --ink: #0F172A;
  --muted: #475569;
  --accent: #FF006E;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --max: 1200px;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
  --focus: 3px solid rgba(255, 0, 110, 0.5);
  --leading: 28px;
}


/* ===============================
   RESETEOS BÁSICOS
   =============================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===============================
   TIPOGRAFÍA Y ENLACES
   =============================== */
a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* quitar subrayado cuando .btn se usa como <a> */
a.btn {
  text-decoration: none;
}

/* y también cuando es cualquier elemento con .btn */
.btn {
  text-decoration: none;
}

p {
  font-size: 18px;
  line-height: var(--leading);
}

/* .lead con tamaño y color atenuado */
.lead {
  font-size: 20px;
  line-height: 32px;
  
}

/* H1 */
h1 {
  font-family: Archivo, Inter, Arial, sans-serif;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 12px;
  margin-left: 0;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}

/* H2 */
h2 {
  font-family: Archivo, Inter, Arial, sans-serif;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 12px;
  margin-left: 0;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}

/* H3 */
h3 {
  font-family: Archivo, Inter, Arial, sans-serif;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 12px;
  margin-left: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

/* small */
small {
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}

/* .meta */
.meta {
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}


/* ===============================
   LAYOUT BÁSICO
   =============================== */
.container {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.section {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--border);
}


/* ===============================
   CARDS / GRIDS
   =============================== */
.cards {
  display: grid;
  gap: 16px;
}

/* 3 columnas auto-fit */
.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* 4 columnas auto-fit */
.cards.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* títulos de card: quitar subrayado en enlaces internos */
.card h3 a {
  text-decoration: none;
}

/* miniatura de card */
.card-thumb {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

/* ===========================
   DEMOS – igualar altura de thumbnails
   Ajusta la variable --demo-thumb-h si quieres otro alto
   =========================== */
:root{
  --demo-thumb-h: 220px; /* alto uniforme para todas las miniaturas */
}

/* Caso habitual: thumbnails como <div> con patrón (checker, waves, moire, radial)
   y/o contenedor .demo-canvas / .card-thumb / .pattern-thumb */
.cards.four .card .demo-canvas,
.cards.four .card .card-thumb,
.cards.four .card .pattern-thumb,
.cards.four .card > .checker,
.cards.four .card > .waves,
.cards.four .card > .moire,
.cards.four .card > .radial{
  width: 100%;
  height: var(--demo-thumb-h);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;        /* recorta sobrante para que todas queden iguales */
  display: block;
}

/* Por si el thumbnail es un <img>, lo ajustamos igual */
.cards.four .card img.thumb,
.cards.four .card .demo-canvas img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* rellena sin deformar */
}

/* (Opcional) un poco más bajo en móvil */
@media (max-width: 768px){
  :root{ --demo-thumb-h: 180px; }
}



/* ===============================
   CABECERA Y NAVEGACIÓN
   =============================== */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

/* marca/logo */
.logo {
  font-family: Archivo, Inter, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo.small {
  font-size: 18px;
}

/* lista del menú */
.site-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* enlaces del menú */
.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px solid transparent;
}

/* estado activo en el menú */
.site-nav a[aria-current="page"] {
  border-color: var(--accent);
}


/* ===============================
   BOTONES
   =============================== */
.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
}

/* primario */
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* secundario */
.btn-secondary {
  background: #fff;
  color: var(--ink);
}

/* estilo enlace */
.btn-link {
  border: none;
  padding: 0 6px;
}

/* CTA/accent */
.btn-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}


/* ===============================
   ACCESIBILIDAD (saltos y focus)
   =============================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  outline: var(--focus);
}


/* ===============================
   FOOTER
   =============================== */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

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

.footer-grid a {
  text-decoration: none;
}


/* ===============================
   BREADCRUMBS / SUBNAV
   =============================== */
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* subnav y navegación interna */
.subnav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.inpage-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

/* variante con más aire */
.roomy {
  gap: 24px !important;
}

/* enlaces de la navegación interna */
.inpage-nav a {
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
}


/* ===============================
   FORMULARIOS
   =============================== */
.form {
  max-width: 720px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* inputs de texto */
.field input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

/* inputs de email */
.field input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

/* selects */
.field select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

/* textarea */
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

/* checkboxes en línea con etiqueta */
.field.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.actions {
  margin-top: 16px;
}

.status {
  margin-top: 10px;
  color: var(--muted);
}

.backtotop {
  text-decoration: none;
}


/* ===============================
   CONTROLES Y DEMOS
   =============================== */
.controls {
  display: flex;
  justify-content: flex-end;
}

.demo-canvas {
  height: 260px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.demo-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* leve ajuste del toggle */
.toggle input {
  transform: translateY(1px);
}

/* =========================================================
   HERO con carrusel a pantalla ancha
   - Contenedor negro con imagen de fondo desaturada
   - Altura mínima para que el texto respire
   - Bordes redondeados y overflow oculto para recortar imágenes
   ========================================================= */
.hero.carousel {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

/* ---------------------------------------------------------
   Pista del carrusel (todas las slides en fila horizontal)
   - Ocupa todo el hero con position absolute + inset:0
   - Usamos grid con flujo en columnas al 100% de ancho
   - La transición permite el “deslizamiento”
   --------------------------------------------------------- */
.carousel-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.6s ease;
}

/* Cada slide ocupa su celda de la pista */
.slide {
  position: relative;
}

/* Imagen de cada slide
   - llena todo el contenedor
   - se oscurece un poco (opacity .35) y satura algo menos
   - object-fit: cover para no deformar */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.8);
}

/* ---------------------------------------------------------
   Contenido del hero (títulos, lead, CTA)
   - Se pinta por encima de las imágenes (z-index:2)
   - Tipografía en blanco y con ligera sombra para legibilidad
   --------------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-right: 12px;
  padding-bottom: 60px;
  padding-left: 12px;
  max-width: 780px;
  color: #fff; /* => todo el texto del hero en blanco */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Botón primario dentro del hero:
   invertimos a “botón claro” sobre fondo oscuro */
.hero-ctas .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ---------------------------------------------------------
   Indicadores (puntos) del carrusel
   - centrados en la parte baja del hero
   - el punto activo aumenta la opacidad
   --------------------------------------------------------- */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  opacity: 0.5;
}

.carousel-dots button[aria-selected="true"] {
  opacity: 1;
}


/* =========================================================
   BLOQUES CON IMAGEN EN EL LATERAL (aside)
   - Grid de 2 columnas: contenido + imagen
   ========================================================= */
.block-with-aside {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: center;
}

/* Apariencia de la imagen lateral (tarjeta suave) */
.block-with-aside .block-aside {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}


/* =========================================================
   SECCIÓN DE CONTACTO (grid formulario + imagen lateral)
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

/* Columna lateral del contacto (imagen a toda altura) */
.contact-side {
  height: 100%;
}

.contact-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}


/* =========================================================
   DEMOS DE PATRONES (fondos CSS puros)
   - checker: damero
   - waves: líneas + gradiente para relieve
   - moire: doble rejilla con leve ángulo
   - radial: rayos con máscara central
   ========================================================= */

/* Damero */
.checker {
  --s: 40px;
  background:
    conic-gradient(#000 25%, #fff 0 50%, #000 0 75%, #fff 0) 0 0 / var(--s) var(--s),
    conic-gradient(#fff 25%, #000 0 50%, #fff 0 75%, #000 0) calc(var(--s) / 2) calc(var(--s) / 2) / var(--s) var(--s);
}

/* Ondas */
.waves {
  --gap: 18px;
  --amp: 12px;
  background:
    repeating-linear-gradient(0deg, #000 0 2px, transparent 2px calc(var(--gap))),
    radial-gradient(100% 50% at 0 50%, transparent calc(50% - var(--amp)), rgba(0, 0, 0, 0.08) calc(50% - var(--amp) + 1px));
  background-blend-mode: multiply;
}

/* Moiré */
.moire {
  --stripe: 3px;
  --angle: 3deg;
  background:
    repeating-linear-gradient(0deg, #000 0 var(--stripe), transparent var(--stripe) calc(var(--stripe) * 2)),
    repeating-linear-gradient(var(--angle), #000 0 var(--stripe), transparent var(--stripe) calc(var(--stripe) * 2));
}

/* Radial con máscara central */
.radial {
  --density: 48;
  background:
    repeating-conic-gradient(#000 0 calc(360deg / var(--density)), transparent 0 calc(720deg / var(--density)));
  mask: radial-gradient(circle at center, #000 55%, rgba(0, 0, 0, 0.6) 58%, transparent 70%);
}


/* =========================================================
   ACCESIBILIDAD: reducir animaciones si el usuario lo pide
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .waves,
  .moire,
  .radial {
    animation: none !important;
  }
}


/* =========================================================
   RESPONSIVE / TABLET
   - Pila las columnas en contacto y bloques con aside
   - Ajusta el padding del hero para mantener proporciones
   ========================================================= */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .block-with-aside {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 56px;
    padding-right: 12px;
    padding-bottom: 52px;
    padding-left: 12px;
  }
}


/* =========================================================
   LOGO EN EL HEADER
   - Tamaño por defecto (desktop)
   ========================================================= */
.site-header .logo img {
  height: 100px; /* Ajusta aquí si lo necesitas (80px, 90px, etc.) */
  width: auto;
  display: block;
}

/* Versión móvil: logo más pequeño */
@media (max-width: 768px) {
  .site-header .logo img {
    height: 64px;
  }
}

/* (Opcional) si el logo del FOOTER se hace grande y lo quieres pequeño: */
.site-footer .logo img{
  height: 50px;
  width: auto;
}

/* Bloque con logo Llotja */
.footer-llotja {
  text-align: center;
  padding: 24px 100px;
  border-top: 1px solid var(--border, #ddd);
  background-color: #fff;
}

.footer-llotja img {
  height: 60px;       /* Ajusta el tamaño aquí */
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-llotja img:hover {
  opacity: 1;
}



/* Contacte: ocultar imagen lateral solo en móvil */
@media (max-width: 768px){
  /* el formulario ya ocupa 1 columna; aseguramos el layout */
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* oculta el aside con la imagen de la derecha */
  .contact-grid .contact-side{
    display: none !important;
  }
}

/* Foco accesible global */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 0, 110, .5); /* mismo --focus */
  outline-offset: 2px;
  border-radius: 8px;
}

.form-error {
  margin-top: 6px;
  color: #b00020;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce){
  .carousel-track{ transition:none !important; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Texto del hero en blanco, incluidos enlaces tipo link */
.hero-content a { color: #fff; }

/* El botón primario del hero ya queda negro sobre blanco con esta regla existente */
.hero-ctas .btn-primary { /* ya está en tu CSS; aquí no cambies nada */ }


/* Hero: texto blanco (excepto el botón primario que ya tiene estilos propios) */
.hero .hero-content,
.hero .hero-content h1,
.hero .hero-content .lead,
.hero .hero-content a.btn-link { color:#fff; }

/* Puntos del carrusel (bolas) */
.hero.carousel { position: relative; }
.hero .carousel-dots {
  position: absolute; left:50%; bottom:1rem; transform:translateX(-50%);
  display:flex; gap:.5rem;
}
.hero .carousel-dots button {
  width:10px; height:10px; border:0; border-radius:50%;
  background: rgba(255,255,255,.45); cursor:pointer;
}
.hero .carousel-dots button[aria-selected="true"] { background:#fff; }

/* Asegurar desplazamiento de pista (por si no estaba) */
.hero .carousel-track { display:flex; transition: transform .4s ease; }
.hero .slide { min-width:100%; }




/* Overlay genérico para miniaturas dentro de .card */
.card .thumb-wrap { position: relative; overflow: hidden; border-radius: inherit; }
.card .thumb-wrap img.card-thumb { display:block; width:100%; height:auto; }
.card .thumb-overlay {
  position: absolute; inset: 0;
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:12px; background: rgba(0,0,0,.8); color:#fff;
  opacity:0; transform: translateY(6%); transition: opacity .25s ease, transform .25s ease;
}
.card:hover .thumb-overlay { opacity:1; transform: translateY(0); }

/* Tipografía pequeña y legible */
.card .thumb-overlay p { margin:0; font-size:.95rem; line-height:1.35; }


/* Footer inferior: Llotja + redes */
.footer-llotja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;                 /* separación entre logo y redes */
  padding: 12px 0;
}

.footer-llotja .llotja-logo {
  height: 28px;              /* ajusta a tu gusto */
  width: auto;
  display: block;
}

.footer-llotja .footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-llotja .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;               /* caja clicable cómoda */
  height: 32px;
  border-radius: 8px;
  transition: background-color .2s ease, filter .2s ease, opacity .2s ease;
}

.footer-llotja .social-link img {
  display: block;
  width: 20px;               /* tamaño del icono */
  height: 20px;
  transition: filter .2s ease, opacity .2s ease;
}

/* Hover: “un poquito más oscuro” sobre el icono */
.footer-llotja .social-link:hover img {
  filter: brightness(0.85);
}

/* Opcional: dar un leve fondo al pasar el ratón */
.footer-llotja .social-link:hover {
  background-color: rgba(0,0,0,.06);
}





/* ====================================
   WIDGET CHAT FLOTANTE
   estilos para el boton q sale a la izquierda
   ==================================== */
.chat-pill {
  position: fixed;
  bottom: 24px;
  left: 24px; /* aqui lo pongo a la izquierda como dijiste */
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.chat-pill:hover {
  transform: translateY(-2px); /* efecto botecito */
}

.chat-widget {
  position: fixed;
  bottom: 80px; /* justo encima del boton */
  left: 24px;
  width: 300px; /* no muy grande, pa q no moleste */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 1000;
  display: none; /* invisible al principio */
}

/* clase para cuando se abre */
.chat-widget.is-open {
  display: block;
  animation: popUp 0.3s ease-out;
}

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

/* estilos de dentro del chat */
.chat-widget h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 12px;
}

.chat-widget .field {
  margin-bottom: 10px; /* un poco menos d margen q el grande */
}

.chat-widget label {
  font-size: 13px;
  color: var(--muted);
}

.chat-widget input, 
.chat-widget textarea, 
.chat-widget select {
  padding: 8px;
  font-size: 14px;
}

.chat-widget textarea {
  min-height: 80px;
}

.chat-widget .actions {
  margin-top: 10px;
}

.chat-widget .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
}

.close-chat {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.close-chat:hover {
  color: var(--ink);
}


/* =========================================
   ESTILOS DEL POPUP NEWSLETTER (Modal)
   ========================================= */

/* Fondo oscuro que cubre toda la pantalla */
.news-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparente */
  z-index: 2000; /* Por encima de todo, incluso del chat */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  
  /* Oculto por defecto */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

/* Clase para mostrarlo */
.news-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

/* La caja blanca del contenido */
.news-content {
  background: white;
  width: 100%;
  max-width: 800px;
  display: flex; /* Para poner imagen al lado del form */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); }
  to { transform: translateY(0); }
}

/* Botón cerrar popup */
.news-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  z-index: 10;
}

/* Columnas */
.news-form-col {
  flex: 1;
  padding: 40px;
}

.news-img-col {
  flex: 1;
  background-color: #eee;
}

.news-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ajustes Responsive (Móvil) */
@media (max-width: 768px) {
  .news-content {
    flex-direction: column-reverse; /* Imagen arriba o abajo según prefieras */
  }
  .news-img-col {
    height: 150px;
  }
  .chat-widget {
    width: 90%; /* Que no se salga en móviles */
    right: 5%;
    bottom: 70px;
  }
}
