*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0a0a0a;
    color:white;
    font-family:Poppins,sans-serif;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    border-bottom:1px solid #7b2cff;
}

.logo img{
    height:60px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
}

nav a:hover{
    color:#a855ff;
}

.hero{
    height:90vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url("../img/hero.jpg");

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-family:Cinzel,serif;
    font-size:5rem;
    color:#bb86fc;
}

.hero p{
    margin:20px 0;
    font-size:1.2rem;
}

.hero-image{
width:300px;
max-width:300px;
height:auto;
margin:40px 0;
border-radius:15px;
border:2px solid #7b2cff;
box-shadow:0 0 30px rgba(123,44,255,.35);
}

.btn{
    padding:15px 30px;
    background:#7b2cff;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

section{
    padding:100px 8%;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#bb86fc;
    font-family:Cinzel,serif;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

#sobre{

    position: relative;

    padding: 100px 8%;

    overflow: hidden;

    background: #0a0a0a;
     border-bottom:1px solid #7b2cff;
     border-top: 1px solid #7b2cff;

}



#servicos{

    background:
    linear-gradient(rgba(0,0,0,.80), rgba(0,0,0,.80)),
    url("microfone.jpeg");

    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-bottom:1px solid #7b2cff;

}
.card{
    background:#111;
    border:1px solid #7b2cff;
    padding:30px;
    border-radius:10px;
    text-align:center;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.portfolio-grid img{
    width:100%;
    border-radius:10px;
}


#plataformas{
    border-bottom:1px solid #7b2cff;
    border-top: 1px solid #7b2cff;
}
.plataformas{
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.plataformas a{
background: #111;
color: white;
text-decoration: none;
border: 1px solid #7b2cff;
padding: 14px 25px;
border-radius: 8px;
transition: .3s;
font-weight: 500;
}

/* Spotify */
.plataformas .spotify:hover{
    background: #1DB954;
    border-color: #1DB954;
}

/* YouTube */
.plataformas .youtube:hover{
    background: #FF0000;
    border-color: #FF0000;
}

/* Amazon Music */
.plataformas .amazon:hover{
    background: #00A8E1;
    border-color: #00A8E1;
}

/* Deezer */
.plataformas .deezer:hover{
    background: #A238FF;
    border-color: #A238FF;
}

/* Efeito ao passar o mouse */
.plataformas a{
color: white;
transform: translateY(-4px);
box-shadow: 0 0 15px rgba(255,255,255,.15);
}

form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    background:#111;
    border:1px solid #7b2cff;
    color:white;
}

button{
    background:#7b2cff;
    color:white;
    border:none;
    padding:15px;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid #7b2cff;
}

.language{
    flex: 1;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.language a{
    color: white;
    text-decoration: none;
}

.language a:hover{
    color: #bb86fc;
}

/* PORTFÓLIO */

.categoria-portfolio{
margin-bottom:80px;
}

.categoria-portfolio h3{
color:#bb86fc;
font-size:1.8rem;
margin-bottom:15px;
}

.categoria-portfolio p{
color:#cfcfcf;
margin-bottom:30px;
line-height:1.6;
}

.portfolio-audio{
display;
flex-direction;
gap:20px;
}

.portfolio-audio article{
background:#111;
border:1px solid #7b2cff;
border-radius:10px;
padding:20px;
}

.portfolio-audio h4{
margin-bottom:15px;
color;
font-weight:500;
}

audio{
width:100%;
}

/* PLAYER */

audio::-webkit-media-controls-panel{
background:#1b1b1b;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display{
color;
}

/* PLATAFORMAS */

.plataformas span{
background:#111;
border:1px solid #7b2cff;
padding:12px 20px;
border-radius:8px;
}

/* EFEITOS */

.card,
.portfolio-audio article{
transform(-4px);
transition:.3s;
box-shadow:0 0 15px rgba(123,44,255,.4);
}

.btn,
button{
background:#a855ff;
transition:.3s;
}

.contato-container{
display:flex;
gap:60px;
justify-content:space-between;
align-items:flex-start;
flex-wrap:wrap;
}

.informacoes{
flex:1;
min-width:250px;
}

.informacoes h3{
color:#bb86fc;
margin-bottom:20px;
}

.informacoes p{
margin-bottom:15px;
line-height:1.6;
}

.informacoes a{
color:#bb86fc;
text-decoration:none;
}

.informacoes a:hover{
text-decoration:underline;
}

form{
flex:1;
min-width:300px;
}

/* =========================
   NOTEBOOKS (até 1200px)
========================= */

@media (max-width:1200px){

    header{
        padding:20px 5%;
    }

    .hero h1{
        font-size:4rem;
    }

    section{
        padding:80px 5%;
    }

    .hero-image{
        width:250px;
    }

    .contato-container{
        gap:30px;
    }

}


/* =========================
   TABLETS (até 768px)
========================= */

@media (max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }


    .logo img{
        height:50px;
    }


    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }


    nav a{
        margin-left:0;
        font-size:0.9rem;
    }


    .language{
        justify-content:center;
    }



    .hero{
        height:auto;
        min-height:90vh;
        padding:60px 20px;
    }


    .hero h1{
        font-size:3rem;
    }


    .hero p{
        font-size:1rem;
        max-width:500px;
    }


    .hero-image{
        width:220px;
        margin:30px 0;
    }


    section{
        padding:60px 5%;
    }


    h2{
        font-size:2rem;
    }


    .cards{
        grid-template-columns:1fr;
    }


    .portfolio-grid{
        grid-template-columns:1fr;
    }


    .plataformas{
        gap:15px;
    }


    .plataformas a{
        width:100%;
        text-align:center;
    }


    .contato-container{
        flex-direction:column;
    }


    form{
        width:100%;
        min-width:0;
    }


    #servicos{
        background-attachment:scroll;
    }

}


/* =========================
   CELULARES (até 480px)
========================= */

@media (max-width:480px){


    header{
        padding:15px 20px;
    }


    .hero h1{
        font-size:2.2rem;
    }


    .hero p{
        font-size:.9rem;
    }


    .hero-image{
        width:180px;
        border-radius:10px;
    }


    .btn{
        padding:12px 20px;
        font-size:.9rem;
    }


    section{
        padding:50px 20px;
    }


    h2{
        font-size:1.7rem;
    }


    .card{
        padding:20px;
    }


    .categoria-portfolio{
        margin-bottom:50px;
    }


    .categoria-portfolio h3{
        font-size:1.4rem;
    }


    input,
    textarea,
    button{
        font-size:16px;
    }


    footer{
        padding:20px;
        font-size:.9rem;
    }

}

.pacotes{
    margin-top:50px;
    padding:35px;
    background:#111;
    border:1px solid #7b2cff;
    border-radius:12px;
}

.pacotes h3{
    color:#bb86fc;
    text-align:center;
    margin-bottom:25px;
    font-family:Cinzel, serif;
}

.pacotes ul{
    list-style:none;
    padding:0;
}

.pacotes li{
    margin-bottom:18px;
    line-height:1.7;
    padding-left:20px;
    position:relative;
}

.pacotes li::before{
    content:"✓";
    color:#bb86fc;
    position:absolute;
    left:0;
}

.observacao{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(123,44,255,.3);
    text-align:center;
    line-height:1.7;
}
