@charset "utf-8";
/* CSS Document */

/* --- Variables de configuración --- */
:root {
  --color-native: #333;
  --color-whatsapp: #25D366;
  --color-facebook: #1877F2;
  --color-twitter: #000000;
  --color-text: #fff;
  --border-radius: 8px;
  --btn-font-family: 'Segoe UI', sans-serif;
}

/* Contenedor principal */
.share-widget {
  font-family: var(--btn-font-family);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px; /* Ajusta el ancho máximo según tu gusto */
  margin-left: 10px;
}

.text-share {
	font-weight: var(--font-bold);
    width: 100%;
}
/* Estilos generales para todos los botones */
.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%; /* Ocupan todo el ancho disponible */
  box-sizing: border-box;
}

/* Efecto Hover (al pasar el mouse) */
.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0.95;
}

/* Estilos específicos por red */
.btn-share.native {
  background-color: var(--color-native);
}

.btn-share.whatsapp {
  background-color: var(--color-whatsapp);
}

.btn-share.facebook {
  background-color: var(--color-facebook);
}

.btn-share.twitter {
  background-color: var(--color-twitter);
}

.btn-share.instagram {
  /* Degradado oficial de Instagram */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: white;
  border: none; /* Asegura que no tenga borde por defecto al ser <button> */
}

.btn-share.instagram:active {
  transform: scale(0.98); /* Efecto de clic */
}

/* Grupo de fallback (para desktop) */
.social-group {
  display: flex;
  flex-wrap: wrap; /* Permite que bajen de línea si no hay espacio */
  gap: 10px;
}

/* Ajuste para que los botones del grupo se vean bien en fila */
.social-group .btn-share {
  flex: 1; /* Se reparten el espacio equitativamente */
  width: 150px;
}

.swal2-input, .swal2-file, .swal2-textarea {
    box-sizing: border-box !important;
    width: auto !important;
    transition: border-color .1s, box-shadow .1s !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: .1875em !important;
    background: rgba(0, 0, 0, 0) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px rgba(0, 0, 0, 0) !important;
    color: inherit;
    font-size: 1.125em !important;
}

.swal2-input, .swal2-file, .swal2-textarea, .swal2-select, .swal2-radio, .swal2-checkbox {
    margin: 1em 2em 3px !important;
}

.swal2-input {
    height: 2.625em !important;
    padding: 0 .75em !important;
}


