.theme {
    color-scheme: light;
    --color-one: #9b245d;
    --color-two: #8c1451;
    --color-three: #ebe2db;
    --color-four: #720e3e;
    --color-font: #1b1a1a;
}

:root {
    --font-family:
        "Libre Baskerville", serif;
}

html,
body {
    height: 100%;
    background: var(--color-three);
    scrollbar-width: thin;
}

.p .b {
    font-weight: 600;
}

.mobile {
    display: none;
}

.desktop {
    display: inline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
}

nav {
    position: fixed;
    background-color: color-mix(in srgb, var(--color-one) 80%, transparent);
    z-index: 1000;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}


h1 {
    color: var(--color-font);
    display: flex;
    align-items: center;
    font-size: 18px;  
    padding: 0px 10px 0px 10px;  
    font-weight: 600;
}

nav .navbar .item .title a {
    font-size: 22px;  
}

h1 a {
    color: var(--color-three);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

nav .navbar .item h1 span.symbol {
    padding-right: 10px;
    color: var(--color-three);
    display: flex;
    align-items: center;
    font-size: 16px;  
}

nav .navbar {
    width: 100%;
    padding: 0px 40px 0px 40px;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
}

nav .navbar .item {
    display: flex;
    flex-direction: row; 
}

nav .navbar .item .contato a {
    background: var(--color-three);
    padding: 5px 20px 5px 20px;
    border-radius: 40px;
    corner-shape: super-ellipse(0.5);
    color: var(--color-one);

    transition: background-color 0.3s ease, color 0.3s ease;
}

nav .navbar .item .contato a:hover {
    background: var(--color-one);
    color: var(--color-three);
}

/*
*
*
*
*
*/

.page {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page .part-one {
    width: 100%;
    height: 500px;
    color: var(--color-font);
}

.page .person {
    padding: 5% 20% 5% 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.page .person .image {
    height: 300px;
    width: 300px;
    position: relative;
}

img.face{
    height: 300px;
    width: 300px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.page .person .image .border {
    height: 300px;
    width: 300px;
    border: 2px solid var(--color-font);
    border-radius: 10px;
    position: absolute;
    bottom: 5px;
    right: -5px;
    z-index: 1;
    opacity: 60%
}

.page .person .image .tag {
    background-color: color-mix(in srgb, var(--color-two) 60%, transparent);
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 20px;
    border-radius: 40px;
    corner-shape: super-ellipse(0.5);
    color: var(--color-three);
    text-align: center;
    height: 50px;
    width: 140px;
    position: relative;
    bottom: 65px;
    right: -200px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    font-size: 10px;
    text-decoration: none;
}

.page .person .text {
    padding: 0px 20px 30px 20px; 
}

p {
    text-align: justify;
}

.page .part-two {
    background-color: var(--color-one);
    width: 100%;
    height: 500px;
    color: var(--color-three);
}

.page .part-duvidas {
    background-color: var(--color-one);
    width: 100%;
    height: auto;
    color: var(--color-three);
}

.page .part-two h1{
    color: var(--color-three);
}

.page .part-duvidas h1{
    color: var(--color-three);
}

.border-alt {
    height: 300px;
    width: 300px;
    border: 2px solid var(--color-font);
    border-radius: 10px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
    opacity: 60%
}

.tag-alt {
    background-color: color-mix(in srgb, var(--color-three) 60%, transparent);
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 20px;
    border-radius: 40px;
    corner-shape: super-ellipse(0.5);
    color: var(--color-one);
    text-align: center;
    height: 50px;
    width: 140px;
    position: relative;
    bottom: 65px;
    right: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    font-size: 10px;
    text-decoration: none;
}

.page .part-three {
    background-color: var(--color-two);
    width: 100%;
    color: var(--color-three);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page .part-three h1{
    color: var(--color-three);
}

.page .part-three .footer {
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.call {
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.logo {
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon {
    height: 150px;
    width: 150px;
    border-radius: 100px;
    corner-shape: super-ellipse(0.5);
}

.whats {
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.small {
    background-color: var(--color-four);
    height: 35px;
    width: 200px;
    border-radius: 20px;
    corner-shape: super-ellipse(0.5); 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding-left: 15px;
    text-decoration: none;
    color: inherit;
}

.mini-icon {
    height: 20px;
    width: 20px;
}

.number {
    font-size: 14px;
    padding-left: 15px;
}

.image a {
    text-decoration: none;
}

.page .person .image .tag-link {
    background-color: color-mix(in srgb, var(--color-two) 60%, transparent);
    display: flex;
    align-items: center;
    padding: -5px 20px 5px 20px;
    border-radius: 40px;
    corner-shape: super-ellipse(0.5);
    color: var(--color-three);
    text-align: center;
    height: 50px;
    width: 140px;
    position: relative;
    bottom: 65px;
    right: -200px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    font-size: 10px;
}


/*    border: 2px solid green;*/

/*
*
*
*
*
*/

@media (max-width: 870px) {
    .mobile {
        display: inline;
    }

    .desktop {
        display: none;
    }

    nav .navbar .item .title a {
        font-size: 16px;  
    }

    .page .image {
        height: 200px;
        width: 200px;
    }

    .page .part-one {
        height: auto;
    }

    .page .part-two {
        height: auto;
    }

    .page .part-three .footer {
        height: auto;
        flex-direction: column-reverse;
        gap: 0px;
        
    }

    .page .person .image {
        justify-content: center;
        padding-left: 20px;
    }

    .page .person .image .tag {
        right: -180px;
    }

    .page .person .image .tag-link {
        right: -180px;
    }

    img.face {
        height: 250px;
        width: 250px;
    }

    .border {
        display: none;
    }

    .border-alt {
        display: none;
    }

    .page .person {
        flex-direction: column;
        padding-top: 100px;
    }


    .nullable {
        display: none;
    }

    nav .nullable h1 {
        display: none;        
    }

    .small-contact {
        border: 1px solid var(--color-three);
        height: 35px;
        width: 35px;
        border-radius: 100px;
        corner-shape: super-ellipse(0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .small-whats {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .extra-mini-icon {
        height: 20px;
        width: 20px;       
    }
}