/* ===========================================================
   AURORA CLUB
   style.css
   Versão 2.1.0
=========================================================== */



/* ===========================================================
   RESET
=========================================================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#050505;

    color:#FFFFFF;

    font-family:'Montserrat',sans-serif;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

    opacity:0;

    transition:opacity .8s ease;

}

body.loaded{

    opacity:1;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

video{

    display:block;

    width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    background:none;

    border:none;

    cursor:pointer;

    font:inherit;

}

input,
select,
textarea{

    font:inherit;

    outline:none;

    border:none;

}

section{

    position:relative;

}



/* ===========================================================
   ROOT
=========================================================== */

:root{

    /* CORES */

    --black:#050505;

    --black-soft:#111111;

    --white:#FFFFFF;

    --gray:#C7C7C7;

    --gold:#B89A58;

    --glass:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.08);

    /* LAYOUT */

    --container:1440px;

    --header-height:92px;

    --radius:14px;

    /* ESPAÇAMENTOS */

    --space-8:8px;

    --space-16:16px;

    --space-24:24px;

    --space-40:40px;

    --space-64:64px;

    --space-80:80px;

    --space-120:120px;

    /* ANIMAÇÕES */

    --transition:.35s ease;

}



/* ===========================================================
   SCROLLBAR
=========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#080808;

}

::-webkit-scrollbar-thumb{

    background:#3c3c3c;

}

::-webkit-scrollbar-thumb:hover{

    background:#666666;

}



/* ===========================================================
   SELECTION
=========================================================== */

::selection{

    background:var(--gold);

    color:#FFFFFF;

}



/* ===========================================================
   CONTAINER
=========================================================== */

.container{

    width:min(

        calc(100% - 80px),

        var(--container)

    );

    margin:auto;

}



/* ===========================================================
   TIPOGRAFIA
=========================================================== */

h1{

    font-size:68px;

    font-weight:700;

    line-height:1.1;

}

h2{

    font-size:46px;

    font-weight:600;

    margin-bottom:18px;

}

h3{

    font-size:26px;

    font-weight:600;

}

p{

    color:var(--gray);

    font-size:18px;

    line-height:1.8;

}



/* ===========================================================
   BOTÕES
=========================================================== */

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:62px;

    padding:0 42px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    color:#FFFFFF;

    letter-spacing:2px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:#FFFFFF;

    color:#050505;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:58px;

    padding:0 34px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:#FFFFFF;

    color:#050505;

}



/* ===========================================================
   UTILITÁRIOS
=========================================================== */

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.show{

    opacity:1;

    transform:translateY(0);

}



/* ===========================================================
   PROGRESS BAR
=========================================================== */

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:2px;

    background:#FFFFFF;

    opacity:.35;

    z-index:999999;

}

/* ===========================================================
   HEADER
=========================================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:var(--header-height);

    display:flex;
    align-items:center;

    z-index:9999;

    transition:var(--transition);

}

.header.scrolled{

    background:rgba(5,5,5,.82);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

}



/* ===========================================================
   HEADER CONTAINER
=========================================================== */

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:100%;

}



/* ===========================================================
   LOGO
=========================================================== */

.header-logo{

    display:flex;

    align-items:center;

}

.header-logo img{

    width:72px;

    transition:var(--transition);

}

.header.scrolled .header-logo img{

    width:62px;

}



/* ===========================================================
   MENU
=========================================================== */

.header-nav{

    display:flex;

    align-items:center;

}

.header-menu{

    display:flex;

    align-items:center;

    gap:42px;

}

.header-menu li{

    display:flex;

    align-items:center;

}

.header-menu a{

    position:relative;

    display:flex;

    align-items:center;

    height:40px;

    font-size:15px;

    font-weight:500;

    letter-spacing:1px;

    color:#FFFFFF;

    transition:var(--transition);

}



/* ===========================================================
   MENU HOVER
=========================================================== */

.header-menu a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:2px;

    width:0;

    height:2px;

    background:#FFFFFF;

    transform:translateX(-50%);

    transition:var(--transition);

}

.header-menu a:hover{

    color:var(--gold);

}

.header-menu a:hover::after,

.header-menu a.active::after{

    width:100%;

}



/* ===========================================================
   REDES SOCIAIS
=========================================================== */

.header-social{

    display:flex;

    align-items:center;

    gap:18px;

}



/* ===========================================================
   LINKS SOCIAIS
=========================================================== */

.social-link{

    width:70px;

    height:70px;

    display:block;

    background-position:center;

    background-repeat:no-repeat;

    background-size:contain;

    transition:var(--transition);

}

.social-link:hover{

    opacity:.7;

    transform:translateY(-2px);

}



/* ===========================================================
   SVG
=========================================================== */

.whatsapp{

    background-image:url("assets/icons/whatsapp.png");

}

.instagram{

    background-image:url("assets/icons/instagram.png");

}

.youtube{

    background-image:url("assets/icons/youtube.png");

}

.soundcloud{

    background-image:url("assets/icons/soundcloud.png");

}



/* ===========================================================
   BOTÃO MENU
=========================================================== */

.menu-button{

    display:none;

    justify-content:center;

    align-items:center;

    width:48px;

    height:48px;

    color:#FFFFFF;

    font-size:32px;

}



/* ===========================================================
   MENU MOBILE
=========================================================== */

.mobile-menu{

    position:fixed;

    top:0;

    right:-380px;

    width:340px;

    max-width:92%;

    height:100vh;

    background:#0a0a0a;

    padding:120px 40px 50px;

    display:flex;

    flex-direction:column;

    z-index:99999;

    transition:.45s ease;

}

.mobile-menu.open{

    right:0;

}



/* ===========================================================
   FECHAR MENU
=========================================================== */

.mobile-close{

    position:absolute;

    top:28px;

    right:28px;

    width:40px;

    height:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:#FFFFFF;

}



/* ===========================================================
   MENU MOBILE
=========================================================== */

.mobile-nav{

    width:100%;

}

.mobile-nav ul{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.mobile-nav a{

    display:block;

    font-size:22px;

    font-weight:500;

    color:#FFFFFF;

    transition:var(--transition);

}

.mobile-nav a:hover{

    color:var(--gold);

}



/* ===========================================================
   SOCIAL MOBILE
=========================================================== */

.mobile-social{

    margin-top:auto;

    display:flex;

    gap:20px;

}



/* ===========================================================
   OVERLAY
=========================================================== */

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:99998;

}

.mobile-overlay.open{

    opacity:1;

    visibility:visible;

}



/* ===========================================================
   RESPONSIVO HEADER
=========================================================== */

@media(max-width:1100px){

    .header-nav{

        display:none;

    }

    .header-social{

        display:none;

    }

    .menu-button{

        display:flex;

    }

}



@media(max-width:768px){

    .header{

        height:82px;

    }

    .header-logo img{

        width:58px;

    }

    .header.scrolled .header-logo img{

        width:52px;

    }

}

/* ===========================================================
   HERO
=========================================================== */

.hero{

    position:relative;

    min-height:100svh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}



/* ===========================================================
   HERO MEDIA
=========================================================== */

.hero-media{

    position:absolute;

    inset:0;

    background-image:url("assets/background/background-mosaico.png");

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

    transform:scale(1);

    animation:heroZoom 40s ease-in-out infinite alternate;

    z-index:1;

}



/* ===========================================================
   OVERLAY
=========================================================== */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            rgba(0,0,0,.72),

            rgba(0,0,0,.82)

        );

    z-index:2;

    pointer-events:none;

}



/* ===========================================================
   HERO CONTAINER
=========================================================== */

.hero .container{

    position:relative;

    z-index:3;

    display:flex;

    justify-content:center;

    align-items:center;

}



/* ===========================================================
   HERO CONTENT
=========================================================== */

.hero-content{

    width:100%;

    max-width:960px;

    margin:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}



/* ===========================================================
   HERO LOGO
=========================================================== */

.hero-logo{

    width:240px;

    margin-top:40px;      /* desce a logo */

    margin-bottom:40px;

    animation:fadeUp 1s ease forwards;

}


/* ===========================================================
   HERO TITLE
=========================================================== */

.hero-title{

    max-width:900px;

    font-size:clamp(42px, 5vw, 35px);

    margin-bottom:35px;
}


/* ===========================================================
   HERO ACTIONS
=========================================================== */

.hero-actions{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-bottom:90px;

    animation:fadeUp 1.8s ease forwards;

    position:relative;

    z-index:10;

}


/* ===========================================================
   HERO BUTTON
=========================================================== */

.hero-actions .btn-primary{

    min-width:320px;

}



/* ===========================================================
   HERO SCROLL
=========================================================== */

.hero-scroll{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    color:rgba(255,255,255,.75);

    font-size:12px;

    letter-spacing:4px;

    text-transform:uppercase;

    z-index:3;

    animation:scrollIndicator 2.8s infinite;

    pointer-events:none;

}

.hero-scroll::after{

    content:"";

    width:1px;

    height:60px;

    background:rgba(255,255,255,.35);

}



/* ===========================================================
   TRANSIÇÃO HERO
=========================================================== */

.hero::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:220px;

    background:

        linear-gradient(

            transparent,

            var(--black)

        );

    z-index:3;

    pointer-events:none;

}



/* ===========================================================
   RESPONSIVO HERO
=========================================================== */

@media(max-width:1200px){

    .hero-logo{

        width:210px;

    }

    .hero-title{

        font-size:58px;

    }

}



@media(max-width:992px){

    .hero-logo{

        width:180px;

    }

    .hero-title{

        font-size:46px;

        line-height:1.2;

    }

}



@media(max-width:768px){

    .hero{

        min-height:100svh;

    }

    .hero-logo{

        width:150px;

        margin-bottom:35px;

    }

    .hero-title{

        font-size:34px;

        margin-bottom:35px;

    }

    .hero-actions{

        width:100%;

    }

    .hero-actions .btn-primary{

        width:100%;

        min-width:unset;

    }

    .hero-scroll{

        bottom:25px;

    }

}



/* ===========================================================
   ANIMAÇÕES
=========================================================== */

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes scrollIndicator{

    0%{

        transform:translateX(-50%) translateY(0);

    }

    50%{

        transform:translateX(-50%) translateY(10px);

    }

    100%{

        transform:translateX(-50%) translateY(0);

    }

}

/* ===========================================================
   EVENTS
=========================================================== */

.events{

    padding:30px 0;

    background:var(--black);

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.event-card{

    position:relative;

    overflow:hidden;

    border-radius:var(--radius);

    background:#101010;

    transition:var(--transition);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    aspect-ratio:9/16;
}

.event-card:hover{

    transform:translateY(-8px);

}

.event-link{

    display:block;

}

.event-video{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .7s ease;
}

.event-card:hover .event-video{

    transform:scale(1.04);

}



/* ===========================================================
   LOCATION
=========================================================== */

.location{

    padding:140px 0;

    background:#080808;

}

.location-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:center;

}

.location-content h2{

    margin-bottom:30px;

}

.location-content address{

    margin:20px 0;

    color:var(--white);

    font-style:normal;

    font-size:18px;

    line-height:1.8;

}

.location-content p{

    margin-bottom:15px;

}

.location-content .btn-secondary{

    margin-top:30px;

}

.location-map{

    overflow:hidden;

    border-radius:var(--radius);

    background:#121212;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.location-map iframe{

    width:100%;

    height:520px;

    border:none;

}



/* ===========================================================
   REGISTER
=========================================================== */

.register{

    padding:140px 0;

    background:var(--black);

}

.register-form{

    width:100%;

    max-width:900px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.form-group{

    width:100%;

}

.register-form input,

.register-form select{

    width:100%;

    height:60px;

    padding:0 22px;

    border-radius:12px;

    background:#111111;

    border:1px solid rgba(255,255,255,.08);

    color:#FFFFFF;

    transition:var(--transition);

}

.register-form input::placeholder{

    color:#8f8f8f;

}

.register-form input:focus,

.register-form select:focus{

    border-color:var(--gold);

}

.register-form button{

    grid-column:span 2;

    justify-self:center;

    margin-top:20px;

    min-width:340px;

}



/* ===========================================================
   RESPONSIVO
=========================================================== */

@media(max-width:1200px){

    .events-grid{

        gap:22px;

    }

    .location-grid{

        gap:60px;

    }

}



@media(max-width:992px){

    .events-grid{

        grid-template-columns:1fr;

        max-width:700px;

        margin:auto;

    }

    .location-grid{

        grid-template-columns:1fr;

    }

    .location-map{

        margin-top:40px;

    }

}



@media(max-width:768px){

    .events{

        padding:100px 0;

    }

    .location{

        padding:100px 0;

    }

    .register{

        padding:100px 0;

    }

    .register-form{

        grid-template-columns:1fr;

    }

    .register-form button{

        grid-column:auto;

        width:100%;

        min-width:0;

    }

    .location-map iframe{

        height:380px;

    }

}

/* ===========================================================
   FOOTER
=========================================================== */

.footer{

    padding:100px 0 50px;

    background:#040404;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer .container{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.footer-logo{

    margin-bottom:35px;

}

.footer-logo img{

    width:90px;

}

.footer-content{

    max-width:650px;

}

.footer-content h3{

    margin-bottom:18px;

}

.footer-content p{

    margin-bottom:10px;

}

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    margin:45px 0;

}

.footer small{

    color:#7c7c7c;

    font-size:14px;

    letter-spacing:1px;

}



/* ===========================================================
   MOBILE SOCIAL
=========================================================== */

.mobile-social{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-top:auto;

    padding-top:50px;

}



/* ===========================================================
   UTILITÁRIOS
=========================================================== */

.hidden{

    display:none !important;

}

.visible{

    display:block !important;

}

.no-scroll{

    overflow:hidden;

}

.text-center{

    text-align:center;

}



/* ===========================================================
   ANIMAÇÕES GLOBAIS
=========================================================== */

.fade-in{

    animation:fadeIn .8s ease forwards;

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}



/* ===========================================================
   ELEMENTOS PADRÃO
=========================================================== */

a{

    transition:var(--transition);

}

button{

    transition:var(--transition);

}

input{

    transition:var(--transition);

}

select{

    transition:var(--transition);

}

video{

    transition:var(--transition);

}



/* ===========================================================
   FOCUS
=========================================================== */

a:focus-visible,

button:focus-visible,

input:focus-visible,

select:focus-visible{

    outline:2px solid var(--gold);

    outline-offset:3px;

}



/* ===========================================================
   RESPONSIVO TABLET
=========================================================== */

@media(max-width:992px){

    .container{

        width:min(

            calc(100% - 50px),

            var(--container)

        );

    }

    h1{

        font-size:52px;

    }

    h2{

        font-size:38px;

    }

}



/* ===========================================================
   RESPONSIVO MOBILE
=========================================================== */

@media(max-width:768px){

    .container{

        width:min(

            calc(100% - 32px),

            var(--container)

        );

    }

    h1{

        font-size:36px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:22px;

    }

    p{

        font-size:16px;

    }

    .footer{

        padding:80px 0 40px;

    }

    .footer-logo img{

        width:70px;

    }

    .footer-social{

        gap:18px;

        flex-wrap:wrap;

    }

}



/* ===========================================================
   RESPONSIVO PEQUENO
=========================================================== */

@media(max-width:480px){

    .section-header{

        margin-bottom:45px;

    }

    .hero-logo{

        width:130px;

    }

    .hero-title{

        font-size:30px;

    }

    .btn-primary{

        width:100%;

    }

    .btn-secondary{

        width:100%;

    }

}



/* ===========================================================
   FIM DO ARQUIVO
=========================================================== */