
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.btn-custom {
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 9999px;
  transition: all 0.3s;
}
.btn-white {
  background-color: white;
  color: black;
}

.btn-white:hover {
  background-color: #e5e5e5;
}

.btn-black {
  background-color: black;
  color: white;
  border: 1px solid white;
}

.btn-black:hover {
  background-color: #222;
}

.modal {
  display: none;
}

.modal.show {
  display: flex;
}

/* Fade-in and slide-up on load */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.btn-custom {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-custom:hover {
  transform: scale(1.05);
}

.bg-bandas {
  background-image: url('img/fbandas.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.bg-bandas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.164); 
  z-index: -1;
}

.bg-negocios {
  position: relative;
  background-image: url('img/fbandas.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1rem;
  overflow: hidden;
}

.bg-streamer {
  background-image: url('img/fstaff.jpg');
  background-size: cover;
  background-position: center;
}

.social-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  padding: 5px;
}

.social-button img {
  width: 50px;          
  height: 50px;         
  border-radius: 50%;   
  object-fit: cover;    
  display: block;
  transition: transform 0.3s ease;
  background-color: white; 
}

.social-button img:hover {
  transform: scale(1.1);
}


.sidebar a {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sidebar a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.sidebar a:hover {
  background-color: #444;
}


.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #1e1e1e;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  color: white;
  animation: fadeUp 0.4s ease forwards;
  max-width: 400px;
  width: 90%;
}

.modal-content h2 {
  margin-bottom: 10px;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff4c4c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

