@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

:root {
    --default-font: 'Roboto', sans-serif;
}

body {
    background-color: #09021c;
}

.container {
    max-width: 1100px;
    margin: auto;
}





header {
    height: 105px;
    background: linear-gradient(200deg, #0f0f0ffb, #000000e8);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 9999;
}

.container.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-iptv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: auto;
    margin-left: 5px;
    height: 105px;
}

.logo-iptv img {
    width: 145px;
    height: auto;
}

.menu-iptv .menu-computador{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-left: 30px;
    margin-right: 30px;
}

.menu-iptv a {
    color: rgba(236, 221, 221, 0.973);
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
    text-transform: uppercase;
    transition: all ease 0.3s;
}

.menu-iptv a:hover {
    color: white;
}

.menu-iptv .button-testeiptv {
    background: linear-gradient(180deg, #22B04C, #007F16);
    border: 0;
    padding: 18px 45px;
    border-radius: 15px;
    color: white;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-iptv .button-testeiptv:hover {
    background: #22B04C;
}

.menu-iptv .menu-phone{
    display: block;
    margin-right: 35px;
}

.menu-phone-nav-check {
    display: none;
}

.menu-phone-nav {
    background: linear-gradient(200deg, #0f0f0ffb, #000000e8);
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 105px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 99;
}

.menu-phone-nav a {
    padding: 8px 15px;
    font-size: 20px;
}

.menu-phone-nav a:first-child {
    margin-top: 30px;
}

.menu-phone-nav .button-testeiptv-phone {
    background: linear-gradient(180deg, #22B04C, #007F16);
    border: 0;
    width: fit-content;
    height: 55px;
    padding: 0px 30px;
    margin-left: 10px;
    border-radius: 15px;
    color: white;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-phone-nav .button-testeiptv-phone:hover {
    background: #22B04C;
}

.menu-iptv .menu-phone .open-menu-click {
    display: none;
    width: fit-content;
    gap: 10px;
    cursor: pointer;
}

.menu-iptv .menu-phone .open-menu {
    background-color: whitesmoke;
    width: 35px;
    height: 2px;
}





section.info {
    width: 100%;
    height: calc(100vh - 105px);
}

.info-text-principal {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.info-text-principal h1 {
    font-family: var(--default-font);
    color: white;
    font-size: 30px;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}

.info-text-secundario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 730px;
    margin: auto;
    padding: 10px 20px 80px 20px;
}

.info-text-secundario h2 {
    color: whitesmoke;
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 10px;
}

.info-text-secundario h3 {
    color: whitesmoke;
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 50px;
}

.info-text-secundario p {
    color: rgba(236, 221, 221, 0.973);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-text-secundario b {
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    margin-top: 10px;
    font-weight: bold;
}

.info-text-secundario b a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}


@media(max-width: 1065px) {
    .menu-iptv .menu-computador {
        gap: 15px;
    }
}

@media(max-width: 930px) {
    .menu-iptv .menu-phone .open-menu-click {
        display: flex;
        flex-direction: column;
    }

    .menu-iptv .menu-computador {
        display: none;
    }
}