/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;


}


html, body {
  touch-action: manipulation; /* Permite el scroll pero bloquea otras interacciones como el zoom */
}

:root {
  /* Colors */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #175d69 ;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;
  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;
  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;
  /* Site max width */
  --site-max-width: 1300px;
}
html {
  scroll-behavior: smooth;
}
/* Stylings for whole site */
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
img {
  width: 100%;
}
:where(section, footer) .section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}
section .section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}
section .section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background: var(--secondary-color);
  border-radius: var(--border-radius-s);
}



/* Navbar styling */
header {
  z-index: 5;
  width: 100%;
  position: fixed;
 background: #000;

}
header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  max-width: var(--site-max-width);
}
.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}
.navbar .nav-menu {
  gap: 10px;
  display: flex;
}
.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}



/* Estilo general de la imagen */
.logo {
  display: flex !important;        /* Usamos flexbox para centrar la imagen si es necesario */
  justify-content: left !important; /* Centra la imagen horizontalmente */
  align-items: center !important;   /* Centra la imagen verticalmente */
  width: 100% !important;           /* Hace que el contenedor tenga el 100% de ancho */
  height: 50px !important;          /* Define una altura específica para la barra de navegación */
  overflow: hidden !important;      /* Asegura que cualquier exceso de imagen no se vea */
}

/* Estilo de la imagen dentro del contenedor */
.logo img {
  width: auto !important;           /* La imagen ajusta su tamaño según el contenedor */
  max-width: 60% !important;       /* La imagen no debe exceder el ancho del contenedor */
  height: auto !important;          /* Mantiene la proporción original de la imagen */
  object-fit: contain !important;   /* Asegura que la imagen se ajuste al tamaño sin deformarse */
}

/* Estilo del texto */
.logo-text {
  display: none; /* Ocultamos el texto por defecto */
}

/* Media Query para pantallas más pequeñas (móviles) */
@media (max-width: 768px) {
  .logo {
    height: 40px !important;        /* Reduce la altura en pantallas pequeñas */
  }

  .logo img {
    width: 52% !important;         /* Ajusta el tamaño de la imagen al 100% del contenedor */
    max-width: 100% !important;     /* Asegura que la imagen no se haga más grande que el contenedor */
    display: block !important;      /* Muestra la imagen */
  }

  .logo-text {
    display: none !important; /* El texto sigue oculto en móviles */
  }
}

/* Media Query para pantallas grandes (laptop y escritorio) */
@media (min-width: 1024px) {
  .logo {
    height: 50px !important;        /* Ajusta la altura a un valor más estándar para pantallas grandes */
  }

  .logo img {
    width: auto !important;        /* Ajusta la imagen para que no se haga más ancha */
    max-width: 40% !important;     /* Asegura que la imagen no se haga más grande que el contenedor */
  }

  .logo-text {
    display: none !important; /* Asegura que el texto esté oculto en pantallas grandes */
  }
}





/* Estilos para la sección Hero */
.hero-section {
  background: linear-gradient(to bottom, #175d69 23%, #330c43 95%);
  padding-top: 120px; /* Aumentamos el espacio superior para dar más margen al navbar */
  position: relative;
  min-height: 80vh; /* Reducimos la altura de la sección */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Asegura que todo se alinee de forma más eficiente */
}

.section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--site-max-width);
  margin: 0 auto;
  width: 100%; /* Asegura que ocupe todo el espacio */
  flex-wrap: wrap; /* Permite que los elementos se ajusten cuando no haya espacio suficiente */
}

.hero-details {
  flex-basis: 50%; /* Ajusta el ancho del texto */
  padding: 20px;
  font-size: 1rem; /* Disminuye el tamaño de la fuente */
}

.hero-details .subtitle {
  color: #ffffff;
  font-size: 1.6rem; /* Disminuye el tamaño del subtítulo */
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-details .description {
  font-size: 1rem; /* Tamaño de texto más pequeño para la descripción */
  line-height: 1.5;
  color: #ffffff;
}

.hero-image-wrapper {
  flex-basis: 50%; /* Ajusta el ancho de la imagen */
  padding: 0 20px; /* Reducido padding superior e inferior */
  display: flex;
  justify-content: center;
  align-items: center; /* Centra la imagen vertical y horizontalmente */
  height: 100%; /* Asegura que ocupe todo el alto disponible */
  margin-top: -50px; /* Sube la imagen más arriba */
}

.hero-image {
  width: 80%; /* Hacemos que ocupe todo el ancho del contenedor */
  height: 80%; /* La imagen ahora ocupa todo el alto del contenedor */
  object-fit: cover; /* Ajusta la imagen para que cubra el contenedor sin deformarse */
  border-radius: var(--border-radius-m);
  margin-top: 20px;
}

/* Estilos para los botones */
.buttons .button {
  background-color: #3498db; /* Color de fondo */
  color: white; /* Color de texto */
  padding: 12px 24px; /* Reduce el relleno de los botones */
  font-size: 1rem; /* Disminuye el tamaño de la fuente en los botones */
  border: none;
  border-radius: 30px; /* Bordes redondeados */
  text-decoration: none; /* Sin subrayado */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons .button:hover {
  background-color: #2980b9; /* Cambio de color al pasar el ratón */
  transform: translateY(-5px); /* Efecto de elevar el botón */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column; /* Cambia la dirección a columna en móviles */
    justify-content: center; /* Centra los elementos */
    align-items: center;
    padding: 20px;
  }

  .hero-details, .hero-image-wrapper {
    flex-basis: 100%; /* Ambos ocupan el 100% del ancho en móvil */
    text-align: center; /* Centra el texto */
  }

  .hero-image-wrapper {
    width: 100%; /* Asegura que la imagen ocupe todo el ancho disponible */
    height: 80%; /* La imagen ahora ocupará solo el 80% del alto disponible */
    display: flex;
    justify-content: center; /* Centra la imagen dentro de su contenedor */
    align-items: center;
    margin-top: -30px; /* Sube un poco la imagen */
  }

  .hero-image {
    width: 100%; /* La imagen ocupa el 100% del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    object-fit: cover; /* Hace que la imagen cubra el contenedor sin distorsionarse */
    max-height: none; /* Elimina el límite de altura */
  }

  .hero-details {
    margin-bottom: 20px; /* Añade más espacio entre el texto y la imagen */
    font-size: 1rem; /* Disminuye el tamaño de la fuente en móvil */
  }

  .hero-details .subtitle {
    font-size: 1.05rem; /* Disminuye el tamaño del subtítulo en móvil */
    display: none;
  }

  .section-content {
    max-height: auto; /* Elimina cualquier límite de altura para que no se corte el contenido */
  }
}






























/* About section styling */
.about-section {
  padding: 120px 0;
  background: var(--light-pink-color);
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 25px;
}

.about-section .about-details {
  max-width: 50%;
}

.about-section .about-details .section-title {
  padding: 0;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: left;
  font-size: var(--font-size-m);
}

.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-l);
  transition: 0.2s ease;
}




















/* Mobile responsive styles */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

 


  .about-section .about-image-wrapper .about-image {
    height: 250px;
    width: 250px;
  }

  .about-section .about-details {
    max-width: 100%;
    text-align: center;
  }

  .about-section .about-details .text {
    font-size: var(--font-size-s); /* Reduce font size for smaller screens */
    margin: 20px 0;
  }

  .about-section .social-link-list {
    gap: 15px;
  }

  .about-section .social-link-list .social-link {
    font-size: var(--font-size-m); /* Adjust social link size for smaller screens */
  }
}


.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--white-color);
  transition: 0.2s ease;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: var(--font-size-l);
}


/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 60px;
  }

  .menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 60px);
  }
}

/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }

  body.show-mobile-menu {
    overflow: hidden;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: var(--font-size-l);
    display: block;
  }
  

 

  .navbar #menu-open-button {
    color: #fff;
  }

  .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .navbar .nav-menu {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    transition: left 0.2s ease;
  }

  body.show-mobile-menu .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    display: block;
    margin-top: 17px;
    padding: 10px 22px;
    color: var(--dark-color);
    font-size: var(--font-size-l);
  }




  @media (max-width: 900px) {
    .hero-section .section-content {
      text-align: center;
      gap: 30px;
      justify-content: center;
      padding: 0%;
      flex-direction: column; 
    }
  
    .hero-section .hero-details .buttons {
      order: 2;
      justify-content: center;
      flex-direction: column; 
      gap: 15px;
      margin-top: 20px; /* Arreglé la 'x' en 20px */
      margin-bottom: 20px; 
    }
  
    .hero-section .hero-details {
      order: 3; 
    }
  
    .hero-section .hero-image-wrapper {
      order: 4; /* Cambié este valor para mover la imagen al final */
      max-width: 100%;
      margin-bottom: 0; 
    }
  
    .hero-section img {
      width: 90%;
      height: auto;
      object-fit: cover;
    }
  
    .hero-section .hero-details :is(.subtitle, .description) {
      max-width: 90%;
      font-size: var(--font-size-m);
      margin: 10px auto;
    }
  
    .hero-section .hero-details .button {
      padding: 8px 20px;
      font-size: var(--font-size-s);
    }
  }
  
.about-section .section-content {
  gap: 70px;
  flex-direction: column-reverse;
}

.about-section .about-image-wrapper .about-image {
  width: 100%; /* Cambia a 100% para que ocupe todo el ancho disponible */
  max-width: 400px; /* Ajusta el tamaño máximo según lo necesites */
  height: auto; /* Mantiene la proporción de la imagen */
}

/* Estilos específicos para móviles */
@media (max-width: 768px) {
  .about-section .about-image-wrapper .about-image {
      width: 100%; /* Puedes ajustar este valor según tus necesidades */
      max-width: none; /* Permite que la imagen se expanda más allá del tamaño máximo */
  }
}

}


/* Estilos generales para la sección de servicios */
.services-section {
  padding: 80px 20px;
  /* Aumenté el padding para hacer la sección más grande */
  background: linear-gradient(to bottom, #175d69 23%, #330c43 95%);
  /* Gradiente solicitado */
  text-align: center;
  color: white;
  /* Cambié el color del texto a blanco para que se vea bien sobre el gradiente */
}

.services-section h2 {
  font-size: 3rem;
  /* Aumenté el tamaño del título */
  margin-bottom: 30px;
}

.services-section p {
  font-size: 1.2rem;
  /* Aumenté el tamaño del texto */
  margin-bottom: 40px;
}

/* Contenedor de los servicios */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columnas en pantallas grandes */
  gap: 30px;
  /* Aumenté el espacio entre las tarjetas */
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo para cada tarjeta de servicio */
.service-card {
  background-color: #ffffff;
  /* Las tarjetas ahora son blancas */
  padding: 30px;
  /* Aumenté el padding de las tarjetas */
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* Aumenté la sombra para que sea más pronunciada */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  /* Hice el hover más pronunciado */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  /* Sombra más fuerte en hover */
}

.service-icon {
  width: 110px;
  /* Aumenté el tamaño del icono */
  height: 110px;
  margin-bottom: 20px;
  /* Aumenté el espacio debajo del icono */
}

.service-card h3 {
  font-size: 1.2rem;
  /* Aumenté el tamaño del texto */
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 1.1rem;
  color: #555;
  /* Cambié el color del texto a un gris más oscuro para buena legibilidad */
  margin-bottom: 25px;
  /* Aumenté el espacio entre el texto y el botón */
}

/* Estilo para los botones */
.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  /* Reducí el tamaño del botón */
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  /* Reducí el tamaño del texto del botón */
  transition: background-color 0.3s;
}

.service-btn:hover {
  background-color: #0056b3;
}

/* Estilos responsive */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas en pantallas medianas */
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en pantallas más pequeñas */
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    /* 1 columna en pantallas muy pequeñas (móviles) */
  }

  .service-card {
    padding: 20px;
    /* Reduje el padding en móviles */
  }

  .service-icon {
    width: 100px;
    height: 100px;
    /* Aumenté un poco el tamaño del icono en móviles */
  }

  .service-btn {
    padding: 6px 15px;
    /* Reducí aún más el tamaño del botón en móviles */
    font-size: 0.9rem;
    /* Reducí el tamaño del texto del botón en móviles */
  }
}

/* Estilos generales para la sección */
.portfolio-section {
  padding: 40px 20px;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Mostrar el párrafo por defecto (pantallas pequeñas) */
.portfolio-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Ocultar el párrafo en pantallas grandes */
@media (min-width: 1024px) {
  .portfolio-section p {
    display: none;
    /* Ocultar el párrafo en pantallas grandes */
  }
}

/* Contenedor de los items */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columnas en pantallas pequeñas */
  gap: 15px;
  /* Reducido el espacio entre los elementos */
  margin-top: 30px;
}

/* Estilos para las imágenes */
.portfolio-item img {
  width: 90%;
  /* Aumentar el tamaño de la imagen para reducir los márgenes */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  /* Asegurarse de que no haya margen extra en la imagen */
  margin: 0 auto;
  /* Centrar la imagen */
}

/* Media Query para pantallas grandes */
@media (min-width: 1024px) {
  .portfolio-section {
    padding: 80px 40px;
  }

  .portfolio-section h2 {
    font-size: 3rem;
  }

  /* Cambiar el diseño de los items en pantallas grandes */
  .portfolio-items {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columnas en pantallas grandes */
    gap: 25px;
    /* Un poco más de espacio entre los items en pantallas grandes */
  }

  /* Hacer las imágenes un poco más grandes en pantallas grandes */
  .portfolio-item img {
    width: 100%;
    /* Las imágenes ocuparán todo el espacio disponible */
  }
}

.contact-section {
  background: linear-gradient(to bottom, #175d69 23%, #330c43 95%);
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: 'poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  display: block; /* Siempre visible */
}

/* Ocultar el texto en pantallas grandes (solo el <p>) */
.contact-section p {
  display: block;
}

@media (min-width: 769px) {
  .contact-section p {
    display: none; /* Oculta solo el párrafo en pantallas grandes */
  }
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.6rem;
    display: block; /* Asegura que el h2 se mantenga visible en móviles */
  }

  .contact-section p {
    font-size: 1rem;
    display: block; /* Asegura que el <p> se vea en móviles */
  }

  form {
    padding: 20px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 1rem;
  }
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

form {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  /* Tamaño más pequeño */
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

form input::placeholder,
form textarea::placeholder {
  color: #333;
}

form input:focus,
form textarea:focus {
  border-color: #007bff;
}

form textarea {
  height: 120px;
  resize: none;
  font-family: "poppins";
}

form button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%; /* Asegura que el botón tenga el mismo ancho que los inputs */
}

form button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  form {
    padding: 20px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 1rem;
  }
}


/* Estilos del pie de página */
footer {
  background-color: #000;
  padding: 20px 0;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.follow-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icon {
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00aced;
  /* Puedes cambiar este color al que prefieras */
}

/* Enlaces de pie de página */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.privacy-policy {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.privacy-policy:hover {
  color: #00aced;
  /* Puedes cambiar este color al que prefieras */
}

.copy-text {
  color: white;
  font-size: 14px;
  margin: 0;
}

/* Responsividad */
@media (max-width: 768px) {
  .social-icons {
    gap: 15px;
  }

  .social-icon {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .copy-text,
  .privacy-policy {
    font-size: 12px;
  }
}








/* Estilos para los botones flotantes */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Estilos generales de los botones flotantes */
.floating-btn {
  position: fixed;
  bottom: 20px;
  padding: 15px;
  border-radius: 50%;
  background-color: #ffffff; /* Fondo blanco para que las imágenes resalten */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 999;
}

.floating-btn.phone {
  left: 20px;
  background-color: #34b7f1; /* Azul de teléfono */
}

.floating-btn.whatsapp {
  right: 20px;
  background-color: #25D366; /* Verde de WhatsApp */
}

.floating-btn .btn-icon {
  width: 40px; /* Ajusta el tamaño de las imágenes */
  height: 40px; /* Ajusta el tamaño de las imágenes */
  object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
}

/* Efecto al pasar el mouse */
.floating-btn:hover {
  transform: scale(1.1);
}

/* Responsividad */
@media (max-width: 768px) {
  .floating-btn {
      padding: 12px;
  }

  .floating-btn .btn-icon {
      width: 35px;
      height: 35px;
  }
}
 

