* {
    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 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about img {
    width: 100%;
    max-width: 950px; /* imagem grande no desktop */
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-text h5 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.about-text h5 span {
    color: cornflowerblue;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Service */
.service {
    background: #101010;
    padding: 50px 5%;
    text-align: center;
}

.service .title h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service .title img {
    width: 100%;
    max-width: 700px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp Button */
.whats img {
    border-radius: 50%;
    box-shadow: 0 0 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 ==================== */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .main {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        max-width: 80%;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text h5 {
        font-size: 1.4rem;
    }
}

/* Celulares grandes (até 768px) */
@media (max-width: 768px) {
    .about {
        padding: 30px 4%;
    }

    .about img {
        max-width: 95%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text h5 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .service .title h2 {
        font-size: 2rem;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .about img {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h5 {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}