body {
    font-family: 'Poppns', Arial, sans-serif;
    background: #fff7f0;
    margin: 0;
    color: #222;
}


video{
    border: solid 4px #e65c00;
    border-radius: 10px;
}

.top-bar{
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
}
.hero {
    border-radius: 24px;
    
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
}
.hero-info {
    flex: 1 1 400px;
}
.badge {
    display: inline-block;
    background: #fff3e0;
    color: #ff9800;
    font-weight: 600;
    border-radius: 16px;
    padding: 6px 18px;
    font-size: 1rem;
    margin-bottom: 18px;
}
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.1;
}
h1 .orange {
    color: #ff6600;
}
.subtitle {
    font-size: 1.0rem;
    color: #666;
    margin-bottom: 22px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 1rem;
}
.features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff6600;
    background: #fff3e0;
    border-radius: 12px;
    padding: 4px 4px;
    font-weight: 500;
}
.buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}
.btn-primary {
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,102,0,0.12);
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #e65c00;
}
.btn-secondary {
    background: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
    background: #fff3e0;
}
.stats {
    display: flex;
    gap: 48px;
    margin-top: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6600;
}
.hero-img-section {
    position: relative;
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-img {
    max-width: 440px;
    /* border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    */
}
.novo-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ff6600;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,102,0,0.12);
}
.rating {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #fff;
    color: #ff6600;
    border-radius: 12px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,102,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}
.star {
    color: #ff9800;
    font-size: 1.2em;
}
.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: -50px 0 24px 0;
}
.section-title .orange {
    color: #ff6600;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.benefit-card {
    background: #fff;
    border-radius: 16px;
    border: #ff6600 1px solid;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 24px;
    text-align: center;
    font-size: 1.05rem;
}

.benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-8px);
    background-color: #ff6600;
    color: #fff;
    transition: all 0.2s;
}



.benefit-icon {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 12px;
}
.prompt-box {
    background: #fff3e0;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #ff6600;
    font-weight: 600;
}
.for-benefits {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}
.for-list, .benefits-list {
    
    border: solid 0.5px #ff6600;
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 24px;
    height: 400px;
}
.for-list ul, .benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.for-list li, .benefits-list li {
    margin-bottom: 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.for-list li:before {
    content: "👶";
}
.benefits-list li:before {
    content: "✔️";
    font-size: 12px;
}
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 24px;
    font-size: 1rem;
}
.testimonial-stars {
    color: #ff9800;
    font-size: 1.2em;
    margin-bottom: 8px;
}
.offer-section {
    background: #ff9800;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    border: solid 0.5px #ff6600;
}
.offer-img {
    margin-top: -60px;
    max-width: 220px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #fff;
    border: solid 0.5px #ff6600;
}
.offer-details {
    flex: 1;
}
.offer-price {
    font-size: 4rem;
    color: #fff7f0;
    font-weight: 700;
    margin-bottom: 12px;
}
.offer-btn {
    
    color: #fff;
    background: #e65c00;
    border: solid 1px #fff;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(255,102,0,0.12);
    transition: background 0.2s;
}
.offer-btn:hover {
    background: #e65c00;
}
.guarantee-section {
    margin-top: 60px;
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 32px;
    margin-bottom: 32px;
    border: solid 0.5px #ff6600;
}

.guarantee-section .offer-img {
    margin-top: -60px;
    max-width: 220px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #ff9800;
    border: solid 1px #ffffff;
}

.guarantee-title {
    color: #ff6600;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.guarantee-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.guarantee-list li:before {
    content: "🔒";
}
.final-section {
    background: #fff3e0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
}
.final-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.final-price {
    font-size: 4rem;
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 12px;
}
.final-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(255,102,0,0.12);
    transition: background 0.2s;
}
.final-btn:hover {
    background: #e65c00;
}
.alert {
    background: #ff0000;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    margin: 18px 0;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .container, .hero, .offer-section, .guarantee-section, .final-section {
        padding: 16px;
    }
    .hero {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .hero-img-section {
        width: 90%;
        position: relative;
        flex: 1 1 320px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .offer-section {
        flex-direction: column;
        gap: 16px;
    }
    .benefits-grid, .testimonials {
        grid-template-columns: 1fr;
    }
    .for-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    img{
        max-width: 100%;
        height: auto;
    }
}


.prompt-box h2{
    color: #ff6600;
    font-size: 1.5rem;
    margin: 0;
}