.Boton{
    padding: 10px 20px;
    background: var(--brand-orange);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    width: fit-content;
    transition: 0.2s;
    margin-top: 15px;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.Boton:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
}
.Boton-Sep{
    margin-top: 20px;
}

@media (max-width: 820px) {
.Boton-Sep {
        margin-top: 20px;
        align-self: center;
    }
}

.theme-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--header-text);
    transition: color 0.2s ease;
}

/**=======================SOCIAL MEDIA BUTTONS=======================*/
.social {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 1rem;
  list-style: none;
}

.social li {
  position: relative;
  /* flex-basis: 4.5rem; Mantiene un tamaño fijo para los íconos */
  flex-basis: 4rem; /* Ligeramente más pequeños para móvil, si se desea */
}

.social li::after {
  position: absolute;
  content: attr(data-tooltip);
  inset: -45% auto auto 50%;
  z-index: -1;
  translate: -50%;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  background: var(--bg, #070707);
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
    visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.social li:has(a:hover, a:focus-visible)::after {
  opacity: 1;
  visibility: visible;
  inset-block-start: -60%;
}

.social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 1.75rem;
  color: var(--bt-outline);
  border: 1px solid;
  border-radius: 100%;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.social a > i {
  position: relative;
  z-index: 1;
}

.social a::after {
  position: absolute;
  content: "";
  inset: 100% 0 0;
  background: var(--bg, #070707);
  pointer-events: none;
  transition: inset 0.3s ease-in-out;
}

.social a:hover,
.social a:focus-visible {
  color: #fff;
}

.social a:hover::after,
.social a:focus-visible::after {
  inset-block-start: 0;
}