@font-face {
    font-family: mont;
    src: url(../Materiais/Montserrat-Regular.otf);
}

* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;

    color: #fff;
}




header {
    background-image: url(../Materiais/18.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 100vh;
}


.logo {
    height: 80px;
    padding: 20px;
}

.cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.menu-toggle {
    position: fixed;
    top: 48px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 1000;
}

nav.open {
    transform: translateY(0);
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    margin: 1rem 0;
    transition: color 0.3s;
}

nav a:hover {
    color: #00d8ff;
}

.redes {
    display: flex;
    gap: 40px;
    justify-content: space-between;

    & i {
        position: relative;
        right: 5.8rem;

    }

    & a {
        color: #fff;
        text-decoration: none;
    }

}

.conteudo-biografia {
    background-image: url('../Materiais/7.jpg');
    /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;

    min-height: 100vh;


}

.text-bio {
    padding: 20px;
    font-size: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.bio-container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: 10vh;
    top: 18vh;
}

.bio {
    width: 400px;
    height: 400px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bio::-webkit-scrollbar {
    width: 6px;
}

.bio::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.bio::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Agenda de Shows*/


.conteudo-agenda {
    background-color: #0f0f0f;
    padding: 40px;
    margin: 0 auto;
}

.agenda-section {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 8px 20px #0000001a;
    animation: fadeIn 1s ease-in-out;
}

.agenda-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #000000;
}

.show-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #000a91;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.show-info {
    flex: 1;
}

.show-info h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.show-info p {
    margin: 5px 0;
    color: #666;
}

.btn-confirmar {
    background: #202637;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-confirmar:hover {
    background: #19295c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Carrossel de Logos*/
:root {
  --gap: 32px;
  --speed: 28s; /* ajuste a velocidade do loop */
  --item-height: 64px; /* altura máxima dos logos */
  --fade-width: 80px;  /* largura das bordas com fade */
}


.brand-carousel {
  width: min(750px, 92vw);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #0f1115;
  /* Centralização horizontal e vertical */
  display: grid;
  place-items: center;
  margin: 0 auto;   /* garante que fique centralizado na largura */

 

}

.brand-carousel *{
    box-sizing: border-box;
}

/* Borda com gradiente para um efeito de "fade" nas laterais */
.brand-carousel::before,
.brand-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--fade-width);
  z-index: 2;
  pointer-events: none;
}

.brand-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(15,17,21,1), rgba(15,17,21,0));
}

.brand-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(15,17,21,1), rgba(15,17,21,0));
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  /* Damos largura grande para suportar o loop */
  width: max-content;
  /* Animação de translação infinita */
  animation: scroll var(--speed) linear infinite;
}

.brand-carousel:hover .carousel-track {
  animation-play-state: paused; /* pausa ao passar o mouse */
}

.carousel-item {
  flex: 0 0 auto;
  width: 75px;       /* largura fixa */
  height: 75px;      /* altura fixa */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(2px);
  transition: transform .2s ease, background .2s ease;
}

.carousel-item:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(255,255,255,0.12);
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}



/* Keyframes para mover o track continuamente para a esquerda */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } 
  /* -50% funciona porque duplicamos os itens: metade do conteúdo é o clone */
}

@media (prefers-color-scheme: light) {
  body { background: #f6f7fb; color: #111; }
  .brand-carousel::before {
    background: linear-gradient(to right, rgba(246,247,251,1), rgba(246,247,251,0));
  }
  .brand-carousel::after {
    background: linear-gradient(to left, rgba(246,247,251,1), rgba(246,247,251,0));
  }
  .carousel-item { background: rgba(0,0,0,0.06); }
  .carousel-item:hover { background: rgba(0,0,0,0.12); }
}

/*Galeria de Fotos*/

.conteudo-galeria-titulo {
    font-size: 20px;
    font-family: mont;
    margin: 20px 20px;

}




:root {
    --hue: 206;
    --bkg: var(--hue) 50% 96%;
    --text: var(--hue) 70% 9%;
    --dark: var(--hue) 70% 3%;
}

.conteudo-galeria {
    display: grid;
    place-items: center;
    background-color: #0f0f0f;
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;


}

.container {
    max-width: 1200px;
    margin: auto;

}



.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;

}

.image-item {
    flex: 1 0 28%;
    min-width: 200px;
    cursor: zoom-in;
}

.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 250ms cubic-bezier(0.79, 0.25, 0, 1.07);
}

.image-item:is(:hover, :focus) img {
    transform: scale(1.03);
}

.conteudo-contato {
    background-image: url(../Materiais/10.jpg);
    /* imagem padrão (desktop) */
    background-size: cover;
    background-position: left center;
    /* mantém a parte esquerda (foto do cantor) */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;

}



/* Estilização do título */
.conteudo-contato h1 {
    font-family: mont;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    text-align: right;
}

/* Estilização dos textos */
.conteudo-contato h3,
.conteudo-contato p {
    font-family: mont;
    color: #fff;
    text-align: right;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Estilização do botão */
.conteudo-contato button {
    font-family: mont;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff004c, #ff7a00);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.conteudo-contato button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    background: linear-gradient(90deg, #ff7a00, #ff004c);
}

.contato {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    gap: 20px;

}
footer {
    background: linear-gradient(90deg, #0f1115, #1a1f2c);
    color: #eef0f6;
    text-align: center;
    padding: 5px 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}

footer p {
    margin: 0;
    font-weight: 500;
    display: inline-flex;
    /* coloca logo e texto lado a lado */
    align-items: center;
    /* centraliza verticalmente */
    gap: 4px;
    /* espaço entre logo e texto */
}

footer span {
    color: #6c7cff;
    font-weight: 700;
    transition: color 0.3s ease;


}

footer a {
    list-style: none;
    text-decoration: none;
}

footer span:hover {
    color: #00d8ff;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Logo no footer */
.footer-logo {
    width: 5rem;
    /* tamanho padrão da logo */
    height: auto;
    /* mantém proporção */
}


/* Ajuste para mobile */
@media (max-width: 768px) {
    header {
        background-image: url(../Materiais/17.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        height: 100vh;
    }

    .conteudo-contato {
        background-image: url(../Materiais/11.jpg);
        /* outra imagem para mobile */
        background-position: right;
        background-size: cover;
        /* cobre toda a tela */
        padding: 5px;
    }

    .conteudo-contato h1 {
        font-family: mont;
        font-size: 1.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        margin-bottom: 10rem;
        text-align: right;
    }

    .conteudo-contato button {
        font-size: 1rem;
        /* botão menor */
        padding: 10px 20px;
    }
    nav a {
        font-size: 1.8rem;
    }

    .text-bio {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    footer p{
        font-size: 13px;
        gap: 3px;
    }

}








/* Garante que o menu funcione em qualquer tamanho de tela */


@media (max-width: 600px) {
    .show-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .show-info h3 {
        font-size: 1.4em;
    }

    .show-info p {
        font-size: 1.1em;
    }

    .btn-confirmar {
        padding: 8px 12px;
        font-size: 0.9em;
        margin-top: 10px;
        align-self: flex-start;
    }
}

@media (max-width: 500px) {
    .menu-toggle {
        top: 39px;
    }

    .logo {
        height: 60px;

    }

    .text-bio {
        font-size: 35px;
        position: relative;
        top: 25vh;
        padding: 30px;
    }

    .redes {

        gap: 30px;

        & i {
            right: 4.5rem;
        }
    }
}

@media (max-width: 1037px) {


    .bio-container {
        display: flex;
        justify-content: center;
        align-items: center;
        top: 25vh;
        right: 0;

    }
}

@media (min-width: 769px) {
    nav a {
        font-size: 2.5rem;
    }
}