:where([class^="ri-"])::before {
  content: "\f3c2";
  font-family: "remixicon" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  mask-image: linear-gradient(to top, transparent, black 60%);
  -webkit-mask-image: linear-gradient(to top, transparent, black 60%);
  box-shadow: inset 0 -100px 50px -30px rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-section .relative {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* Gradiente adicional para suavizar a transição */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
  pointer-events: none;
}

.glass-card {
  background: rgba(191, 216, 240, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 116, 218, 0.2);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.track-card {
  transition: transform 0.3s ease;
}

.track-card:hover {
  transform: translateY(-5px);
}

.date-row {
  transition: all 0.3s ease;
}

.date-row:hover {
  background-color: rgba(10, 116, 218, 0.1);
}

.photo-grid img {
  width: 100%;
  height: 180px !important;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.clay-button {
  box-shadow: 0 0 20px rgba(10, 116, 218, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.clay-button:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #0A74DA, #00FFFF);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
}

.clay-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(10, 116, 218, 0.7);
}

.social-icon {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.social-icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #0A74DA, #00FFFF);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-icon:hover {
  transform: translateY(-3px) rotate(5deg);
}

.social-icon:hover:after {
  opacity: 0.3;
}

.futuristic-title {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #0A74DA, #00FFFF);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: center;
  justify-content: center;
  display: flex;
}

.futuristic-title:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 2px;
  color: #00ffff66;
  z-index: -1;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.glow-effect {
  box-shadow: 0 0 15px rgba(10, 116, 218, 0.5);
}

.floating-particles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.particle-neon {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #0A74DA;
  border-radius: 50%;
  animation: float-up var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 0 15px #0A74DA,
              0 0 30px rgba(10, 116, 218, 0.6);
  opacity: 0;
}

@keyframes float-up {
  0% {
    transform: translate(var(--start-x), var(--start-y)) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) scale(1.2);
    opacity: 0;
  }
}

.cyber-border {
  position: relative;
  border-radius: 10px;
  padding: 2px;
  overflow: hidden;
}

.cyber-border:before {
  border-radius: 10px;
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0A74DA, transparent, #00FFFF, transparent);
  z-index: -1;
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.glitch-text {
  position: relative;
  animation: glitch 3s infinite;
  font-size: 40px !important;
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
  line-height: 1.2;
}

@keyframes glitch {
  0% { transform: skew(0deg); }
  20% { transform: skew(0deg); }
  21% { transform: skew(3deg); }
  23% { transform: skew(0deg); }
  40% { transform: skew(0deg); }
  41% { transform: skew(-3deg); }
  43% { transform: skew(0deg); }
  100% { transform: skew(0deg); }
}

.latest-release-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 300px !important;
  border: 2px solid transparent;
  background: linear-gradient(45deg, rgba(10, 116, 218, 0.3), rgba(0, 255, 255, 0.1));
  background-clip: padding-box;
  box-shadow: 0 0 15px rgba(10, 116, 218, 0.2);
}

.latest-release-image:hover {
  border: 2px solid transparent;
  background: linear-gradient(45deg, rgba(10, 116, 218, 0.4), rgba(0, 255, 255, 0.2));
  background-clip: padding-box;
  box-shadow: 0 0 20px rgba(10, 116, 218, 0.3);
}

.latest-release-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  border-radius: 10px;
}

@keyframes grow {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

#instagram{
  cursor: pointer;
  animation: pulse 3s infinite ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  70% { transform: scale(1.8); }
  80% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

#ouvir{
  border-radius: 10px;
}

#img-instagram {
  border-radius: 10px;
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

#img-galhardo {
  width: 100%;
  height: 180px !important;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}

#midia-galhardo important{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

#img-galhardo important{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Media Queries para Mobile */
@media screen and (max-width: 768px) {
  .relative.w-\[375px\] {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-image {
    height: 100vh;
    width: 100vw;
    object-position: center;
    transform: translate(-50%, -50%) !important;
  }

  .hero-section {
    height: 100vh;
  }

  .hero-section .relative {
    height: 100vh;
  }

  .glitch-text {
    font-size: 28px !important;
  }

  .photo-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .track-card {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }

  .track-card .w-12 {
    margin: 0 1rem 0 0;
  }

  .glass-card {
    margin: 0.5rem;
    padding: 0.75rem;
  }

  .date-row td {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .clay-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.875rem;
  }

  .latest-release-image {
    height: auto !important;
    max-height: 350px;
  }

  #img-instagram {
    height: auto !important;
    max-height: 250px;
  }

  #img-galhardo {
    height: auto !important;
    max-height: 200px;
  }

  .futuristic-title {
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }

  footer {
    padding: 2rem 1rem;
  }
}

/* Media Query para telas muito pequenas */
@media screen and (max-width: 375px) {
  .glitch-text {
    font-size: 24px !important;
  }

  .track-card {
    padding: 0.5rem;
  }

  .social-icon {
    width: 2rem;
    height: 2rem;
  }

  .clay-button {
    max-width: 240px;
    font-size: 0.8rem;
  }

  .latest-release-image {
    max-height: 300px;
  }

  #img-instagram {
    max-height: 200px;
  }

  #img-galhardo {
    max-height: 180px;
  }

  .futuristic-title {
    font-size: 1.25rem;
  }

  section {
    padding: 1.5rem 0.75rem;
  }
}

/* Mantendo animações e efeitos em todas as telas */

/* Animação da barra do hero como linha de áudio */
@keyframes audioWave {
  0% {
    clip-path: polygon(
      0% 50%, 10% 40%, 20% 60%, 30% 30%, 40% 70%, 
      50% 20%, 60% 80%, 70% 30%, 80% 60%, 90% 40%, 100% 50%
    );
    box-shadow: 0 0 5px rgba(10, 116, 218, 0.5);
  }
  50% {
    clip-path: polygon(
      0% 50%, 10% 60%, 20% 30%, 30% 70%, 40% 40%, 
      50% 80%, 60% 20%, 70% 60%, 80% 30%, 90% 70%, 100% 50%
    );
    box-shadow: 0 0 20px rgba(10, 116, 218, 0.8),
                0 0 30px rgba(0, 255, 255, 0.6);
  }
  100% {
    clip-path: polygon(
      0% 50%, 10% 40%, 20% 60%, 30% 30%, 40% 70%, 
      50% 20%, 60% 80%, 70% 30%, 80% 60%, 90% 40%, 100% 50%
    );
    box-shadow: 0 0 5px rgba(10, 116, 218, 0.5);
  }
}

.hero-section .w-32.h-1 {
  animation: audioWave 4s ease-in-out infinite;
  background: linear-gradient(90deg, #0A74DA, #00FFFF);
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 180px !important;
  height: 6px !important;
  position: relative;
  overflow: hidden;
}

.hero-section .w-32.h-1:hover {
  animation-play-state: paused;
  box-shadow: 0 0 25px rgba(10, 116, 218, 0.9),
              0 0 35px rgba(0, 255, 255, 0.7);
}

.hero-section .w-32.h-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0A74DA, #00FFFF);
  filter: blur(2px);
  opacity: 0.5;
}

.presskit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 45px;
    border: none;
    outline: none;
    color: #fff;
    background: #000;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 6px;
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(10, 116, 218, 0.5);
}

.presskit-button.loading {
    cursor: wait;
    opacity: 0.8;
    transform: scale(0.98);
}

.presskit-button .loading-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.g-loader {
    transform-origin: center;
    animation: rotate 2s linear infinite;
}

.g-path {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: draw 2s ease-in-out infinite;
}

.g-fill {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: draw 2s ease-in-out infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes draw {
    0% {
        stroke-dashoffset: 283;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -283;
    }
}

.presskit-button:before {
    content: '';
    background: linear-gradient(45deg, #0A74DA, #00FFFF, #0A74DA, #ffffff, #0A74DA);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(8px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 15s linear infinite;
    border-radius: 6px;
    opacity: 0.8;
}

.presskit-button.loading:before {
    animation: glowing 5s linear infinite;
    opacity: 0.6;
}

.presskit-button:active {
    transform: scale(0.98);
}

.presskit-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 6px;
}

@keyframes glowing {
    0% { 
        background-position: 0 0;
        filter: blur(8px) brightness(1.2);
    }
    50% { 
        background-position: 400% 0;
        filter: blur(8px) brightness(1.5);
    }
    100% { 
        background-position: 0 0;
        filter: blur(8px) brightness(1.2);
    }
}

.presskit-button span {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(10, 116, 218, 0.5);
}

.hidden {
    display: none !important;
}

.fixed.bottom-4.right-4.z-50 a {
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(10, 116, 218, 0.3), rgba(0, 255, 255, 0.1));
    background-clip: padding-box;
    box-shadow: 0 0 15px rgba(10, 116, 218, 0.2);
}

.fixed.bottom-4.right-4.z-50 a:hover {
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(10, 116, 218, 0.4), rgba(0, 255, 255, 0.2));
    background-clip: padding-box;
    box-shadow: 0 0 20px rgba(10, 116, 218, 0.3);
}