:root {
    color-scheme: light only;
    --bege: #f6f4ef;
    --preto: #080706;
    --vermelho: #ff002f;
    --felix: 'felix-titling', serif;
    --hollins: 'hollins', cursive;
    --mont: 'Montserrat', sans-serif;
    --trans: 0.3s ease-in-out;
}

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

a:visited {
    color: inherit; /* ou qualquer cor específica */
}

html { scroll-behavior: smooth; }

body { background: var(--bege); font-family: var(--mont); color: var(--preto); }

@font-face {
    font-family: 'felix-titling';
    src: url('../fonts/FELIXTI.TTF') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'hollins';
    src: url('../fonts/Hollins-PKvxE.ttf') format('truetype');
    font-display: swap;
}

/* HEADER */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 53px;
    z-index: 100;
    background: url(../imagens/header-fundo.webp);
    background-size: cover;
    background-repeat: no-repeat;

}

.header-inner {
    width: 1920px;
    max-width: 97%;
    margin: 0px 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    font-family: var(--mont);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 1.47px;
    text-transform: uppercase;
    color: var(--preto);
    text-decoration: none;
    transition: var(--trans);
}

.header-nav a:hover { opacity: 0.5; }

.header-cta {
    border: 1px solid rgba(255,255,255,0.5);
    background: var(--bege);
    color: #000;
    font-family: var(--mont);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 1.47px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 22px;
    height: 35px;
    display: flex;
    align-items: center;
    transition: var(--trans);
}

.header-cta:hover {
    background: #000;
    color: var(--bege);
    border-color: #000;
}

/* BANNER */
#banner {
    position: relative;
    height: 852px;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg .img-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(101.48deg, rgba(10, 9, 7, 0.92) 0%, rgba(10, 9, 7, 0.68) 52%, rgba(10, 9, 7, 0.45) 100%);
}

.banner-content {
    position: absolute;
    left: 59px;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-top: 144px;
    align-items: center;
}

.badge-lancamento {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: url(../imagens/fundo-lancamento.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5px 14px 5px 10px;
    margin-bottom: 50px;
    width: fit-content;
}

.badge-dot {
    width: 5px; height: 5px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    font-family: var(--mont);
    font-weight: 600;
    font-size: 9.5px;
    letter-spacing: 2.09px;
    text-transform: uppercase;
    color: #000;
}

.banner-loc {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 49px;
}

.loc-line {
    width: 28px; height: 1px;
    background: rgba(255,255,255,0.38);
    flex-shrink: 0;
}

.loc-text {
    font-family: var(--mont);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
}

.banner-logo-ad {    
    margin-bottom: 46px; 
}

.banner-logo-ad .imagem{
    max-width: 90%;
}

.banner-specs {
    margin-bottom: 46px;
}

.banner-specs .imagem{
    max-width: 90%;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bege);
    color: var(--preto);
    font-family: var(--mont);
    font-weight: 600;
    font-size: 10.5px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px 0 36px;
    height: 50px;
    width: 240px;
    transition: var(--trans);
    border: 1px solid rgba(255,255,255,0.5);
}

.banner-cta:hover {     
    background: transparent;
    color: var(--bege);
    border-color: var(--bege);
}

.banner-cta:hover .cta-arrow path {
    transition: var(--trans);
}

.banner-cta:hover .cta-arrow path{
    stroke: var(--bege) !important;
}

/* FORM */
#form {
    position: relative;
    background: url(../imagens/fundo-form.webp);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 497px;
    display: flex;
    align-items: center;
    scroll-margin-top: 158px;
}

.form-inner {
    position: relative;
    z-index: 2;
    width: 1252px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 17px;
}

.form-headline {
    flex: 1;
    margin-top: 71px;
}

.form-headline p {
    font-family: var(--felix);
    font-size: 30px;
    color: #fff;
    letter-spacing: 3.6px;
    line-height: 33px;
}

.form-card {
    background: #fff;
    box-shadow: 7px 7px 11px rgba(0,0,0,0.25);
    padding: 45px 53.5px 45px;;
    width: 483px;
    flex-shrink: 0;
    margin-top: -39px;
    margin-bottom: -39px;
    margin-right: 54px;
}

.form-card-sobre {
    font-family: var(--mont);
    font-size: 18px;
    color: var(--preto);
    text-align: center;
    margin-bottom: 13px;
}

.form-card-logo {
    text-align: center;
    margin-bottom: 14px;
}

.form-card-logo img{
    max-width: 90%;
    margin: 0 auto;
    display: flex;
}

.form-card-logo span {
    font-family: var(--felix);
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--preto);
}

.form-instr {
    font-family: var(--mont);
    font-size: 11px;
    color: var(--preto);
    text-align: center;
    margin-bottom: 7px;
}

.form-card .formcon {
    position: relative;
    margin-bottom: 12px;
    margin-top: 20px;
}

.form-card .input-form {
    width: 100%;
    padding: 10.5px;
    border: 0.5px solid var(--preto);
    background: transparent;
    color: var(--preto);
    font-family: var(--mont);
    font-size: 14px;
    outline: none;
    transition: var(--trans);
    border-radius: 10px;
    opacity: 0.7;
}

.form-card .input-form::placeholder { color: transparent; }

.form-card .formcon label {
    position: absolute;
    left: 12px;
    top: 11px;
    color: var(--preto);
    font-family: var(--mont);
    font-size: 14px;
    pointer-events: none;
    transition: var(--trans);
}

.form-card .input-form:focus + label,
.form-card .input-form:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #fff;
    padding: 0 4px;
    border-radius: 4px;
    opacity: 1;
}

.form-card .input-form:focus { opacity: 1; }

.form-card .textarea-form {
    min-height: 56px;
    resize: vertical;
    padding-top: 11px;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-family: var(--mont);
    font-size: 10px;
    color: var(--preto);
    cursor: pointer;
    margin-bottom: 22px;
    line-height: 1.4;
}

.check-label input[type="checkbox"] {
    width: 13px; height: 13px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 1.4px solid var(--preto);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.check-label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 2px; top: 0;
    width: 5px; height: 8px;
    border: solid var(--preto);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    width: 100%;
    padding: 8.5px;
    background: var(--preto);
    color: var(--bege);
    border: none;
    border-radius: 13px;
    font-family: var(--mont);
    font-weight: 700;
    font-size: 19.5px;
    cursor: pointer;
    transition: var(--trans);
    border: 1px solid transparent;
}

.btn-submit:hover { 
    background: #fff;
    border: 1px solid var(--preto); 
    color: var(--preto);
}

/* REALIZAÇÃO */
#realizacao {
    background: var(--bege);
    margin-top: 155px;
    margin-bottom: 132px;
}

#realizacao .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 575px;
    width: 1920px;
    max-width: 90%;
    margin: 0 auto;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.tag-linha {
    width: 28px; height: 1px;
    background: rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.section-tag span:last-child {
    font-family: var(--mont);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
}


.real-titulo {
    font-family: var(--hollins);
    font-size: 61px;
    line-height: 60px;
    letter-spacing: 1.62px;
    font-weight: 400;
}


.ass-label {
    font-family: var(--mont);
    font-weight: 600;
    font-size: 9.5px;
    letter-spacing: 2.09px;
    text-transform: uppercase;
    color: var(--preto);
    margin-bottom: 6px;
}

.ass-nome {
    font-family: var(--hollins);
    font-size: 26.9px;
    letter-spacing: 1.08px;
    color: var(--preto);
    font-weight: 600;
    margin-bottom: 10px;
}

/* O ARTISTA */
#o-artista {
    background: var(--bege);
    padding: 0 0 100px;
    overflow: hidden;
}

#o-artista .container {
    width: 1257px;
    max-width: 90%;
    margin: 0 auto;
}

#o-artista .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 13px;
}

.artista-full {
    display: flex;
    align-items: center;
    gap: 98px;
    padding: 80px 0 100px;
}

.artista-full-texto {
    flex: 0 0 570px;
    max-width: 570px;
    margin-top: 31px;
}

.artista-titulo {
    font-family: var(--hollins);
    font-size: 50.2px;
    line-height: 68px;
    font-weight: 400;
    letter-spacing: 1.36px;
    color: var(--preto);
    margin-bottom: 40px;
    text-align: center;
}

.artista-desc {
    font-family: var(--mont);
    font-weight: 400;
    font-size: 13.5px;
    line-height: 25px;
    letter-spacing: 0.27px;
    color: rgba(0,0,0,0.58);
    margin-bottom: 24px;
    text-align: center;
}

.artista-full-foto {
    flex: 1;
    height: 533px;
    overflow: hidden;
}

.artista-full-foto img {
    width: 589px;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artistas-tres {
    display: flex;
    gap: 145px;
    align-items: flex-start;
    padding-top: 85px;
}

.artista-card {
    flex: 1;
}

.artista-card-foto {
    height: 323px;
    background: #b0a89e;
    margin-bottom: 28px;
    overflow: hidden;
}

.artista-card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

#o-artista .artistas-tres .section-tag {
    justify-content: flex-start;
}

.artista-card-nome {
    font-family: var(--felix);
    font-size: 50.2px;
    line-height: 54px;
    letter-spacing: 1.36px;
    color: var(--preto);
    margin-bottom: 25px;
    font-weight: 400;
}

.artista-card-desc {
    font-family: var(--mont);
    font-weight: 400;
    font-size: 13.5px;
    line-height: 25px;
    letter-spacing: 0.27px;
    color: rgba(0,0,0,0.58);
}

/* LOGOS */
#logos-real {
    background: var(--bege);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 108px;
}

#logos-real::before{
    content: '';
    position: absolute;
    background: url(../imagens/before-assinatura.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 964px;
    max-width: 100%;
    height: 5px;
    right: 0;
    top: -37px;
    z-index: 2;
}

#logos-real::after{
    content: '';
    position: absolute;
    background: url(../imagens/after-assinatura.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 964px;
    max-width: 100%;
    height: 5px;
    left: 0;
    top: 122px;
    z-index: 2;
}

/* Realizacao */
#realizacao-footer{
    margin-bottom: 78px;
    margin-top: 105px;
}

#realizacao-footer .container{
    width: 1440px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 190px;
}

#realizacao-footer .container .card{
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

#realizacao-footer .container .card .texto{
    font-family: var(--mont);
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;

}

/* LEGAL */
#legal {
    padding: 0 0 121px;
}

#legal .container{
    width: 1318px;
    max-width: 90%;
    margin: 0 auto;
}

#legal p {
    font-family: var(--mont);
    font-size: 12px;
    line-height: 1.5;
    color: var(--preto);
    margin-bottom: 20px;
    letter-spacing: 0.96px;
    text-align: center;
}

#legal strong { font-weight: 700; }
#legal span { font-weight: 300; }

/* FOOTER */

#footer{
    background-color: #121212;
    position: relative;
}

#footer::after{
    content: '';
    position: absolute;
    background: url(../imagens/after-footer.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    height: 7px;
    left: 0;
    top: -7px;
}


#footer .container{
    position: relative;
    padding: 18.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .ico-zap{
    position: fixed;
    right: 22px;
    bottom: 66px;
    z-index: 5;
}

/* ERRO / ANIMAÇÕES */

@keyframes shakeX {
    from, to { transform: translate3d(0, 0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate3d(-8px, 0, 0); }
    20%, 40%, 60%, 80% { transform: translate3d(8px, 0, 0); }
}

.shake {
    animation: shakeX 0.5s ease-in-out;
}

.input-form.error {
    border-color: var(--vermelho) !important;
    opacity: 1;
}

.input-form.error + label {
    color: var(--vermelho) !important;
}

/* RESPONSIVE */

@media screen and (max-width: 1800px) {
    .artista-full-foto img {
        margin: 0 auto;
        width: 100%;
    }
    
}

@media screen and (max-width: 1440px) {
    #realizacao .container {
        gap: 300px;
    }

    .artista-full {
        gap: 70px;
    }

    .artista-full-texto {
        flex: 0 0 490px;
        max-width: 490px;
    }

    .artistas-tres {
        gap: 100px;
    }

    #realizacao-footer .container {
        gap: 100px;
    }

    .header-cta {
        display: none;    
    }
}

@media screen and (max-width: 1280px) {
    #realizacao .container {
        gap: 160px;
    }

    .artista-full {
        gap: 50px;
    }

    .artista-full-texto {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .artista-titulo {
        font-size: 42px;
        line-height: 58px;
    }

    .artistas-tres {
        gap: 60px;
    }

    .artista-card-nome {
        font-size: 42px;
        line-height: 46px;
    }

    #realizacao-footer .container {
        gap: 70px;
    }
}

@media screen and (max-width: 1100px) {

    .banner-content {
        padding-top: 110px;
    }

    .form-headline p {
        font-size: 26px;
        line-height: 30px;
    }

    #realizacao .container {
        gap: 80px;
    }

    .real-titulo {
        font-size: 50px;
        line-height: 52px;
    }

    .artista-full {
        gap: 40px;
        padding: 60px 0 80px;
    }

    .artista-full-texto {
        flex: 0 0 370px;
        max-width: 370px;
    }

    .artista-titulo {
        font-size: 38px;
        line-height: 52px;
    }

    .artistas-tres {
        gap: 40px;
    }

    .artista-card-nome {
        font-size: 36px;
        line-height: 40px;
    }

    #realizacao-footer .container {
        gap: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .banner-content {
        left: 0;
        right: 0;
        align-items: center;
        padding-top: 156px;
    }

    .banner-bg::after {
        display: none;
    }

    .banner-logo-ad {
        margin-bottom: 34px;
    }

    .banner-logo-ad img {
        max-width: 90%;
        display: block;
        margin: 0 auto;
    }

    .banner-logo-ad .imagem {
        margin: 0 auto;
    }

    .banner-loc {
        margin-bottom: 34px;
    }

    .banner-specs {
        margin-bottom: 34px;
    }

    .banner-specs img {
        max-width: 90%;
        display: block;
        margin: 0 auto;
    }

    .banner-specs .imagem {
        margin: 0 auto;
    }

    #form {
        padding: 60px 0;
    }

    .form-inner {
        flex-direction: column;
        gap: 40px;
    }

    .form-headline {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .form-headline p {
        font-size: 24px;
        line-height: 30px;
    }

    .form-card {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        margin-bottom: -82px;
    }

    #realizacao {
        margin-top: 105px;
        margin-bottom: 13px;
    }

    #realizacao .container {
        flex-direction: column;
        gap: 49px;
        text-align: center;
    }

    #realizacao .section-tag {
        justify-content: center;
    }

    .real-titulo {
        font-size: 42px;
        line-height: 44px;
    }

    .artista-full {
        flex-direction: column;
        gap: 40px;
        padding: 50px 0 60px;
        align-items: center;
    }

    .artista-full-texto {
        flex: unset;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .artista-full-foto {
        height: 400px;
        width: 100%;
    }

    .artista-full-foto img {
        width: 75%;
    }

    .artistas-tres {
        flex-direction: column;
        gap: 50px;
        padding-top: 50px;
    }

    .artista-card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .artista-card .section-tag { order: 1; }
    .artista-card-nome { order: 2; }
    .artista-card-desc { order: 3; margin-bottom: 40px; }
    .artista-card-foto { order: 4; }

    .artista-card-foto {
        height: 511px;
    }

    .artista-card:first-child .artista-card-foto img {
        object-position: center;
    }

    #realizacao-footer .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    #footer .ico-zap {
        right: 7px;
        bottom: 6px;
    }
}

@media screen and (max-width: 768px) {
    .header-inner {
        margin: 0 20px;
    }

    .form-headline p {
        font-size: 22px;
        line-height: 28px;
    }

    .form-card {
        padding: 35px 30px;
    }

    .real-titulo {
        font-size: 38px;
        line-height: 40px;
    }

    .artista-titulo {
        font-size: 34px;
        line-height: 46px;
    }

    .artista-full-foto {
        height: 340px;
    }

    .artista-card-nome {
        font-size: 32px;
        line-height: 36px;
    }

    #logos-real {
        margin-top: 60px;
    }
}

@media screen and (max-width: 600px) {

    .form-headline p {
        font-size: 20px;
        line-height: 26px;
    }

    .real-titulo {
        font-size: 33px;
        line-height: 36px;
    }

    .artista-titulo {
        font-size: 30px;
        line-height: 42px;
    }

    .artista-card-nome {
        font-size: 28px;
        line-height: 34px;
    }

    .artista-full-foto img {
        width: 100%;
    }
}

@media screen and (max-width: 490px) {
    .header-cta {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 0 14px;
        height: 30px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-headline p {
        font-size: 19px;
        line-height: 25px;
    }

    .real-titulo {
        font-size: 28px;
        line-height: 32px;
    }

    .ass-nome {
        font-size: 22px;
    }

    .artista-titulo {
        font-size: 27px;
        line-height: 38px;
    }

    .artista-full-foto {
        height: 280px;
    }

    .artista-card-nome {
        font-size: 27px;
        line-height: 32px;
    }

    #realizacao-footer .container .card .texto {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {

    .banner-content {
        padding-top: 183px;
    }

    .badge-lancamento {
        margin-bottom: 51px;
    }

    .banner-logo-ad {
        margin-bottom: 51px;
    }

    .banner-loc {
        margin-bottom: 51px;
    }

    .banner-specs {
        margin-bottom: 62px;
    }
}

@media screen and (max-width: 450px) {
    #form {
        padding: 40px 0;
    }

    .form-headline p {
        font-size: 18px;
        line-height: 24px;
    }

    .real-titulo {
        font-size: 24px;
        line-height: 28px;
    }

    .artista-titulo {
        font-size: 24px;
        line-height: 34px;
    }

    .artista-full-foto {
        height: 240px;
    }

    .artista-card-nome {
        font-size: 24px;
        line-height: 30px;
    }

    #realizacao-footer .container .card img{
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 400px) {
    .form-headline p {
        font-size: 17px;
        line-height: 23px;
    }

    .real-titulo {
        font-size: 22px;
        line-height: 26px;
    }

    .artista-titulo {
        font-size: 22px;
        line-height: 30px;
    }

    .artista-card-nome {
        font-size: 22px;
        line-height: 28px;
    }
}

@media screen and (max-width: 360px) {
    .form-card {
        padding: 25px 16px;
    }

    .form-headline p {
        font-size: 16px;
        line-height: 22px;
    }
}

