@font-face {
    font-family: 'Acum-Pro-Wide-Black';
    src: url('../fonts/Acumin-Pro-Wide-Black.otf');
}
@font-face {
    font-family: 'Acum-Pro-Wide-Bold';
    src: url('../fonts/Acumin-Pro-Wide-Bold.otf');
}
@font-face {
    font-family: 'Acum-Pro-Wide-Book';
    src: url('../fonts/Acumin-Pro-Wide-Book.otf');
}
@font-face{
    font-family: 'Acum-Pro-Wide-Medium';
    src: url('../fonts/Acumin-Pro-Wide-Medium.otf');
}
@font-face{
    font-family: 'Acum-Pro-Wide-Semibold';
    src: url('../fonts/Acumin-Pro-Wide-Semibold.otf');
}
@font-face{
    font-family: 'Acum-Pro-Wide-ExtraLight';
    src: url('../fonts/Acumin-Pro-Wide-ExtraLight.otf');
}

:root{
    --cinza-body: #A1A4A7;
    --cinza-tudo: #E4E9ED;
    --cinza-hover: #EDEDED;
    --purple-1: #944CF5;
    --purple-2: #7D45D3;
    --purple-3: #4C277C;
    --purple-4: #11091B;
    --purple-5: #DFC9FD;
    --purple-6: #CDA8FD;
    --purple-7: #AB73FA;
    --red:      #FF2E2E;
    --white:    #ffffff;
    --dark:     #11091B;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Acum-Pro-Wide-ExtraLight', sans-serif;
}

body{
    background-color: var(--cinza-body);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
}

a, span{
    text-decoration: none;
    color: var(--purple-2);
}

.tudo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--cinza-tudo);
    width: 50%;
    max-width: 580px;
    padding: 32px;
    border-radius: 20px;
    filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.3));
    position: relative;
}

.botoes{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: flex-end;
    top: 24px;
    right: 24px;
    z-index: 10;
    width: 100%;
}

.botoes button{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--white);
    filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.botoes button:hover{
    transform: scale(1.1); 
}

.botoes button i{
    font-size: 15px;
}

.centro{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    width: 100%;
    gap: 12px;
}

.centro .imagem-logo{
    border-radius: 50px;
    height: 96px;
    width: 96px;
    filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.4));
}

.centro h1{
    color: var(--purple-2);
    font-size: 24px;
}

.centro h2{
    color: var(--purple-2);
    font-size: 16px;
}

.centro .redes-sociais{
    font-size: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cards{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 14px;
    margin: 20px;
}

.cards a{
    width: 90%;
    background-color: var(--white);
    border-radius: 32px;
    text-align: center;
    padding: 20px 0px;
    font-weight: 700;
    filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.1));
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.cards a:hover{
    background-color: var(--cinza-hover);
    transform: scale(1.04); 
}

.rodape{
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


span{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px){
    .tudo{
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }
}


/* ===== MODAIS ===== */
.modal-box h3{
    color: var(--purple-3);
    font-size: 18px;
    margin-bottom: 14px;
    padding-right: 30px;
}

.modal-box p{
    color: var(--purple-4);
    font-size: 14px;
    line-height: 1.6;
}

.modal-box p a{
    color: var(--purple-1);
    text-decoration: underline;
}

.modal-fechar, .modal-fechar1, .modal-fechar2{
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--cinza-tudo);
    color: var(--purple-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-in-out;
}

.modal-fechar{
    top: 26px;
    right: -5px;
}
.modal-fechar1{
    top: -10px;
    right: -5px;
}

.modal-fechar:hover, .modal-fechar1:hover{
    transform: scale(1.1);
}

/* ===== Compartilhar (estilo Linktree) ===== */
.modal-share-box{
    padding: 20px;
}

.modal-share-topo{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;
}

.modal-share-topo span{
    font-size: 16px;
    font-weight: 700;
    color: var(--purple-4);
}

.share-preview{
    background: var(--purple-3);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.share-preview img{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.share-preview h4{
    color: var(--white);
    font-size: 18px;
}

.share-preview p{
    color: var(--purple-5);
    font-size: 13px;
}

.share-opcoes{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.share-opcoes::-webkit-scrollbar{
    display: none;
}

.share-opcao{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--purple-4);
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
}

.share-icone{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: transform 0.15s ease-in-out;
}

.share-opcao:hover .share-icone{
    transform: scale(1.08);
}

.share-copiar{ background: var(--cinza-tudo); color: var(--purple-3); }
.share-x .share-icone{ background: #000000; }
.share-facebook .share-icone{ background: #1877F2; }
.share-whatsapp .share-icone{ background: #25D366; }
.share-telegram .share-icone{ background: #29A9EA; }
.share-email .share-icone{ background: var(--purple-1); }

.share-copiar.copiado{
    background: #22c55e;
    color: var(--white);
}
.modal-cookies-icon{
    font-size: 32px;
    color: var(--purple-1);
    display: block;
    margin-bottom: 12px;
}

.modal-cookies-botoes{
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.btn-cookie{
    flex: 1;
    padding: 14px 0;
    border-radius: 32px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease-in-out, background-color 0.2s ease;
}

.btn-cookie:hover{
    transform: scale(1.03);
}

.btn-recusar{
    background: var(--cinza-tudo);
    color: var(--purple-3);
}

.btn-aceitar{
    background: var(--purple-1);
    color: var(--white);
}
.modal-overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 9, 27, 0.55);
    backdrop-filter: blur(3px);
    z-index: 100;
    align-items: flex-end;
    justify-content: center;
}

.modal-overlay.ativo{
    display: flex;
}

.modal-box{
    background: var(--white);
    width: 100%;
    max-width: 460px;
    border-radius: 24px 24px 0 0;
    padding: 28px 24px 32px;
    position: relative;
    box-shadow: 0px -8px 24px rgba(0,0,0,0.25);
    animation: subir 0.3s ease-out;
}

@keyframes subir{
    from{ transform: translateY(40px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}

@media(min-width: 600px){
    .modal-overlay{
        align-items: center;
    }
    .modal-box{
        border-radius: 24px;
    }
}