 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
        }
        .menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: red;
            padding: 15px 30px;
            color: white;
        }
        .menu img {
            height: 50px;
        }
        .menu nav {
            display: flex;
            align-items: center;
        }
        .menu nav a {
            color: white;
            margin: 0 15px;
            font-size: 18px;
            text-decoration: none;
        }
        .menu .social-icons a {
            color: white;
            margin-left: 15px;
            font-size: 20px;
            text-decoration: none;
        }
        .banner {
            width: 100%;
            max-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

.container {
    display: flex;
    align-items: flex-start; /* Alinhar pelo topo */
    gap: 20px; /* Espaçamento entre os elementos */
    padding: 20px;
}

.midias {
    width: 30%;
    background-color: #f5f5f5; /* Apenas para visualização */
    padding: 20px;
    box-sizing: border-box;
}

.content {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
}
        .banner img {
            width: 100%;
            height: auto;
            max-height: 100vh;
            object-fit: cover;
        }
          .content {
            padding: 20px;
            text-align: center;
            font-size: 18px;
            width: 80%;
            margin: 0 auto;
            text-align: justify;
        }
        .content h2 {
            width: 80%;
            margin: 0 auto;
            text-align: center;
        }
 .content p {
            width: 80%;
            margin: 0 auto;
            text-align: justify;
        }

.imgs img{
	max-width:100%;
	
}
        .footer {
            background-color: #222;
            color: white;
            text-align: center;
            padding: 15px;
            position: relative;
            bottom: 0;
            width: 100%;
        }
        @media (max-width: 768px) {
            .menu {
                flex-direction: column;
                text-align: center;
            }
            .menu img {
                margin-bottom: 10px;
            }
            .menu nav {
                margin-bottom: 10px;
            }
            .menu .social-icons {
                margin-top: 10px;
            }
            .banner img {
                max-height: 250px;
            }
            .content {
                font-size: 16px;
                padding: 15px;
            }
        }