@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Thin.ttf') format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-ThinItalic.ttf') format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-LightItalic.ttf') format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Light.ttf') format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Black.ttf') format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Agency FB';
    src: url('../fonts/AgencyFb/AgencyFB.ttf') format("truetype");
    font-style: normal;
}

@font-face {
    font-family: 'Unica One';
    src: url('../fonts/UnicaOne/UnicaOne-Regular.ttf') format("truetype");
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

body {
    font-size: 100%;
    width: 100%;
}

.demo-content{
    position: fixed;
    z-index: 30;
    top: 20px;
    left: 20px;
    padding: 5px 30px;
    background-color: rgba(178, 34, 34, 0.183);
    font-weight: bold;
    color:#f5f5f847;
    font-family: sans-serif;
    font-size: small;
    box-shadow: 1px 1px 1px #16161d;

}

/* CABEÇALHO */

.cabecalho {
    background-color: #16161d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    padding: 10px 5% 10px 5%;
    width: 100%;
    z-index: 9999;
}

.logo-cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.texto-cabecalho {
    display: flex;
    flex-direction: column;
}

.titulo-cabecalho {
    font-family: 'Agency FB', sans-serif;
    color: #fff;
    font-size: x-large;
    margin-bottom: 0;
}

.subtitulo-cabecalho {
    font-family: 'Unica One', sans-serif;
    color: #fff;
    font-size: small;
    margin-bottom: 0;
}

.imagem-cabecalho {
    height: 72px;
}

.cabecalho-menu {
    display: flex;
    gap: 32px;
}

.cabecalho-menu-item {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 200;
    font-size: 20px;
    text-decoration: none;
}

.cabecalho-menu-item:hover {
    text-decoration: none;
    cursor: pointer;
    color: rgb(192, 210, 255);
}

.cabecalho-menu-completo {
    display: flex;
    flex-direction: column;
}

.cabecalho-menu-redes-sociais {
    text-align: right;
}

.cabecalho-menu-redes-sociais a {
    margin-left: 10px;
}


/* CONTEÚDO PRINCIPAL */

.conteudo {
    width: 100%;
}

.conteudo-principal {
    background: linear-gradient(68.15deg, rgba(97, 6, 119, .7) 16.62%, rgba(22, 22, 29, .7) 85.61%), url('/assets/img/mega.jpg') no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 124px;
    padding-bottom: 124px;
}

.conteudo-principal .btn {
    position: relative;
    border: 1px solid #fff;
    border-radius: 50px;
    background-color: transparent;
}

.conteudo-principal .btn:hover {
    background-color: #16161d;
    color: #fff;
    border: 1px solid transparent;
}

.btn {
    line-height: 50px;
    width: 200px;
    font-size: 16px !important;
    font-weight: 300;
    border: 10px solid #fff;
    border-radius: 100px;
    color: #fff;
    background-color: #16161d;
    padding: 0;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.btn-border {
    border: 1px solid #fff;
}

.conteudo-principal-escrito {
    width: 400px;
}

.conteudo-principal-imagem {
    height: 400px;
}

.conteudo-principal-titulo {
    font-family: 'Agency FB', sans-serif;
    color: #fff;
    font-size: 64px;
    font-weight: 200px;
}

.conteudo-principal-subtitulo-nome {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: right;
}

.conteudo-principal-subtitulo {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgb(192, 210, 255);
    font-size: 20px;
    font-style: italic;
    text-align: justify;
}

textarea {
    background-color: transparent;
    outline: none;
    border: 2px solid #28203e;
    border-radius: 5px;
    height: 150px;
    resize: vertical;
}


/* SERVIÇOS */

.conteudo-servicos {
    background: #16161d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 48px 5%;
}

.conteudo-servicos .btn {
    position: relative;
    border: 1px solid #fff;
    border-radius: 50px;
    background-color: transparent;
}

.conteudo-servicos .btn:hover {
    background-color: rgb(255, 210, 255);
    color: #16161d;
    border: 1px solid transparent;
}

.conteudo-subhead-texto {
    font-size: 16px;
    font-style: italic;
    font-weight: 100;
    padding-top: 12px;
    color: #fff;
    margin-bottom: 25px;
}

.servicos-disponiveis {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.conteudo-servico {
    display: flex;
    flex-direction: column;
    width: 20%;
    padding-bottom: 20px;
    align-items: center;
    padding-top: 42px;
}

.servico {
    align-items: center;
    text-align: center;
}

.servico-titulo {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgb(192, 210, 255);
    text-align: left;
    font-size: 14px;
    text-align: center;
}

.servico-imagem {
    height: 72px;
    padding-bottom: 12px;
}

.servico-informacao {
    font-style: italic;
    color: #fff;
    text-align: justify;
}

.conteudo-subtitulo {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 64px;
    border-bottom: 1px solid rgb(212, 196, 255);
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 10%;
}


/* PORTIFÓLIO */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.conteudo-portifolio {
    background: #28203e;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ultimos-trabalhos {
    display: none;
    flex-direction: row;
    margin: 0;
    flex-wrap: wrap;
    transition: all 0.25s ease-out;
}

.carrossel-trabalhos .ultimos-trabalhos:nth-child(1) {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.carrossel-trabalhos .ultimos-trabalhos:nth-child(2) {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.carrossel-trabalhos .ultimos-trabalhos:nth-child(3) {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.carrossel-trabalhos .ultimos-trabalhos:nth-child(4) {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.carrossel-trabalhos .ultimos-trabalhos:nth-child(5) {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.conteudo-ultimo-trabalho {
    height: 250px;
    position: relative;
}

.conteudo-ultimo-trabalho:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 100%;
    bottom: 0;
    background-color: #f5f5f8;
    transition: right 0.25s ease-in-out;
    -moz-transition: right 0.25s ease-in-out;
    -webkit-transition: right 0.25s ease-in-out;
    -o-transition: right 0.25s ease-in-out;
    -ms-transition: right 0.25s ease-in-out;
}

.conteudo-ultimo-trabalho:hover:before {
    right: 25%;
}

.musica-titulo,
.conteudo-ultimo-trabalho a {
    position: absolute;
    left: 0;
    margin: 0;
    font-size: 14px;
    opacity: 0;
}

.carrossel-trabalhos {
    align-self: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px 0 72px 0;
    justify-content: center;
}

#loadmore {
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    border: none;
    padding: 40px 20px;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    color: #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 1%, rgba(0, 0, 0, 1) 100%);
}

.portifolio-full-size {
    width: 100%;
    justify-content: center;
    padding-bottom: 50px;
}

.musica-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.portifolio-imagem {
    display: flex;
    height: 250px;
}

.spotify {
    top: 60px;
    height: 32px;
}

.tidal {
    top: 96px;
    height: 32px;
}

.deezer {
    top: 132px;
    height: 32px;
}

.youtube {
    top: 168px;
    height: 32px;
}

.apple {
    top: 204px;
    height: 32px;
}

.musica-titulo {
    width: 150px;
    top: 10px;
    transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -moz-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -webkit-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -o-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -ms-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.conteudo-ultimo-trabalho:hover .musica-titulo {
    left: 15px;
    opacity: 1;
    text-decoration: none;
}

.disable-stream {
    background-color: #686868;
    cursor: not-allowed;
}

.icone-stream {
    height: 20px;
    fill: black;
    margin-left: 3px;
}

.icone-stream {
    filter: grayscale(100%);
}

ul {
    margin-top: 5px;
    list-style: none;
}

.texto-stream {
    font-size: 12px;
    text-decoration: none;
}

.texto-stream:hover {
    text-decoration: none;
}

.conteudo-ultimo-trabalho a {
    bottom: 8px;
    color: #16161d;
    padding: 3px 8px;
    border: 1px solid #16161d;
    border-radius: 50px;
    width: 100px;
}

.conteudo-ultimo-trabalho:hover a {
    left: 10%;
    opacity: 1;
    text-decoration: none;
}

.conteudo-ultimo-trabalho a:hover {
    background-color: #16161d;
    color: rgb(192, 210, 255);
}

.conteudo-ultimo-trabalho li {
    width: 16px;
    text-align: left;
}


/* SOBRE */

.conteudo-sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(68.15deg, rgba(97, 6, 119, .7) 16.62%, rgba(22, 22, 29, .7) 85.61%), url('/assets/img/homestudio.jpg') no-repeat;
    background-size: cover;
    color: rgb(192, 210, 255);
}

.conteudo-sobre-escrito {
    text-align: center;
}

.conteudo-sobre-texto {
    width: 80%;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 32px;
}

.conteudo-sobre-imagem img {
    height: 400px;
    margin-top: -20%;
    padding-top: 42px;
}

.sobre-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 5% 50px 5%;
}


/* ORÇAMENTO */

.conteudo-orcamento {
    background-image: linear-gradient(to bottom, rgba(40, 4, 49, 1) 16.62%, rgba(22, 22, 29, 1) 85.61%);
    align-items: center;
    text-align: center;
    color: rgb(192, 210, 255);
    display: flex;
    flex-direction: column;
}

.conteudo-orcamento-formulario {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    width: 50%;
}

.campo-orcamento {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.campo-orcamento label {
    padding-bottom: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 16px;
}

.campo-orcamento input {
    padding-bottom: 10px;
    margin-bottom: 10px;
    outline: none;
    border-bottom: 1px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
}

.campo-orcamento input:focus {
    border-bottom: 1px solid rgb(148, 3, 116);
    transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
}

.campo-orcamento-enviar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.campo-orcamento-enviar .btn {
    position: relative;
    border: 1px solid #fff;
    border-radius: 50px;
    background-color: transparent;
}

.campo-orcamento-enviar .btn:hover {
    background-color: #fff;
    color: #16161d;
    border: 1px solid transparent;
}

.orcamento-whatsapp {
    display: flex;
    flex-direction: row;
}

.orcamento-whatsapp a {
    text-decoration: none;
}

.orcamento-whatsapp a:hover {
    text-decoration: none;
}

.orcamento-whatsapp-icone {
    height: 72px;
}

.orcamento-whatsapp-texto {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 200;
}


/* FOOTER */

.conteudo-footer {
    padding-top: 48px;
    background: #16161d;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.conteudo-footer-copyright,
.conteudo-footer-dev {
    color: #4d4d50;
}
