/* layout */

html, body, #home {
    height: 100%;
    overflow-x: hidden;
}

body {

    background: url(../imagens/capa.png),
                url(../imagens/ruido.png),
                linear-gradient(50deg,#ff4169,#7c26f8);
    background-attachment: fixed;
    font-family: Helvetica, Arial, sans-serif;            
}

/* Barra de Navegação --------*/

nav.navbar-transparente {
    padding: 15px 0px;
    background: rgba(0,0,0,0.6);
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #9bf0e1;
}

.divisor{
    width: 1px;
    background: white;
    margin: 15px 12px;
}

/* Capa-----*/

.capa {
    text-align: center;
}

.btn-custom {
    color: white;
    border-radius: 500px;
     -webkit-border-radius: 500px;
     -moz-border-radius: 500px;
    text-transform: uppercase;
    transition: background 0.4s, 0.4s;
    padding: 10px 20px;
}

.btn-roxo {
    background: #7c26f8;
}

.btn-roxo:hover {
    background: #6207e3;
    color: white;
}

.btn-branco {
    border: 2px solid white;
}

.btn-branco:hover {
    background-color: white;
    color: black;
}

.carousel-control-next, .carousel-control-prev {
    width: 5%;
}

/* Estrutura de conteúdos----*/

#servicos {
    background: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

#servicos h2, h3 {
    color: #7c25f8;
}


#recursos {
    padding-top: 20px;
    padding-bottom: 20px;
}

#recursos {
    color: whitesmoke;
}

#recursos h2 {
    color: white;
}

#recursos h3 {
    color: #9bf0e1;
}


.albuns {
    padding: 10px 0;

}

.rotacionar {
    transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    padding-left: 80px;
}

/* Rodapé------*/

footer {
    background: #000;
    padding: 50px 0px 20px 0px;
    position: relative;
}

footer h4 {
    color: #919496;
    font-size: 0.8em;
    text-transform: uppercase;
}

footer .navbar-nav a {
    color: whitesmoke;
    font-size: 0.8em;
}

footer .navbar-nav a:hover {
    color: #9bf0e1;
    text-decoration: none;
}

footer ul {
    list-style: none;
}

footer ul li {
    float: right;
    margin: 0 5px;
}



/*Tipografia----*/

h1 {
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 50px;
    color: white;
}

h2 {
    font-size: 3em;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.04em;
}




/*// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap*/
@media (max-width: 575.98px){
    .btn-custom{
        margin: 10px 15px;
    }
}
     

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 
    h1 {
        font-size: 3em;
    }
    .btn-custom{
        margin: 10px 15px;
    }
 }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
    h1 {
        font-size: 4em;
    }
    .btn-custom{
        margin: 10px 15px;
    }
 }

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 
    h1 {
        font-size: 5em;
    }
    .btn-custom{
        margin: 10px 15px;
    }
 }

/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
    h1 {
        font-size: 6em;
    }
 }

/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
    h1 {
        font-size: 7em;
    }
    .btn-custom{
        margin: 10px 15px;
    }
 }





/* => Corrige sobreposição da navbar fixa no topo */

/* espaço padrão para cobrir a navbar fixa (desktop) */
body {
  padding-top: 60px; /* ajuste 60px conforme a altura real da sua navbar */
}

/* navbar mais baixa em telas pequenas (ex.: 56px) */
@media (max-width: 767.98px) {
  body {
    padding-top: 56px; /* ajuste se sua navbar colapsa para uma altura diferente */
  }
}

/* se sua navbar-transparente tem fundo transparente, você pode dar um leve fundo para melhorar legibilidade */
.navbar-transparente {
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

/* Ensure carousel titles are fully below the fixed navbar */
:root{
  --navbar-height: 60px; /* adjust if navbar height changes */
  --navbar-gap: 30px;    /* extra space between navbar and titles */
}

#home .capa {
  padding-top: calc(var(--navbar-height) + var(--navbar-gap));
}