/**
 * @name * Unavailable website
 * @file * style.css
 * @author * Paper Plane Design Studio® <https://www.paperplane.com.br/>
 * @description * css for Unavailable website
 * @license * Todos os direitos reservados - Paper Plane Design Studio®
 * @version * 1.0
 */


/* ==========================================================================
   = breakpoint full ( 1600px - 100% )
   ========================================================================== */

/* = general
========================================================================== */

* {
    box-sizing: border-box;
}

:root {
    --color-primary: #000000;
}

html {
    font-family: sans-serif;
    font-size: 14px;
    min-height: 100%;
    height: 100%;
    color: #000;
}

body {
    margin: 0;
    font-size: inherit;
    min-height: 100%;
    height: 100%;
    background-color: #fff;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: unset;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

img {
    vertical-align: middle;
}

:focus {
    outline: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* = header
========================================================================== */

.header {
    height: 20px;
    background-color: var(--color-primary);
}

/* = main
========================================================================== */

.main {
    min-height: calc(100% - 20px - 60px);
    padding: 100px 30px;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 24px;
    margin: 0 0 25px;
    text-align: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 25px;
}

.contact {
    display: flex;
    align-items: center;
}

.contact__img {
    margin-right: 10px;
}

.contact__label {
    margin-right: 5px;
}

.contact__number {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

/* = footer
========================================================================== */

.footer__bottom {
    width: 100%;
    height: auto;
    padding: 15px 30px;
    background: var(--color-primary);
    font-size: 12px;
    line-height: 18px;
    color: #FFF;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer__developer {
    display: flex;
    align-items: center;
}

.footer__paperplane {
    display: flex;
    align-items: center;
}

.footer__casasoft:hover,
.footer__paperplane:hover {
    text-decoration: underline;
    transition: all .3s;
}

.footer__line {
    width: auto;
    height: auto;
    margin: 0px 10px;
}


/* ==========================================================================
   = breakpoint sm ( 567px - 820px )
   ========================================================================== */

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

    .ui__display--sm-none { display: none; }

    /* = main
    ========================================================================== */

    .main {
        min-height: calc(100% - 20px - 90px);
        padding: 50px 30px;
        align-items: center;
    }

    .title {
        font-size: 20px;
    }
    
    .contact__number {
        font-size: 16px;
    }
 
    /* = footer
    ========================================================================== */

    .footer {
        height: 90px;
    }

    .footer__grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__rights {
        margin-right: 0;
        margin-bottom: 15px;
    }

}


/* ==========================================================================
   = breakpoint xs ( 0px - 567px )
   ========================================================================== */

@media screen and (max-width: 567px) {
 
    /* = main
    ========================================================================== */

    .main {
        min-height: calc(100% - 20px - 120px);
    }

    /* = footer
    ========================================================================== */

    .footer {
        height: 120px;
    }

    .footer__signature-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__signature-item:nth-child(n+2) {
        margin-left: 0;
        margin-top: 10px;
    }

}