/* ==========================
   RESET
========================== */

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

:root{

    --yellow:#ffd166;
    --orange:#ff8c42;
    --red:#ff5e5b;

    --bg:
        linear-gradient(
            135deg,
            #ffcc70,
            #ff8c42,
            #ff5e5b
        );

    --glass:rgba(255,255,255,.15);

    --text:#ffffff;

    --navbar-height:80px;

}


/* ==========================
   BODY
========================== */

body{

    font-family:Arial,sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    padding-top:var(--navbar-height);

}


/* ==========================
   LINKS
========================== */

a{

    color:white;

    text-decoration:none;

    transition:.2s;

}

a:hover{

    opacity:.8;

}


/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

}

.navbar-inner{

    height:var(--navbar-height);

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    box-shadow:0 4px 20px rgba(0,0,0,.15);

}

.navbar a{

    font-weight:bold;

    letter-spacing:2px;

    text-transform:uppercase;

    padding:10px 15px;

}

.navbar a:hover{

    color:var(--yellow);

}


/* ==========================
   CONTAINER GERAL
========================== */

.site{

    max-width:1400px;

    margin:auto;

}


/* ==========================
   HERO / SLIDES
========================== */

.slide{

    width:100%;

}

.slide img{

    width:100%;

    height:65vh;

    object-fit:cover;

    display:block;

    border-radius:0 0 40px 40px;

    box-shadow:0 10px 40px rgba(0,0,0,.2);

}


/* ==========================
   SEÇÕES
========================== */

.section{

    padding:80px 30px;

}

.section-title{

    text-align:center;

    font-size:3rem;

    letter-spacing:5px;

    margin-bottom:10px;

    text-shadow:0 5px 20px rgba(0,0,0,.2);

}

.section-subtitle{

    text-align:center;

    opacity:.9;

    margin-bottom:30px;

}

.section-text{

    max-width:800px;

    margin:auto;

    text-align:justify;

}


/* ==========================
   MEMBROS
========================== */

.members{

    display:flex;

    justify-content:center;

    gap:50px;

    flex-wrap:wrap;

    margin-top:50px;

}

.member{

    text-align:center;

}

.member p{

    font-weight:bold;

    margin-bottom:15px;

}

.member img{

    width:220px;

    height:220px;

    object-fit:cover;

    border-radius:50%;

    border:7px solid white;

    box-shadow:0 0 40px rgba(255,255,255,.4);

    transition:.3s;

}

.member img:hover{

    transform:
        scale(1.05)
        rotate(-2deg);

}


/* ==========================
   AGENDA
========================== */

.shows{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.show-grid{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.show-card{

    width:300px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    border-radius:25px;

    padding:30px;

    box-shadow:0 10px 35px rgba(0,0,0,.15);

    transition:.3s;

}

.show-card:hover{

    transform:translateY(-10px);

}

.show-card img{

    width:100%;

    border-radius:15px;

    margin:15px 0;

}

.show-card p{

    margin-bottom:12px;

}


/* ==========================
   CONTATOS
========================== */

.contacts{

    max-width:500px;

    margin:auto;

    text-align:center;

    font-size:1.1rem;

}

.contacts p{

    margin-bottom:10px;

}


/* ==========================
   FOOTER
========================== */

footer{

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(10px);

    text-align:center;

    padding:50px;

    margin-top:50px;

}

footer p{

    font-size:.95rem;

}


/* ==========================
   RESPONSIVO
========================== */

@media (max-width:768px){

    :root{

        --navbar-height:120px;

    }

    .navbar-inner{

        flex-direction:column;

        gap:10px;

        padding:15px;

    }

    .slide img{

        height:35vh;

        border-radius:0;

    }

    .section-title{

        font-size:2rem;

    }

    .member img{

        width:170px;

        height:170px;

    }

    .show-card{

        width:90%;

    }

}