<style>

/* =========================================
   GLOBAL / BODY
========================================= */
body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* LINKS GLOBAIS */
a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   HEADER / TOPO
========================================= */
.topo {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    border-bottom: 2px solid #ffd000;
    z-index: 999;
    transition: 0.3s;
}

.topo.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.container-topo {
    max-width: 1200px;
    margin: auto;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp img {
    width: 18px;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}



/* =========================================
   SEÇÃO 1 - BANNER PRINCIPAL
========================================= */
.container-1 {
    display: flex;
    flex-wrap: wrap;
    min-height: 100dvh;
    background: #000;
    padding-top: 80px; /* para não cobrir o header */
}

.left, .right {
    flex: 1;
    padding: 40px;
}

.right img {
    max-width: 100%;
    height: auto;
}

.big {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
}

.yellow {
    color: #FFD700;
}

.small {
    font-size: 16px;
    margin-top: 10px;
}

.highlight {
    background: #FFD700;
    color: #000;
    padding: 3px 6px;
    font-weight: bold;
}

.strike {
    text-decoration: line-through;
    color: red;
}

.price {
    font-size: 35px;
    font-weight: bold;
    margin-left: 80px;
}

.price2 {
    font-size: 50px;
    font-weight: bold;
}

.alert {
    background: #FFD700;
    color: #000;
    padding: 10px;
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}

.checks {
    margin-top: 15px;
    font-size: 14px;
    color: #FFD700;
}

.checks span::before {
    content: "✔ ";
    font-weight: bold;
}

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.more {
    border: 2px solid #FFD700;
    padding: 10px 15px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.more::after {
    content: "↓";
}

/* =========================================
   SEÇÃO 2 - 4 PARTES
========================================= */
.container-2 {
    display: flex;
    flex-wrap: wrap;
    min-height: 50vh;
}

.coluna {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
    background-color: #FFD700;
}

.coluna1 {
    color: black;
}

.coluna1 h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.lista {
    list-style: none;
    padding: 0;
}

.lista li {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.lista li i {
    color: black;
    margin-right: 10px;
}

.destaque {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
}

/* GRID CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
}

.card i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 0px;
}

/* =========================================
   SEÇÃO 3 - MAIS BARATO
========================================= */
.secao-preta {
    background-color: black;
    color: white;
    padding: 0px;
}

.container-3 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px;
}

.col {
    flex: 1;
    min-width: 250px;
}

.col1 {
    border-right: 4px solid #FFD700;
    padding-right: 20px;
}

.col1 h2 {
    font-size: 30px;
    text-transform: uppercase;
}

.col2 {
    text-align: center;
}

.de, .por {
    font-size: 12px;
    text-transform: uppercase;
    line-height:0;
}

.preco-antigo {
    font-size: 20px;
    text-decoration: line-through;
    text-decoration-color: red;
    margin-bottom: 10px;
}

.preco-novo {
    margin: 10px 0;
}

.rs {
    color: #FFD700;
    font-size: 18px;
}

.valor {
    color: #FFD700;
    font-size: 50px;
    font-weight: bold;
}

.mes {
    font-size: 12px;
}

.tempo {
    display: inline-block;
    background-color: #FFD700;
    color: black;
    font-size: 10px;
    padding: 5px 10px;
    transform: rotate(-3deg);
    margin-top: 10px;
    text-transform: uppercase;
}

.col3 p {
    margin: 10px 0;
    font-size: 14px;
    text-transform: uppercase;
}

.col3 i {
    color: #FFD700;
    margin-right: 8px;
}

/* =========================================
   SEÇÃO 4 - 5 ÍCONES
========================================= */
.secao-dupla {
    position: relative;
    display: flex;
    background: #000;
    padding: 40px;
    overflow: hidden;
}

.secao-dupla::before,
.secao-dupla::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD700;
}

.secao-dupla::before { top: 40px; }
.secao-dupla::after { bottom: 40px; }

.col1 {
    color: #fff;
}

.beneficios {
    display: flex;
    gap: 5px;
    margin-top: 0px;
    flex-wrap: wrap;
}

.item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.titulo-4 {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

.sub {
    font-size: 12px;
    color: #ccc;
    margin-top: 0;
}

.video-direita {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    flex: 1;
}

/* =========================================
   SEÇÃO 5 - 4 IMAGENS
========================================= */
.secao {
    background-color: #000;
    padding: 20px 40px 40px 40px;
    color: #fff;
}

.container-secao5 {
    display: flex;
    flex-wrap: wrap;
    min-height: 20vh;
    align-items: center;
}

.coluna1-secao5 {
    flex: 1;
}

.coluna1 h3 {
    color: #fff;
    margin-bottom: 20px;
}

.grid-imagens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.imagem {
    min-height: 100px;
    aspect-ratio: 1 / 1;
    border: 3px solid yellow;
    background-color: #222;
}

.coluna2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-left: 80px;
}

.balao {
    background-color: yellow;
    color: black;
    padding: 10px 15px;
    font-weight: bold;
    margin-top: 0;
    position: relative;
}

.balao::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: yellow transparent transparent transparent;
}


.estrelas {
    color: yellow;
    font-size: 40px;
    margin-left: 20px;
}

.depoimento {
    color: #fff;
    line-height: 1.5;
}

/* =========================================
   SEÇÃO 6 - AMARELA
========================================= */
.secao-amarela {
    background-color: yellow;
    padding: 20px;
    text-align: center;
}

.container-amarelo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.alerta {
    background-color: black;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.icone {
    font-size: 18px;
    color: yellow;
}

.preco {
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.urgencia {
    color: black;
    font-size: 13px;
}

/* =========================================
   SEÇÃO 7 - RODAPÉ
========================================= */
.secao-preta-central {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
}

.container-central {
    max-width: 800px;
    margin: 0 auto;
}

.titulo7 {
    color: yellow;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitulo {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

.alinhamento {
    display: flex;
    justify-content: center;
}

/* =========================================
   BOTÃO WHATSAPP FLUTUANTE
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    animation: pulse 1.5s infinite;
}

.texto-wpp {
    background: #25d366;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 5px;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-float:hover img {
    transform: scale(1.15);
}

/* =========================================
   RESPONSIVO MOBILE
========================================= */
@media (max-width: 768px) {

    /* HEADER */
    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .menu-mobile {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 15px;
		z-index: 9999;
    }

    .menu-mobile.active {
        display: flex;
    }

    .menu-mobile a {
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    .logo img {
        height: 60px;
    }

    .btn-whatsapp {
        font-size: 12px;
        padding: 8px 10px;
    }
			
			.btn-header {
        display: none;
    }

    /* SEO 1 */
    .container-1 {
        flex-direction: column;
        text-align: center;
    }

    .left, .right {
        padding: 20px;
    }

    .big {
        font-size: 28px;
    }

    .price {
        margin-left: 0;
    }
	
	 

    /* SEO 2 */
    .container-2 {
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    /* SEO 3 */
    .container-3 {
        flex-direction: column;
        text-align: center;
    }

    .col1 {
        border: none;
        padding: 0;
    }

    /* SEO 4 */
	
	.secao-dupla::before {
    top: 10px;
    }

    .secao-dupla::after {
    bottom: 10px;
    }
  
    .secao-dupla {
        flex-direction: column;
        padding: 20px;
		padding-top: 60px;
        padding-bottom: 60px;
    }

    .beneficios {
        justify-content: center;
    }

    /* SEO 5 */
    .container-secao5 {
        flex-direction: column;
    }

    .grid-imagens {
        grid-template-columns: 1fr 1fr;
    }

    .coluna2 {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    /* SEO 6 */
    .container-amarelo {
        text-align: center;
    }

    /* BOTO WHATSAPP */
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
	
	.texto-wpp {
		display: none;
    }
	

}


</style>