/* style.css */

/* Importación de fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  overflow-x: hidden;
  padding-top: 110px; /* altura de la navbar fija en escritorio */
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0.5rem;
    padding: 0;
    height: 40px;
    max-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


html {
  scroll-behavior: smooth;
}


/* Corrección global de desbordamientos en móvil */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}


@media (max-width: 768px) {
  body {
    padding-top: 110px; /* navbar más alta en móvil */
  }
}

/* Contenedor central reutilizable para layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Navbar fija en la parte superior */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #DBB1B3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  will-change: transform;
}



/* Contenedor general */
.navbar .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0 1rem;
}

/* Fila superior con logo y botón */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  transform: scale(1.3);
  transform-origin: left center;
}

.logo img {
  height: auto;
  max-height: 100%;
  width: 120px;
}

/* Botón hamburguesa */
#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    margin-right: 1rem;
  }
}

/* Enlaces de navegación */
.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 400;
  font-size: 1.2rem;
}

/* Hover con línea inferior */
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f2e1eb;
}

/* Móvil: menú en columna debajo del top-row */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 1rem;
    display: block;
  }

  .nav-links li {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .top-row {
    display: contents; /* elimina la fila extra en escritorio */
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .nav-links a {
    padding: 0;
    display: inline-block;
  }

  #menu-toggle {
    display: none;
  }
}


/* Sección principal con imagen destacada */
.hero-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ======= Sección Registro de Marca - Informativa ======= */
.registro-info {
  background-color: #f3c2d7;
  padding: 3rem 0rem;
}

.registro-info__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* separación entre párrafos y título */
  text-align: center;
}

/* Primer párrafo intro */
.registro-info__intro {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* Título destacado */
.registro-info__titulo {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  width: 100%;
  margin: 0 auto;
}

/* Segundo párrafo con más detalle */
.registro-info__detalle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .registro-info {
    padding: 3rem 1rem;
  }

  .registro-info__contenedor {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .registro-info__titulo {
    font-size: 1.2rem;
  }

  .registro-info__intro,
  .registro-info__detalle {
    font-size: 0.9rem;
  }
}

/* ======= Animación deslizamiento desde abajo ======= */
.desliz-up {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}

.desliz-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======= Sección Registro de Marca - Detalle ======= */
.registro-detalle {
  background-color: #f1e1ea;
  padding: 4rem 1rem;
}

.registro-detalle__contenedor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Texto */
.registro-detalle__texto {
  flex: 1 1 55%;
  max-width: 570px;
  margin-left: 90px;
  margin-top: 10px;
  overflow: visible; /* Asegura que el contenido no se corte */
}

.registro-detalle__texto h4 {
  font-size: 1.6rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 3rem;
}

.registro-detalle__texto ul {
  list-style-type: disc;
  padding-left: 1rem;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* Imagen */
.registro-detalle__imagen {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registro-detalle__imagen img {
  max-width: 70%;
  height: auto;
  border-radius: 6px;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .registro-detalle__contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .registro-detalle__texto {
    flex: 1 1 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    max-width: 100%;
  }

  .registro-detalle__imagen {
    margin-top: 2rem;
    flex: 1 1 100%;
  }

  .registro-detalle__texto ul {
    padding-left: 1rem;
    text-align: left;
  }
}

/* ======= Animaciones para Registro Detalle ======= */
.registro-slide {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}

/* Texto desde la izquierda */
.registro-slide.izquierda {
  transform: translateX(-60px);
}

/* Imagen desde la derecha */
.registro-slide.derecha {
  transform: translateX(60px);
}

/* Cuando son visibles */
.registro-slide.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Para eliminar puntos en ciertos <li> */
li.no_punto {
  list-style-type: none;
  padding-left: 0;
}

/* Clase opcional para forzar visibilidad si el JS falla */
.registro-slide.force-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}


/* ======= Sección Clientes ======= */
.clientes {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.clientes__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Textos superiores */
.clientes__textos {
  text-align: center;
  max-width: 900px;
}

.clientes__titulo {
  font-size: 1.2rem;
  font-weight: 550;
  color: #000000;
  margin-bottom: 2.5rem;
}

.clientes__subtitulo {
  font-size: 0.8rem;
  font-weight: bold;
  color: #000;
}

/* Galería de logos */
.clientes__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.clientes__logo img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.clientes__logo img:hover {
  transform: scale(1.05);
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .clientes__contenedor {
    gap: 2rem;
  }

  .clientes__titulo {
    font-size: 1rem;
  }

  .clientes__subtitulo {
    font-size: 1.3rem;
  }

  .clientes__logos {
    gap: 2rem;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    max-width: 45vw;
  }

  .clientes__logo img {
    width: 100%;
    height: auto;
  }
}

.clientes-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.clientes-slide.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ======= Sección Arrendamiento - Informativa ======= */
.arrendamiento-info {
  background-color: #f3c2d7;
  padding: 4rem 1rem;
}

.arrendamiento-info__contenedor {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Primer párrafo introductorio */
.arrendamiento-info__intro {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #333;
  width: 100%;
  margin: 0 auto;
}

/* Bloque con título + segundo párrafo */
.arrendamiento-info__bloque {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Título alineado a la izquierda */
.arrendamiento-info__titulo {
  font-size: 1.4rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

/* Segundo párrafo detallado */
.arrendamiento-info__detalle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .arrendamiento-info {
    padding: 3rem 1rem;
  }

  .arrendamiento-info__contenedor {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .arrendamiento-info__bloque {
    gap: 1.5rem;
  }

  .arrendamiento-info__titulo {
    font-size: 1.2rem;
  }

  .arrendamiento-info__intro,
  .arrendamiento-info__detalle {
    font-size: 0.9rem;
  }
}

.arrendamiento-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.arrendamiento-slide.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ======= Sección Inquilino - Informativa ======= */
.inquilino-info {
  background-color: #f1e1ea;
  padding: 4rem 1rem;
}

.inquilino-info__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Imagen izquierda */
.inquilino-info__imagen {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inquilino-info__imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  width: 90%;
}

/* Texto derecha */
.inquilino-info__texto {
  flex: 1 1 65%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  padding-top: 7%;
}

/* Bloque de textos internos */
.inquilino-info__bloque {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Párrafo principal */
.inquilino-info__descripcion {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* Título secundarios */
.inquilino-info__titulo {
  font-size: 1.4rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

.inquilino-info__titulo_2 {
  font-size: 1.1rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

/* Lista de servicios */
.inquilino-info__lista {
  list-style-type: disc;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .inquilino-info__contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .inquilino-info__imagen {
    flex: 1 1 100%;
  }

  .inquilino-info__texto {
    flex: 1 1 100%;
    text-align: left;
    padding: 0 1rem;
  }

  .inquilino-info__bloque {
    gap: 1.5rem;
  }

  .inquilino-info__descripcion,
  .inquilino-info__lista li {
    font-size: 1rem;
  }

  .inquilino-info__titulo {
    font-size: 1.2rem;
  }
}

/* ======= Animación lateral - Inquilino Info ======= */
.inquilino-slide {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.inquilino-slide.izquierda {
  transform: translateX(-60px);
}

.inquilino-slide.derecha {
  transform: translateX(60px);
}

.inquilino-slide.visible {
  opacity: 1;
  transform: translateX(0);
}



/* ======= Sección Divorcio - Informativa ======= */
.divorcio-info {
  background-color: #f3c2d7;
  padding: 4rem 1rem;
}

.divorcio-info__contenedor {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Primer párrafo introductorio */
.divorcio-info__intro {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #333;
  width: 100%;
  margin: 0 auto;
}

/* Bloque con título + segundo párrafo */
.divorcio-info__bloque {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Título alineado a la izquierda */
.divorcio-info__titulo {
  font-size: 1.4rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

/* Segundo párrafo detallado */
.divorcio-info__detalle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .divorcio-info {
    padding: 3rem 1rem;
  }

  .divorcio-info__contenedor {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .divorcio-info__bloque {
    gap: 1.5rem;
  }

  .divorcio-info__titulo {
    font-size: 1.2rem;
  }

  .divorcio-info__intro,
  .divorcio-info__detalle {
    font-size: 0.9rem;
  }
}

/* ======= Animación de entrada para Divorcio - Fondo rosa ======= */
.desliz-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.desliz-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ======= Sección separacion - Informativa ======= */
.separacion-info {
  background-color: #f1e1ea;
  padding: 4rem 1rem;
}

.separacion-info__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Imagen izquierda */
.separacion-info__imagen {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.separacion-info__imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  width: 70%;
}

/* Texto derecha */
.separacion-info__texto {
  flex: 1 1 65%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 500px;
  padding-top: 7%;
}

/* Bloque de textos internos */
.separacion-info__bloque {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  width: 100%;
}

.separacion-info_secundaria {
  line-height: 150%;
  font-size: 1.2rem;
  font-weight: 370;
}

/* Párrafo principal */
.separacion-info__descripcion {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* Título secundarios */
.separacion-info__titulo {
  font-size: 1.4rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

/* Lista de servicios */
.separacion-info__lista {
  list-style-type: disc;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.derrr{
  padding-left: 23px;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .separacion-info__contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .separacion-info__imagen {
    flex: 1 1 100%;
  }

  .separacion-info__texto {
    flex: 1 1 100%;
    text-align: left;
    padding: 0 1rem;
  }

  .separacion-info__bloque {
    gap: 1.5rem;
  }

  .separacion-info__descripcion,
  .separacion-info__lista li {
    font-size: 1rem;
  }

  .separacion-info__titulo {
    font-size: 1.2rem;
  }
}

/* ======= Animación lateral - Separación Divorcio ======= */
.divorcio-slide {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.divorcio-slide.izquierda {
  transform: translateX(-60px);
}

.divorcio-slide.derecha {
  transform: translateX(60px);
}

.divorcio-slide.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ======= Sección Despidos - Informativa ======= */
.despidos-info {
  background-color: #f3c2d7;
  padding: 4rem 1rem;
}

.despidos-info__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

/* Párrafo principal */
.despidos-info__descripcion {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
  width: 100%;
}

/* Título */
.despidos-info__titulo {
  font-size: 1.3rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  width: 100%;
  margin: 0 auto;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .despidos-info {
    padding: 3rem 1rem;
  }

  .despidos-info__contenedor {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .despidos-info__descripcion {
    font-size: 1.05rem;
  }

  .despidos-info__titulo {
    font-size: 1.15rem;
  }
}

/* ======= Animación desde abajo - Despidos Info ======= */
.desliz-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.desliz-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ======= Sección Despidos Final ======= */
.despidos-final {
  background-color: #f1e1ea;
  padding: 4rem 1rem;
}

.despidos-final__contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Imagen izquierda */
.despidos-final__imagen {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.despidos-final__imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Texto derecha */
.despidos-final__texto {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-right: 50px;
  padding-top: 50px;
}

.despidos-final__bloque {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  font-size: 1.1rem;
  line-height: 155%;
}



/* Párrafos */
.despidos-final__parrafo {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #333;
}


/* Título final */
.despidos-final__titulo {
  font-size: 1.2rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin-top: 1rem;
}

.despidos-final__titulo_2 {
  font-size: 1.3rem;
  font-weight: 650;
  color: #000000;
  text-align: left;
  margin-top: 1rem;
}

/* ======= Responsivo móvil ======= */
@media (max-width: 768px) {
  .despidos-final__contenedor {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }

  .despidos-final__texto {
    padding: 0 1rem;
  }

  .despidos-final__bloque {
    gap: 1.5rem;
  }

  .despidos-final__parrafo {
    font-size: 1.05rem;
    text-align: left;
  }

  .despidos-final__titulo {
    font-size: 1.15rem;
    text-align: left;
  }
}

/* ======= Animación lateral - Despidos Final ======= */
.despidos-slide {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.despidos-slide.izquierda {
  transform: translateX(-60px);
}

.despidos-slide.derecha {
  transform: translateX(60px);
}

.despidos-slide.visible {
  opacity: 1;
  transform: translateX(0);
}



/* ======= Footer principal ======= */
.footer {
  background-color: #8d1333;
  color: #fff;
  padding: 3rem 1rem;
  font-family: inherit;
}

/* Contenedor de columnas */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Navegación izquierda */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #f1e1ea;
}

/* Contacto derecho */
.footer-contact h2 {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}

/* Línea decorativa */
.footer-line {
  border: none;
  height: 1px;
  background-color: #f1e1ea;
  margin: 2rem auto;
  max-width: 1000px;
}

/* Zona inferior: ícono + copyright */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
}

.footer-icons {
  display: flex;
  gap: 0.75rem; /* espacio entre íconos */
  margin-bottom: 0.5rem;
  flex-direction: row;
}

.footer-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* asegura que el ícono se vea blanco */
  transition: transform 0.3s ease;
}

.footer-bottom img:hover {
  transform: scale(1.1);
}

.footer-copy {
  font-size: 0.75rem;
  text-align: center;
  color: #ffffff;

}

/* Responsive móvil */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    margin-top: 1rem;
  }

  .footer-nav li a {
    font-size: 1rem;
  }
}
/* ======= Botón flotante de WhatsApp ======= */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #1ab152;
  animation: shake 1s infinite;
}

.my-float {
  margin-top: 16px;
}

/* Animación opcional */
@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  75% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}

