/* 1. Caja limpia, márgenes y paddings a cero para todo */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Evita que las imágenes se desborden y se comporten de forma fluida */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 3. Tipografía base y herencia limpia para formularios */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

input, button, textarea, select {
  font: inherit;
}

.container img {
    width: 100%;
}

.floating-actions {
  position: fixed;
  bottom: max(env(safe-area-inset-bottom), 1rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(90vw, 320px);
  max-width: 320px;
  padding: 0 0.5rem;
  z-index: 9999;
  pointer-events: auto;
}


.floating-btn {

  padding: .5rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.floating-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.floating-btn svg {
  width: 38px;
  height: 38px;
  display: block;
  fill: white;
}

.floating-btn.email   { background: linear-gradient(135deg,#2563eb,#3b82f6); }
.floating-btn.instagram { background: radial-gradient(circle at 30% 30%, #ffd, #ff7a5a 20%, #c32aa3 60%, #3f5bdc 100%); }
.floating-btn.whatsapp { background: #25d366; }

