@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;
    scroll-behavior: smooth;
}

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

body {
    background-color: #1D1D1D;
}

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





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

.container.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-iptv h1 {
    font-family: 'Arial', sans-serif; /* Escolha a fonte desejada */
    font-size: 30px; /* Tamanho da fonte */
    font-weight: bold;
    color: #FFBA00; /* Cor do texto */
    text-align: center; /* Alinha o texto ao centro */
    text-transform: uppercase; /* Opcional: transformar texto em maiúsculas */
    letter-spacing: 2px; /* Opcional: espaçamento entre as letras */
    margin: 0;
}


.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,
.menu-iptv .button-header-contato {
    background: transparent;
    border: 0;
    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;
    cursor: pointer;
}

.menu-iptv a:hover,
.menu-iptv .button-header-contato: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: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 105px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 99;
}

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

.menu-phone-nav .button-header-contato{
    display: flex;
}

.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;
}





.bg-iptv {
    height: calc(100vh);
    background-image: url('../img/iptv-barato.webp');
    background-position: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(27, 27, 27, 0.55), rgba(0, 0, 0, 1));
}

.container.main {
    height: calc(100vh - 105px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-iptv {
    text-align: center;
}
.titulo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px; /* Adiciona um padding para garantir que não fique colado na borda */
}

.text-iptv h1 {
    color: white;
    font-family: var(--default-font);
    font-size: 45px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    width: 100%; /* Ajusta a largura para 100% do contêiner */
    max-width: 768px; /* Limita a largura máxima */
    box-sizing: border-box; /* Inclui padding e borda no cálculo da largura */
    text-align: center; /* Garante que o texto fique centralizado */
}

.text-iptv h2 {
    color: #FFBA00;
    font-family: var(--default-font);
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    width: 100%; /* Ajusta a largura para 100% do contêiner */
    max-width: 768px; /* Limita a largura máxima */
    box-sizing: border-box;
    text-align: center; /* Garante que o texto fique centralizado */
}

/* Media query para ajustar o tamanho da fonte em dispositivos menores */
@media (max-width: 768px) {
    .text-iptv h1 {
        font-size: 15px; /* Diminui o tamanho da fonte em telas pequenas */
    }

    .text-iptv h2 {
        font-size: 12px; /* Diminui o tamanho da fonte em telas pequenas */
    }
}



.text-iptv h1 b{
    color: #FFBA00;
}

.text-iptv h2 b{
    color: #FFBA00;
}

.text-iptv p {
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-size: 15px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: 100%; /* Ajusta a largura para 100% do contêiner */
    max-width: 630px; /* Limita a largura máxima */
    box-sizing: border-box; /* Inclui padding e borda no cálculo da largura */
}

.text-iptv button {
    background: linear-gradient(170deg, #22B04C, #007F16);
    border: 0;
    width: 100%; /* A largura agora será 100% do contêiner pai */
    max-width: 300px; /* Limita a largura máxima do botão para 300px */
    height: 60px;
    border-radius: 30px;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 17px;
    font-weight: 600;
    margin: 0 auto; /* Centraliza o botão */
    display: block; /* Garante que o botão ocupe o espaço inteiro até o máximo de 300px */
}

/* Media query para ajustar o tamanho da fonte e botões em dispositivos menores */
@media (max-width: 768px) {
    .text-iptv p {
        font-size: 14px; /* Diminui o tamanho da fonte em telas pequenas */
        margin-bottom: 20px; /* Ajusta a margem inferior */
    }

    .text-iptv button {
        width: 100%; /* O botão ocupará toda a largura do contêiner em telas pequenas */
        max-width: 300px; /* Limita a largura máxima do botão */
    }
}


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

.saiba-mais {
    position: absolute;
    bottom: 0;
    animation: MoveUpDown 1.6s linear infinite;
    cursor: pointer;
}

.saiba-mais svg {
    color: whitesmoke;
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom: 0;
    }
    50% {
        bottom: 20px;
    }
}





.section-help {
    background-image: url('../img/iptv-20-reais-2024.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-gradient-help {
    width: 100%;
    height: 100%;
    background: linear-gradient(5deg, rgba(32, 32, 32, 0.75), rgba(0, 0, 0, 1));
}

.container.como-funciona {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 30px;
    animation:  appear 1ms ease-in-out;
    animation-timeline: view();
    animation-range: cover 0% cover 35%;
}

.infos-como-funciona {
    width: 58%;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 10px;
    padding: 0px 10px;
}

.infos-como-funciona h2 {
    color: white;
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 0.4px;
    margin-bottom: 45px;
    text-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
}

.infos-como-funciona h5 b:first-child {
    color: #FFBA00;
    font-size: 21px;
    font-weight: 900;
}

.infos-como-funciona h5 {
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.infos-como-funciona h5 svg {
    color: #FFBA00;
}

.infos-como-funciona button {
    background: transparent;
    border: 1px solid #1CA742;
    padding: 18px 80px;
    border-radius: 15px;
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease 0.3s;
}

.infos-como-funciona button:hover {
    background: #22B04C;
    color: white;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes appear {
    from {
        opacity: 0;
        translate: -100vw 0;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}





.section-planos {
    background: linear-gradient(160deg, rgba(15, 14, 15, 0.555), #050505c0);
}

.container.planos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

.container.planos h3 {
    color: white;
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 0.4px;
    margin-bottom: 50px;
    position: relative;
}

.container.planos h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0px;
    width: 135px;
    height: 3px;
    background-color: #FFBA00;
}

.box-planos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}

.box-planos .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFBA00;
    border-radius: 5px;
    padding: 20px 50px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
    transition: all ease 0.3s;
}

.box-planos .box:hover {
    border: 1px solid #FFBA00;
}

.box-planos .box.trimes {
    animation: TrimestralBorder 1.5s linear infinite;
    position: relative;
}

@keyframes TrimestralBorder {
    0%, 100% {
        border: 1px solid #ff8c00f1;
    }
    50% {
        border: 1px solid #ff8c00f1;
    }
}

.box-planos .box.trimes::after {
    content: "Recomendado";
    position: absolute;
    top: 5px;
    right: -23px;
    transform: rotate(390deg);
    width: 170px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff8c00f1;
    color: white;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.box-planos .box img {
    width: 135px;
    height: 135px;
    margin-top: 5px;
}

.box-planos .box .price {
    color: white;
    font-family: var(--default-font);
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
}

.box-planos .box .price.mensal::before {
    content: "R$ 30,00";
    position: absolute;
    color: whitesmoke;
    font-size: 16px;
    left: -60px;
    top: -15px;
}

.box-planos .box .price.trimestral::before {
    content: "R$ 85,00";
    position: absolute;
    color: whitesmoke;
    font-size: 16px;
    left: -60px;
    top: -15px;
}

.box-planos .box .price.anual::before {
    content: "R$ 340,00";
    position: absolute;
    color: whitesmoke;
    font-size: 16px;
    left: -60px;
    top: -15px;
}

.box-planos .box .price::after {
    content: "";
    position: absolute;
    width: 63px;
    height: 2px;
    left: -60px;
    top: -8px;
    background-color: rgba(0, 0, 0, 0.6);
}

.box-planos .box .info-mes {
    color: whitesmoke;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 35px;
}

.box-planos .box p {
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 20px;
}

.box-planos .box p svg {
    height: 15px;
    width: 15px;
}

.box-planos .box button {
    background: linear-gradient(170deg, #22B04C, #007F16);
    color: white;
    margin-top: 15px;
    border: 0;
    width: 200px;
    height: 45px;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 10px;
}

.box-planos .box button:hover {
    background: linear-gradient(170deg, #139b3c, #1b9e42);
}





.section-teste {
    background: linear-gradient(200deg, #1e0956, #09021c);
}

.container.teste-gratis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 30px;
}

.container.teste-gratis .img-teste-gratis {
    width: 200px;
}

.container.teste-gratis .img-teste-gratis img {
    width: 200px;
}

.teste-gratis h3 {
    color: white;
    font-family: var(--default-font);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 35px;
}

.teste-gratis h3 b {
    color: #16ce4d;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

.teste-gratis button {
    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;
}

.teste-gratis button:hover {
    background: #22B04C;
}

.bebe-personagem-iptv-familia {
    position: absolute;
    width: 330px;
    height: auto;
    top: 20px;
    left: 15px;
}

.bebe-personagem-iptv-familia img {
    width: 330px;
    height: auto;
}





.section-perguntas {
    background: linear-gradient(160deg, rgba(15, 14, 15, 0.555), #050505c0);
}

.container.perguntas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 15px;
}

.container.perguntas h2 {
    color: white;
    font-family: var(--default-font);
    font-size: 35px;
    margin-bottom: 15px;
}

.container.perguntas #text-p-perguntas {
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-size: 15px;
    margin-bottom: 60px;
}

.box-perguntas {
    width: 600px;
}

.box-perguntas .pergunta {
    border-bottom: 1px solid #FFBA00;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all linear 0.3s;
}

.box-perguntas .pergunta h3 {
    color: white;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 10px;
}

.box-perguntas .pergunta svg {
    width: 15px;
    height: 15px;
    transition: all linear 0.3s;
}

.box-perguntas .pergunta .response {
    display: none;
    color: rgba(236, 221, 221, 0.973);
    font-family: var(--default-font);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
    transition: all linear 0.2s;
}





.container.footer {
    padding-top: 50px;
    padding-bottom: 50px;
}

.img-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.img-footer img {
    width: 130px;
}

.infos-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.horario-empresa {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.horario-empresa h6 {
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--default-font);
}

.horario-empresa p {
    color: whitesmoke;
    font-family: var(--default-font);
    font-size: 15px;
    font-weight: 400;
}

.formasdepagamento img {
    width: 145px;
}

.navigation-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.navigation-footer a {
    color: white;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 400;
    transition: all ease 0.3s;
}

.navigation-footer a:hover {
    color: #da7c17;
}

.media-social {
    display: flex;
    gap: 25px;
}

.media-social a {
    cursor: pointer;
    color: white;
    transition: all ease 0.3s;
}

.media-social a:hover {
    color: #FFBA00;
}

.programador {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding: 0px 15px;
}

.programador p,
.programador p a {
    color: white;
    font-family: var(--default-font);
    font-size: 15px;
    transition: all ease 0.3s;
}

.programador p a:hover {
    color: #FFBA00;
}





.infos-shop {
    display: none;
    width: 285px;
    background-color: #22B04C;
    height: 50px;
    border-radius: 5px;
    position: fixed;
    bottom: 50px;
    left: 15px;
}

.shop {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    border-radius: 5px;
}

.color-shop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 50px;
    background-color: #009A64;
    border-radius: 5px;
}

.text-shop {
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    gap: 3px;
}

.text-shop svg {
    width: 17px;
    height: 17px;
    margin-right: 2px;
}

.text-shop b {
    color: white;
}

.text-shop .close {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

@keyframes MoveShopInfo {
    0%, 50% {
        left: -300px;
    }
    100% {
        left: 15px;
    }
}




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

    .box-planos {
        justify-content: center;
    }
}

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

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

    .text-iptv h1 {
        font-size: 45px;
        margin-bottom: 20px;
        width: fit-content;
        margin-left: 30px;
        margin-right: 30px;
    }

    .text-iptv p {
        font-size: 14px;
        width: fit-content;
        margin-left: 50px;
        margin-right: 50px;
        letter-spacing: 0.2px;
    }

    .container.como-funciona {
        justify-content: center;
        margin: auto;
    }

    .infos-como-funciona {
        width: 85%;
    }

    .infos-como-funciona h2 {
        text-align: center;
        font-size: 32px;
    }

    .infos-como-funciona h5 {
        text-align: center;
        font-size: 17px;
    }

    .infos-como-funciona svg {
        width: 25px;
    }

    .infos-como-funciona {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: unset;
    }

    .infos-como-funciona button {
        margin-top: 20px;
    }

    .box-planos .box.trimes::after {
        transform: rotate(0);
        left: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
    }

    .container.teste-gratis .img-teste-gratis img,
    .container.teste-gratis .img-teste-gratis {
        width: 135px;
    }

    .teste-gratis h3 {
        font-size: 20px;
        letter-spacing: 0px;
        margin-bottom: 20px;
    }

    .teste-gratis button {
        padding: 18px 15px;
        font-size: 14px;
    }

    .container.perguntas h2 {
        font-size: 25px;
    }

    .container.perguntas #text-p-perguntas {
        font-size: 12px;
        text-align: center;
    }

    .box-perguntas {
        width: 85vw;
    }

    .box-perguntas .pergunta h3 {
        font-size: 15px;
    }

    .box-perguntas .pergunta .response {
        font-size: 13px;
    }

    .infos-footer {
        gap: 50px;
        justify-content: center;
        flex-direction: column;
    }

    .horario-empresa {
        text-align: center;
    }

    .navigation-footer {
        display: flex;
        text-align: center;
    }

    .programador {
        justify-content: center;
        flex-direction: column;
    }

    .programador p, 
    .programador p a {
        font-size: 13px;
    }

    .bebe-personagem-iptv-familia {
        width: 95px;
    }

    .bebe-personagem-iptv-familia img {
        width: 95px;
    }
}

@media(max-width: 480px) {
    .text-iptv h1 {
        font-size: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .text-iptv p {
        font-size: 11px;
        margin-left: 30px;
        margin-right: 30px;
    }

    .text-iptv button {
        font-size: 15px;
        width: 80%;
    }

    .infos-como-funciona {
        width: 95%;
    }

    .infos-como-funciona svg {
        width: 20px;
    }

    .container.planos h3 {
        font-size: 30px;
    }
}

@media(max-width: 300px) {
    .box-planos .box {
        padding: 20px 30px;
    }

    .box-planos .box .price::after {
        left: -29px;
        top: -14px;
    }

    .box-planos .box .price.mensal::before {
        left: -30px;
        top: -22px;
    }

    .box-planos .box .price.trimestral::before {
        left: -30px;
        top: -22px;
    }

    .box-planos .box .price.anual::before {
        left: -30px;
        top: -22px;
    }

    .box-perguntas .pergunta h3 {
        font-size: 12px;
    }

    .box-perguntas .pergunta .response {
        font-size: 11px;
    }

    .infos-como-funciona h5 {
        font-size: 15px;
    }

    .infos-como-funciona button {
        font-size: 11px;
    }

    .infos-shop {
        width: 230px;
    }

    .text-shop {
        font-size: 13px;
    }

    .text-shop svg {
        display: none;
    }

    .teste-gratis h3 {
        font-size: 16px;
    }
    
    .bebe-personagem-iptv-familia {
        width: 80px;
    }

    .bebe-personagem-iptv-familia img {
        width: 80px;
    }