/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    scroll-behavior: smooth;
}

header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 280px;
}

/* SEÇÕES */
section {
    padding: 40px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

/* PARCEIROS */
.logos-parceiros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logos-parceiros img {
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logos-parceiros img:hover {
    transform: scale(1.1);
}

/* FACHADA */
.fachada img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* RODAPÉ */
footer {
    background-color: #7a7a7a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.whatsapp img:hover {
    transform: scale(1.1);
}

/* ANIMAÇÃO SUAVE */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .logos-parceiros {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        max-width: 150px;
    }

    .whatsapp img {
        width: 50px;
        height: 50px;
    }
}
