*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #012E40 !important;
}

/* Barra nav com efeitos e img de fundo (header)*/
.container{
    max-width: 1200px;
    margin: auto;
}

/* Nav bar */
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header{
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
    position: relative;
}

#nav{
    position: fixed; /* Alterado para tornar a barra de navegação fixa */
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 1.5rem;
    z-index: 2;
}

ul{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

#nav a{
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin: auto;
}

#nav li {
    list-style-type: none;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
  
#nav li:hover {
    color: #A69580; /* Cor da linha ao passar o mouse */
}
  
#nav li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; /* Espessura da linha de sublinhado */
    background-color: #A69580; /* Cor da linha por padrÃ£o */
    bottom: 0;
    left: 0;
    transform: scaleX(0); /* Inicialmente, a linha tem largura zero */
    transition: transform 0.3s ease;
}
  
#nav li:hover::after {
    transform: scaleX(1); /* Ao passar o mouse, a linha se expande */
    transform-origin: bottom left;
}


.chamada{
    height: 100vh;
    background-image: url(./tour.svg) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
}

.chamada h1 {
    font-size: 85px;
    -webkit-text-stroke-width: 1px; /* largura da borda */
    -webkit-text-stroke-color: #000; /* cor da borda */
    color: white;
    font-family: 'Kanit', sans-serif;
    
}
  
/* Fim da barra nav */

/* Parte dos tickets */
.info{
    text-align: center;
}

.info img{
    width: 35px;
    height: 25px;
    margin-top: 18px;
    margin-left: 10px;
}

.info p{
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    display: flex;
    justify-content: center;
    margin-top: 110px;
}

.info button {
    background-color: black;
    padding: 0.8em 1.8em;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    transition: .3s;
    z-index: 1;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Barlow Condensed', sans-serif;
}
   
.info button::before {
    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color:rgba(255, 255, 255, 0.8);
    transition: .5s ease;
    display: block;
    z-index: -1;
}
   
.info button:hover::before {
    width: 105%;
}
   
.info button:hover {
    color:black;
}
/* Fim das partes dos ticktes */

/* Configs do Footer e das redes sociais do artista */
footer{
    margin: 40px 0;
}

footer p{
    text-align: center;
    margin-top: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.Redes{
    margin-top: 180px;
    text-align: center;
}

.Redes a img {
    height: 35px;
    width: 35px;
    list-style-type: none;
    background-color: rgba(255, 255, 255, 0.8);
}
/* Fim das configs */

@media screen and (max-width: 576px){

    .Circus{
        margin-left: auto;
        margin-right: auto;
    }
    
    .info img{
        display: none;
    }

    .chamada {
        background-position: center;
        background-size: cover;
    }

    .chamada h1 {
        font-size: 60px; /* Ajustar o tamanho da fonte conforme necessário */
        text-align: center; /* Centralizar o texto */
        padding: 0 10px; /* Adicionar padding para evitar que o texto encoste nas bordas */
    }
    
}