<style>
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #8BC34A;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 28px;
    color: #000;
}

.hero h2 {
    font-size: 22px;
    margin-top: 10px;
}

.hero ul {
    margin-top: 20px;
    padding-left: 20px;
}

.hero ul li {
    margin-bottom: 8px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: #2c2f5b;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero-img img {
    max-width: 300px;
}

.section {
    padding: 50px 0;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    font-style: italic;
}
</style>

<div class="container">
    
    <div class="hero">
        
        <div class="hero-text">
            <h1>CHEGA DE TÉDIO E CRIANÇAS NAS TELAS</h1>
            <h2>GUIA INFANTIL COM 50 ATIVIDADES</h2>

            <ul>
                <li>Atividades fáceis de aplicar</li>
                <li>Para meninos e meninas</li>
                <li>Aprenda brincando</li>
                <li>Atividades rápidas</li>
                <li>50 ideias prontas</li>
                <li>Chega de "estou entediado"</li>
            </ul>

            <a href="#" class="btn">QUERO MEU GUIA</a>
        </div>

        <div class="hero-img">
            <img src="https://via.placeholder.com/300x500" alt="Guia infantil">
        </div>

    </div>

</div>

<div class="section">
    <h2>Sobre o conteúdo</h2>
    <p>Com o guia infantil com 50 atividades, você terá dias mais divertidos com as crianças e momentos inesquecíveis em família.</p>
</div>