/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #111;
    color: #fff;
}

/* HEADER */
header {
    width: 100%;
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}
header img {
    width: 130px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-20px);} 
    to {opacity: 1; transform: translateY(0);} 
}

/* CONTAINER */
.container {
    max-width: 1000px;
    margin: 10px;
    /* margin: 40px auto; */
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(255,0,0,0.15);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {opacity: 0;} to {opacity: 1;} 
}

h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.sub {
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
}

/* BOXES DE BENEFÍCIOS */
.beneficios {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    max-width: 250px;
    max-height: 300px;
    background: #121212;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

.box i {
    font-size: 40px;
    color: #ff0000;
    margin-bottom: 10px;
}

/* BOTÃO PREMIUM */
.btn-premium {
    margin: 40px auto 10px;
    display: block;
    transition: .3s;
    width: 80%;
    font-size: 22px;
    padding: 18px 25px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    color: white;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.btn-voltar {
    background-color: #FF323D;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-voltar:hover {
    background-color: #ff111d;
}

.btn-verde {
    background: linear-gradient(45deg, #1b8800, #71ff4d);
}

.btn-verde:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(9, 255, 0, 0.4);
}

/* ================= COMPARAÇÃO ================= */

.comparacao-container {
    max-width: 1100px;
    /* margin: 50px auto; */
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
}

.tabela-comparacao {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.tabela-comparacao th,
.tabela-comparacao td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #1a1a1aff;
    color: #ffffffff;
    background-color: #121212;
}

.tabela-comparacao th {
    background: #ff0000;
    color: white;
}

.pro-col {
    /* background: #ffe5e5; */
    color: #ed4747;
    font-weight: bold;
}

/* PAGAMENTO SEGURO */
.preco-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

.preco-card {
    background: #111;
    border: 2px solid #ff0000;
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    width: 320px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.preco-titulo {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 15px;
}

.preco-oferta {
    font-size: 22px;
    margin-bottom: 10px;
}

.risco {
    text-decoration: line-through;
    color: #bbb;
}

.valor {
    color: #ff0000;
    font-weight: bold;
    font-size: 26px;
}

.preco-detalhe {
    margin-bottom: 25px;
    font-size: 16px;
}

.botao-assinar {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.botao-assinar:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.pgto-seguro {
    margin-top: 10px;
}

.seguro {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #000000ff;
}

.pagamentos {
    display: block;
    /* margin: 10px auto; */
    width: 280px;
    animation: fadeIn 1.1s ease;
}

.garantia-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background: #000;
}


.garantia-card {
    background: #111;
    border: 2px solid #ff0000;
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
    width: 380px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}


.garantia-img {
    width: 150px;
    margin-bottom: 20px;
}


.garantia-titulo {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 15px;
}


.garantia-texto {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
}


.garantia-extra {
    font-size: 15px;
    color: #ff4d4d;
}

/* RODAPÉ */
footer {
    width: 100%;
    margin-top: 60px;
    text-align: center;
    padding: 20px 0;
    background: #000;
    font-size: 14px;
    border-top: 2px solid #ff0000;
    color: rgb(255, 255, 255);
}