/* Reset e fonte moderna */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 70vh;
    background: linear-gradient(120deg, #e0e0e0 0%, #f5f5f5 100%);
    padding: 2rem;
    background-image: url(banner-b.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #444;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #ffd700;
    color: #222;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition:
        background 0.2s,
        color 0.2s;
}

.btn:hover,
.btn:focus {
    background: #ffe066;
    color: #111;
}

@media screen and (min-width: 1700px) {
    .hero-content {
        margin-left: 20%;
    }
}

/* servicos */
.servicos {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    gap: 20px;
}

.servicos h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
}

.servicos p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.servicos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
}

.servico {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.servico:hover,
.servico:focus {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px) scale(1.03);
}

.servico img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    background: #f5f5f5;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.servico-texto {
    padding: 0 0.5rem;
    text-align: center;
}

.servico-texto h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #222;
}

.servico-texto p {
    font-size: 0.98rem;
    color: #555;
}

@media screen and (max-width: 1200px) {
    .servicos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .servico {
        width: 100%;
        max-width: 320px;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .servicos {
        padding: 2rem 0.5rem;
    }
    .servicos-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .servico {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* cta-orcamento */

.cta-orcamento {
    background: linear-gradient(90deg, rgba(255, 199, 2, 0) 0%, #f5de8d 100%), #ffe5c2;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    margin: 3rem auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-orcamento .content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.cta-orcamento .content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    max-width: 600px;
}

.cta-orcamento .content p{
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
}

.cta-orcamento .btn {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .cta-orcamento {
        flex-direction: column-reverse;
        gap: 1.5rem;
        padding: 2rem 1rem;
        background: linear-gradient(180deg, rgba(255, 199, 2, 0) 0%, #f5de8d 100%), #ffe5c2;
    }
    .cta-orcamento .content h2 {
        font-size: 1.5rem;
    }
    .cta-orcamento .content p {
        font-size: 1rem;
    }

    .cta-orcamento img{
        width: 100%;
        /* max-width: 300px; */
        height: auto;
    }
}

/* Quem Somos */
.quemsomos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    padding: 4rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.quemsomos img {
    width: 50%;
    border-radius: 1rem;
    object-fit: cover;
    margin-bottom: 1rem;
}

.quemsomos .content {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quemsomos .content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.8rem;
}

.quemsomos .content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media screen and (max-width: 900px) {
    .quemsomos {
        flex-direction: column;
        padding: 2rem 0.5rem;
        gap: 1.5rem;
    }
    .quemsomos img {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.5rem;
    }
    .quemsomos .content h2 {
        font-size: 1.5rem;
    }
    .quemsomos .content p {
        font-size: 1rem;
    }
}

/* Localização */
.localizacao {
    padding: 4rem 2rem;
    margin: 0 auto;
    background: #fff;
}

.localizacao h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    text-align: center;
}

.localizacao p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 2rem;
    text-align: center;
}

.mapa {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.mapa iframe {
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);

}

.funcionamento {
    background: #FFE5C2;
    border-radius: 1rem;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-width: 220px;
    max-width: 320px;
}

.funcionamento h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.8rem;
    text-align: left;
}

.funcionamento p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.3rem;
    text-align: left;
}

@media screen and (max-width: 900px) {
    .quemsomos {
        padding: 20px;
    }

    .localizacao {
        padding: 2rem 0.5rem;
    }
    .mapa {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .mapa iframe {
        width: 100%;
        min-height: 220px;
        max-width: 100%;
        height: 220px;
    }
    .funcionamento {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .localizacao h2 {
        font-size: 1.5rem;
    }
    .localizacao p {
        font-size: 1rem;
    }
    .funcionamento h3 {
        font-size: 1rem;
    }
    .funcionamento p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 600px) {
    .quemsomos {
        padding: 20px;
        gap: 1rem;
    }
    .quemsomos img {
        max-width: 100%;
        margin-bottom: 0.3rem;
    }
    .quemsomos .content h2 {
        font-size: 1.2rem;
    }
    .quemsomos .content p {
        font-size: 0.95rem;
    }
    .localizacao {
        padding: 20px;
    }
    .localizacao h2 {
        font-size: 1.1rem;
    }
    .localizacao p {
        font-size: 0.95rem;
    }
    .mapa iframe {
        min-height: 160px;
        height: 160px;
    }
    .funcionamento {
        padding: 1rem 0.6rem;
        max-width: 100%;
    }
    .funcionamento h3 {
        font-size: 0.98rem;
    }
    .funcionamento p {
        font-size: 0.9rem;
    }
}

