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

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: white;
    line-height: 1.6;
}

.banner {
    background: url('./img/img logo.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 70vh;
}

.servicos {
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
}

.servicos h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #f39c12;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card p,
.card h1 {
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

.contato {
    background: #222;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.contato h1 {
    font-size: 28px;
    margin-bottom: 25px;
}

.whatsapp,
.telefone {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: .3s;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.telefone {
    background: #f39c12;
    color: black;
}

.whatsapp:hover,
.telefone:hover {
    opacity: .8;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
}

/* TABLET */
@media (max-width: 768px) {
    .banner {
        min-height: 50vh;
    }

    .contato h1 {
        font-size: 22px;
    }

    .card img {
        height: 220px;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .banner {
        min-height: 35vh;
    }

    .servicos {
        padding: 30px 15px;
    }

    .servicos h1 {
        font-size: 28px;
    }

    .card img {
        height: 200px;
    }

    .card p,
    .card h1 {
        font-size: 16px;
    }

    .contato h1 {
        font-size: 18px;
    }

    .whatsapp,
    .telefone {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
}