*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif; /* o la que uses */
  background-color: #000;              /* si tu fondo base es negro */
  color: white;                        /* color de texto base */
  scroll-behavior: smooth;             /* para que los anchors se desplacen suave */
}

.container {
  max-width: 1400px; /* Limita el ancho en pantallas grandes */
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 768px) {
  /* Reglas CSS que se aplican SOLO en pantallas menores a 768px (celulares) */
}


/* ============================ */
/*         NAVBAR SUPERIOR     */
/* ============================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  padding: 10px 30px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  border-bottom: 4px solid #00cfff;
  overflow-x: auto; /* Evita que los enlaces se corten en pantallas pequeñas */
}

.navbar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap; /* permite que se acomoden en pantallas pequeñas */
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* se acomoda mejor en pantallas angostas */
}

.navbar a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  white-space: nowrap; /* evita que las palabras se corten en varias líneas */
}

.navbar a:hover,
.navbar a.activo {
  color: white;
  font-weight: bold;
}

.btn-llamar:hover {
  background: #37005e;
  transform: translateY(-2px);
}


/* ============================ */
/*         VERSIÓN MÓVIL       */
/* ============================ */

@media (max-width: 768px) {
  .navbar {
    padding: 10px 10px;
  }

  .navbar .container {
    padding: 0 10px;
    justify-content: center;
  }

  .navbar ul {
    gap: 12px;               /* Menor separación entre botones */
    justify-content: center; /* Centrado horizontal */
    flex-wrap: nowrap;
  }

  .navbar a {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}



/* ============================ */
/*      INICIO - PORTADA        */
/* ============================ */.portada-inicio {
  position: relative;
  background: url('../IMAGE/FONDOS/fondo_inicio.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  flex-direction: column;
  padding: 60px 0;
  overflow-x: hidden; /* 🔒 evita scroll horizontal */
}

.portada-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 50%, transparent);
  width: 100%;
  padding: 20px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: hidden; /* 🔒 también previene scroll desde aquí */
}

.portada-overlay .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow-x: hidden;
}

.portada-contenido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 0;
}

.portada-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  animation: slideFadeIn 1s ease-out forwards;
  max-width: 100%;
}

.portada-texto {
  margin-top: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.portada-texto h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 30px;
  opacity: 1 !important;
  animation: none !important;
  white-space: normal;
}

.boton-cotizar {
  display: inline-block;
  background: linear-gradient(to right, #0066cc, #0099ff);
  color: white;
  padding: 25px 55px;
  font-weight: bold;
  font-size: 2.2rem;
  border-radius: 30px;
  margin-top: 30px;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  animation: slideFadeIn 1.4s ease-out forwards;
  animation-delay: 0.4s;
}

.boton-cotizar:hover {
  background: linear-gradient(to right, #004c99, #007acc);
  transform: translateY(-2px);
}

.boton-cotizar span {
  margin-left: 10px;
  font-size: 1.5rem;
}



/* ===================== */
/*       VERSION MOVIL   */
/* ===================== */
@media (max-width: 768px) {
  .portada-inicio {
    height: auto;
    padding: 80px 20px 60px;
    background-attachment: scroll;
    text-align: center;
  }

  .portada-overlay {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
  }

  .portada-contenido {
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }

  .portada-logo {
    justify-content: center;
    align-items: center;
    animation: none;
    margin-bottom: 20px;
  }

  .portada-logo img {
    max-width: 160px;
    height: auto;
  }

  .portada-texto {
    margin: 0;
    padding: 0 10px;
    max-width: 95%;
  }

  .portada-texto h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    white-space: normal;
    word-break: break-word;
  }

  .boton-cotizar {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 15px;
    width: auto;
    text-align: center;
  }
}

.servicios-adicionales {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding: 0 20px;
}

.servicio-adicional {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  text-align: center;
}

.servicio-adicional img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.servicio-adicional p {
  font-size: 1.05rem;
  font-weight: bold;
  color: white;
  margin: 0;
  word-break: break-word;
}

@media (max-width: 768px) {
  .servicios-adicionales {
    flex-direction: column;
    align-items: center;
  }

  .servicio-adicional {
    max-width: 220px;
  }

  .servicio-adicional img {
    width: 80px;
  }

  .servicio-adicional p {
    font-size: 1rem;
  }
}


/* ============================ */
/*     ALCANDIAS             */
/* ============================ */
.alcaldias {
  position: relative; /* ✅ importante para que no se encime */
  background: url('../IMAGE/FONDOS/fondo_delegaciones.png') no-repeat center center fixed;
  background-size: cover;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  z-index: 1; /* opcional */
}

.alcaldia-texto {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: fadeInSlide 1.5s ease-in-out both;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .alcaldia-texto {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

/* Si no lo tienes, agrégalo a la siguiente sección para que no se encimen */
.hero {
  margin-top: 0;
  padding-top: 40px; /* asegura espacio arriba si lo necesitas */
  position: relative;
  z-index: 0;
}

/* ============================ */
/*     QUINEES SOMOS       */
/* ============================ */

.hero {
  background: url('../IMAGE/FONDOS/fondo_quienes_somos.png') no-repeat center center fixed;
  background-size: cover;
  /* height: 100vh; ❌ Esto se elimina para que no corte el contenido */
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 100px 60px 300px;
  position: relative;
  overflow-x: hidden;
  flex-direction: column; /* ✅ Asegura flujo vertical del contenido */
}

.hero-content {
  max-width: 1000px;
  width: 100%;
  z-index: 2;
  margin-left: 50px;
  padding-right: 20px;
  word-break: break-word;
}

.hero h2 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
  word-break: break-word;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  max-width: 600px;
  word-break: break-word;
}

.feature img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.feature h3 {
  color: #00c0ff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature p {
  font-size: 1.15rem;
  line-height: 1.6;
  word-break: break-word;
}

.icono-gancho {
  position: absolute;
  top: -5px;
  left: 3px;
  width: 220px;
  height: auto;
  z-index: 10;
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* SOLO aplica scroll hidden si la pantalla es menor o igual a 768px */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px; /* un poco menos de padding en móvil */
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
    padding-right: 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature img {
    width: 70px;
    height: 70px;
  }
}



/* ===================== */
/*       VERSION MOVIL   */
/* ===================== */
@media (max-width: 768px) {
  .hero {
    height: auto; /* quitar altura fija */
    padding: 120px 20px 60px; /* Ajustar padding para móvil */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-attachment: scroll; /* Fondo fijo causa problemas en móvil */
    text-align: center; /* textos centrados */
  }

  .hero-content {
    margin-left: 0; /* Quitar margen izquierdo excesivo */
    max-width: 100%; /* Que no desborde */
  }

  .hero h2 {
    font-size: 1.8rem; /* texto más pequeño en móvil */
    white-space: normal; /* evitar desbordamientos horizontales */
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1rem; /* tamaño adecuado para móvil */
    line-height: 1.5;
    width: 100%;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr; /* Una sola columna */
    gap: 25px;
  }

  .feature {
    flex-direction: column; /* elementos apilados verticalmente */
    align-items: center;
    text-align: center;
  }

  .feature img {
    width: 60px; /* imágenes reducidas */
    height: 60px;
  }

  /* Corrigiendo únicamente el ícono del gancho para móvil sin afectar tu diseño en escritorio */
  .hero .icono-gancho {
    position: absolute;
    top: 15px; /* Posición superior centrada y segura en móvil */
    left: 50%;
    transform: translateX(-50%);
    width: 70px; /* tamaño cómodo para móvil */
    height: auto;
    z-index: 10;
  }
}



/* ============================ */
/*     SECCIÓN SERVICIOS       */
/* ============================ */

.servicios {
  padding: 60px 20px;
  background: radial-gradient(circle, #1b1b1b 20%, #111 100%);
  text-align: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden; /* previene scroll lateral por desbordes */
}

.servicios h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  position: relative;
  word-break: break-word; /* rompe si hay nombres largos */
}

.servicios h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 6px;
  margin: 10px auto 0;
  background: #00cfff;
  border-radius: 10px;
  box-shadow: 0 0 12px #00cfff;
}

.servicio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  width: 100%;
}

.servicio-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  word-break: break-word; /* texto dentro nunca se desborda */
}

.servicio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.servicio-item button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.servicio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.servicio-item img:hover {
  transform: scale(1.05);
}

.servicio-item h3 {
  color: #00cfff;
  font-size: 1.3rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 10px;
  word-break: break-word;
}

.servicio-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
  word-break: break-word;
}

.servicios .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* ============================ */
/*        SECCIÓN GALERÍA      */
/* ============================ */

.titulo-seccion {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  position: relative;
  margin-bottom: 50px;
  word-break: break-word;
}

.titulo-seccion::after {
  content: "";
  display: block;
  width: 150px;
  height: 6px;
  margin: 10px auto 0;
  background: #00cfff;
  border-radius: 10px;
  box-shadow: 0 0 12px #00cfff;
}

section#galeria,
section#galeria * {
  color: white;
  font-family: 'Segoe UI', sans-serif;
  word-break: break-word;
}

section#galeria {
  background: #0b0b0b;
  padding: 60px 20px;
  text-align: center;
  overflow-x: hidden;
}

section#galeria h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

section#galeria p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
}

.carousel-container {
  position: relative;
  overflow: visible;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 10px;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.03);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00cfff;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #00aacc;
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  background-color: #000;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.modal-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content .close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #00cfff;
}

section#galeria .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* ============================ */
/*        VERSION MOVIL         */
/* ============================ */

@media (max-width: 768px) {
  section#galeria {
    padding: 40px 15px;
  }

  .carousel-container {
    max-width: 100%;
    padding: 20px 0;
    overflow: hidden;
  }

  .carousel-wrapper {
    overflow-x: auto; /* Permite scroll horizontal si es necesario */
  }

  .carousel {
    gap: 15px;
    padding: 0 10px;
  }

  .carousel-item {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }

  .carousel-item img {
    height: 180px;
    border-radius: 10px;
  }

  .carousel-btn.prev,
  .carousel-btn.next {
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
  }

  .carousel-btn.prev {
    left: 0px;
  }

  .carousel-btn.next {
    right: 0px;
  }
}



/* ============================ */
/*        DISEÑO CONTACTO  */
/* ============================ */


.contacto-kong {
  background: url('../IMAGE/FONDOS/FONDO_CONTACTO.png') no-repeat center center;
  background-size: cover;
  padding: 60px 40px;
  font-family: 'GoodTime Grotesk', sans-serif;
  color: white;
  position: relative;
}

.contacto-kong .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.contacto-contenido {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.contacto-izquierda {
  flex: 1;
  min-width: 300px;
}

.titulo-contacto {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 30px;
}

.iconos-contacto {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.item-icono {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background: none;
  box-shadow: none;
  word-break: break-word; /* ← evita cortes de texto */
}

.item-icono img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contacto-derecha {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.img-formulario {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.icono-gancho {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 280px;
  height: auto;
  z-index: 10;
}
/* ============================ */
/*       VERDION CELULAR        */
/* ============================ */


@media (max-width: 768px) {
  .contacto-kong {
    padding: 80px 20px 40px;
    background-attachment: scroll;
    text-align: center;
  }

  .contacto-contenido {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .contacto-izquierda,
  .contacto-derecha {
    flex: unset;
    width: 100%;
    max-width: 90%;
  }

  .titulo-contacto {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .iconos-contacto {
    align-items: flex-start;     /* Alineación izquierda */
    width: 100%;
    padding: 0 15px;
    gap: 20px;
  }

  .item-icono {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start; /* Alinea ícono + texto a la izquierda */
    text-align: left;
    width: 100%;
  }

  .item-icono img {
    width: 28px;  /* Tamaño reducido para móvil */
    height: 28px;
  }

  .item-icono span {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .img-formulario {
    max-width: 300px;
    margin-top: 10px;
  }

  .contacto-kong .icono-gancho {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    z-index: 5;
    opacity: 0.8;
  }
}



/* ============================ */
/*     FOOTER GRUAS KONG       */
/* ============================ */

.footer-kong {
  background: #000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 40px 0; /* <- sin padding superior */
  margin-top: 0;     /* <- sin espacio con bloque anterior */
}

.footer-kong .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.footer-left {
  flex: 1;
  min-width: 300px;
}

.logo-footer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 30px 0; /* <- eliminamos margen superior */
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-right: 30px;
}

.footer-image {
  width: 100%;
  max-width: 780px;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
}

.footer-barra {
  margin-top: 40px;
}

.copyright {
  text-align: center;
  padding: 25px 0;
  font-size: 0.95rem;
  color: #aaa;
  border-top: 1px solid #222;
  margin-top: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.copyright p {
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* ============================ */
/*         RESPONSIVE          */
/* ============================ */

@media (max-width: 768px) {
  .footer-kong {
    padding: 0 20px 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .logo-footer {
    margin-top: 0 !important;
    justify-content: center;
    align-items: center;
    width: 150px;
  }

  .footer-image {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
  }

  .copyright {
    font-size: 0.85rem;
    padding: 20px 10px;
  }
}


/* ============================ */
/*     BOTONES FLOTANTES       */
/* ============================ */
.botones-flotantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.btn-flotante {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.btn-flotante img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.btn-flotante:hover {
  transform: scale(1.1);
}
