
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {  
  background-color: #ffffff;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 15px;
  position: relative;
}


body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #2e2e2e40 0%, transparent 70%);
  z-index: 0;
}


.wrapper {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  color: #000000;
  letter-spacing: 2px;
}


.profile-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 15px;
}



h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.username {
  color: #aaa;
  margin-bottom: 20px;
}


.card-btn {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 20px;
  margin: 12px 0;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 255, 0.15);
  cursor: pointer;
}

.card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: #161616;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 22px;
  color: #ffffff;
}

.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.text-box .tag {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.text-box .label {
  font-size: 16px;
  font-weight: 500;
}

.arrow {
  color: #ffffff;
  font-size: 16px;
}


.icon-box {
  width: 48px;
  height: 48px;
  background-color: #000B84;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 22px;
  color: #ffffff;
}

.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.text-box .tag {
  font-size: 10px;
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.text-box .label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 2px;
  font-weight: bold ;
}

.arrow {
  color: #000000;
  font-size: 16px;
}



.btn.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.btn.whatsapp {
  background: #d4af37;
}


.carousel {
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.22,.9,.31,1);
  list-style: none;
}

.carousel__slide {
  /* default: 3 slides visible */
  min-width: calc(100% / 3);
  padding: 6px; /* small gap between slides */
  display: flex;
  justify-content: center;
}

.carousel__slide img {
  display: block;
  width: auto;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.carousel__btn:active { transform: translateY(-50%) scale(0.97); }

.carousel__btn--prev { left: -15px; }
.carousel__btn--next { right: -15px; }

.carousel__nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.carousel__indicator {
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel__indicator.is-selected {
  background: #0000ff;
  box-shadow: 0 0 6px rgba(0,0,255,0.6);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  /* mobile: 1 slide */
  .carousel__slide { min-width: 100%; }
  .carousel__slide img { height: 140px; }
  .carousel__btn { width: 36px; height: 36px; }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* tablet: 2 slides */
  .carousel__slide { min-width: calc(100% / 2); }
  .carousel__slide img { height: 180px; }
}


footer {
  margin-top: 40px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.footer-netpixel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-netpixel img {
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-netpixel img:hover {
  opacity: 1;
}


.logo-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background-image: url('../img/logo.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  filter: blur(40px);
  z-index: 0;
}

.background-blur {
    top: -260px;
    width: 100%;
    opacity: .5;
    height: 520px;
    filter: blur(50px);
    position: absolute;
    will-change: filter;
    border-radius: 520px;
    background-size: cover;
    background-position: 50%;
    background-image: url(../img/logo.png);

}

.whatsapp-plug-icon {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 120px;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  cursor: pointer;
  background-color: #15cc74;
  transition: .3s;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/whatsplug.svg');
  background-size: 50% auto;
}

@media(max-width: 768px) {
  .whatsapp-plug-icon {
    bottom: 80px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
}

.whatsapp-plug-icon:hover {
  background-color: #15cc74;
}

.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before {
  content: '';
  position: absolute;
  opacity: 0;
  border: 4px solid #15cc74;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-border-radius: 50%;
  animation: WaveWhatsApp 1.5s ease infinite;
}

.whatsapp-plug-icon::after {
  animation-delay: .5s;
}

.whatsapp-plug-icon:hover::after {
  border: 4px solid #15cc74;
}

.whatsapp-plug-icon:hover::before {
  border: 4px solid #15cc74;
}

@keyframes WaveWhatsApp {
  0% {
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}