@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}
img {
    width: 100%;
}
ul li {
    text-decoration: none;
    list-style-type: none;
}
:root {
    --vermelho-principal: #e10000;
    --vermelho-secundario: var(--vermelho-principal);
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.main {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.c-header {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vermelho-principal);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0px 4px 10px 0px #00000059;
}
#logo {
    width: 70px;
}
.c-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
    gap: 15px;
    color: white;
}
.c-sect__principal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background: linear-gradient(90deg, #ff0000 40%, rgba(255,255,255,0) 100%);
}
/* #chamado-img {
    width: 500px;
    filter: drop-shadow(0 0 10px #840000);
} */

/* Links */

.c-sec__link_uteis {
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    position: relative;
}
.c-sec__link_uteis::before {
    position:  absolute;
    content: '';
    width: 200px;
    height: 800px;
    background: var(--vermelho-principal);
    transform: rotate(-45deg);
    z-index: -1;
    left: 0;
}
.c-sec__link_uteis::after {
    position:  absolute;
    content: '';
    width: 50px;
    height: 800px;
    background: var(--vermelho-principal);
    transform: rotate(-45deg);
    z-index: -1;
    left: 280px;
}
.links--uteis {
    border: none;
    padding: 8px 20px;
    color: white;
    font-size: 25px;
    background-color: var(--vermelho-principal);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 0px 10px 1px #840000;
}
.link--icon {
    color: white !important;
}

/* Links */

/* PLanos */

.c-section__planos {
    background-color: var(--vermelho-principal);
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.c-planos--titulos {
    display: flex;
    gap: 5px;
    padding: 20px 0;
}
.c-planos--titulos h1 {
    font-size: 45px;
    font-weight: 900;
    font-family: 'Arial';
}
#planos {
    color: white;
}

.planos-cards {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}
.c-planos {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    width: 250px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 17px 8px #00000087;
    gap: 15px;
    z-index: 2;
}
.plano-principal {
    transform: scale(1.1);
    z-index: 10;
}
.c-planos .cards-titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    width: 100%;
    border-radius: 13px 13px 0 0;
    background-color: var(--vermelho-principal);
    font-weight: bold;
    color: white;
    font-weight: bold;
    font-size: 25px;
}
.card--velocidade {
    border-bottom: 2px solid white;
    padding: 0 25px;
    font-family: 'Roboto';
    font-size: 65px;
}

/* VALOR */
.c-plano--valor {
    display: flex;
}
.c-plano--valor span {
    font-family: 'Lato';
}
.valor-sinal, .valor-detalhes{
    position: relative;
    top: 9px;
    font-size: 16px;
    font-weight: bold;
}
.valor-detalhes {
    display: flex;
    flex-direction: column;
}
.valor-mes {
    font-size: 12px;
    font-weight: 500;
    color: #414141;
}
.valor-real {
    font-size: 40px;
    font-weight: bold;
    padding: 0 4px;
}
/* VALOR */

.vantagens {
    font-size: 16px;
    color: #414141;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    font-family: 'Roboto';
}
.vantagens li {
    padding: 8px;
    border-bottom: 1px solid #41414140;
}
.fa-sharp, .fa-solid {
    color: var(--vermelho-principal);
    padding-right: 5px;
}

.nome-plano {
    padding: 0 20px;
    color: #414141;
    background-color: white;
    border-radius: 8px;
    font-size: 18px;
    position: absolute;
    transform: translate(0, -50%);
}
.brinde {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--vermelho-principal);
    color: white;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    transform: translate(00%, 50%);
    box-shadow: 0px 0px 10px 3px #00000087;

}
/* PLanos */

/* Footer */

.c-sect__footer {
    position: relative;
    background-color: rgb(24, 24, 24);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-footer--areas {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    color: white;
}

/* empresa */
.empresa {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logoCompleta {
    width: 150px;
    padding: 20px 0;
}
.fa-brands {
    font-size: 30px;
    padding: 0 4px;
    color: var(--vermelho-principal);
}
/* empresa */
/* Informações */
.c-informacoes ul li {
    padding: 4px 0;
}

/* Informações */

.c-atendimento {
    display: flex;
    flex-direction: column;
}
.atendimento--titulo {
    font-size: 20px;
}
.rodape {
    padding: 8px 30px;
    color: white;
    text-align: center;
}

/* Footer */

