* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

body {
    background-color: #101010;
    color: #fff;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #191919;
    padding: 50px 5%;
}

.main {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about img {
	width: 100%;
    max-width: 600px;
    height: auto;
	border-radius: 10px;
	display: block;
	margin: 0 auto;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-text h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.about-text h5 span {
    color: cornflowerblue;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 18px;
}

/* WhatsApp Button */
.whats img {
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    transition: transform .3s ease;
}

.whats img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #101010;
    font-size: 16px;
    color: #f0f0f0;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .about-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .main {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }
}