@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root {
    --fundo-rodape: #fff;
    --fundo-texto: #0044cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* =============== HEADER ================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.6s, background 0.6s;
    z-index: 100000;
}

header.sticky {
    padding: 5px 50px;
    background: #fff;
}

header .logo {
    font-weight: 700;
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.6s;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header ul li {
    list-style: none;
}

header ul li a {
    margin: 0 15px;
    text-decoration: none;
    color: rgb(255, 0, 0);
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.6s;
}

header.sticky .logo,
header.sticky ul li a {
    color: blue;
}

/* =============== BANNER ================ */
.banner {
    width: 100%;
    height: 100vh;
    background: url(../images/logo_adc.jpg) no-repeat center center/cover fixed;
}

/* =============== FOOTER ================ */
footer {
    width: 100%;
}

footer .rodape {
    width: 100%;
    background: var(--fundo-rodape);
    padding: 20px 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-company,
.footer-rental,
.footer-contact,
.footer-social {
    
    height: 100px;
}

.footer-links h3 {
    margin-bottom: 10px;
}

.footer-links h3 a, .footer-links h5 a {
    color: white;
    text-decoration: none;
}

.rodape .footer-social img {
    width: 32px;
    height: 32px;
}

footer .last {
    background: var(--fundo-texto);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

footer .last a {
        color: #ffcc00; /* Destaque para o link */
        text-decoration: none; /* Remove sublinhado */
}

/* =============== CONTENT ================ */
.content {
    max-width: 1000px;
    min-width: 300px;
    height: auto;
    background: var(--fundo-texto);
    border-radius: 8px;
    box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin: 0 auto;
    display: flex;
}

.descr {
    margin: 26px 8%;
    font-size: x-large;
}

.descr > img {
    border: #0044cc solid 3px;
    border-radius: 10px;
    display: flex;
    margin: 2% auto;
    width: 13em;
}

.descr-img {
    border: #000 solid 6px;
    border-radius: 10px;
    width: 6em;
}

.descr-app {
    display: flex;
    justify-content: space-evenly;
    margin: 2% 0;
}

.video-app {
    border: #000 solid 4px;
}

.tv {
    position: relative;
    display: flex;
    justify-content: center;
}

.tv img {
    width: 420px;
}

.tv a {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    text-decoration: none;
}

/* =============== MENU ================ */

.menu-icon {
    color: #fff;
    font-size: x-large;
}

#menu-toggle, .menu-icon {
    display: none;
}

.link-chat {
    justify-content: center;
}

/* ========================================================================== */
/* Media Queries (Responsividade) */
@media screen and (max-width: 980px) {
    header {
        padding: 10px 20px;
        opacity: 0.9;
    }

    header ul {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 60%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        transition: left 0.5s ease;
        border-radius: 0 20px 20px 0;
    }

    header ul li {
        margin: 10px 0;
    }

    header ul li a {
        color: blue;
        font-size: larger;
    }

    header .menu-icon {
        display: block;
        color: black;
    }

    #menu-toggle:checked~ul {
        left: 0;
    }

    header .logo {
        font-size: 1.4em;
        color: red;
    }

    .banner {
        height: 30vh;
        background-position: right;
        background: url(../images/logo_adc.jpg) no-repeat center center/cover;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .last {
        margin-top: 20px;
    }

    .content {
        height: auto;
        padding: 20px;
    }

    .link-chat img {
        width: 50%;
    }

    .video-app {
        height: auto;
    }
}