@media (min-width: 768px) {
  .contenedor-principal {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

    /*------------- Botones flotantes --------------*/
    .floating-bt {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .55rem;
    }
    .floating-bt a {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      box-shadow: 0 6px 14px rgba(0,0,0,.12);
      font-size: 1.05rem;
      transition: transform .14s ease, filter .14s ease;
      text-decoration: none;
    }
    .floating-bt a.whatsapp { background: #25D366; }
    .floating-bt a.facebook { background: #1877f2; }
    .floating-bt a:hover { transform: scale(1.08); filter: brightness(1.05); }
    .floating-bt a.instagram {  background: #E1306C; 
}


    /* Utilidades */
    .lead { color: #444; }
    .highlight { color: #e74c3c; font-weight: 700; }
    .contact a { color: #0b5ed7; text-decoration: none; }
    .contact a:hover { text-decoration: underline; }

.whatsapp-icon {
  display: inline-block;
  width: 60px;   /* tamaño del ícono */
  height: 60px;
  transition: transform 0.3s ease;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}
.whatsapp-icon {
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.whatsapp-btn {
  border: none;        /* Quita el borde negro */
  background: none;    /* Quita el fondo gris */
  padding: 0;          /* Quita espacio extra */
  cursor: pointer;     /* Que se vea clickeable */
}
.whatsapp-btn:focus {
  outline: none;       /* Quita el borde al hacer clic */
}
