/* Base + Hero + Serviços + CTA + Responsividade */
body {font-family:'Poppins',sans-serif;line-height:1.6;color:#333;background:#fff;}
.container{max-width:1200px;margin:0 auto;padding:0 20px;}
a{text-decoration:none;}
header{position:sticky;top:0;background:#fff;z-index:1000;display:flex;justify-content:space-between;align-items:center;padding:10px 20px;border-bottom:1px solid #eee;}
header nav ul{list-style:none;display:flex;gap:20px;}
header nav a{color:#0077b6;font-weight:600;transition:0.3s;}
header nav a:hover{color:#0096c7;}
header .logo img{max-height:60px;width:auto;}
@media(max-width:768px){header .logo img{max-height:45px;}}

.hero{background:url('../images/hero-bg.jpg')center/cover no-repeat;color:#fff;text-align:center;padding:120px 20px;}
.hero h1{font-size:3rem;font-weight:700;margin-bottom:20px;}
.hero p{font-size:1.2rem;margin-bottom:30px;}
.hero .btn{background:#0077b6;color:#fff;padding:12px 30px;border-radius:6px;transition:0.3s;font-weight:600;}
.hero .btn:hover{background:#0096c7;}

.sobre{padding:80px 20px;text-align:center;background:#f8f9fa;}
.sobre h2{color:#0077b6;margin-bottom:20px;}
.sobre p{max-width:700px;margin:0 auto 30px;}
.sobre .btn{background:#0096c7;color:#fff;padding:10px 25px;border-radius:6px;transition:0.3s;}
.sobre .btn:hover{background:#0077b6;}

.servicos{padding:80px 20px;text-align:center;}
.servicos h2{color:#0077b6;margin-bottom:40px;}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;margin-bottom:30px;}
.service-card{background:#fff;padding:30px 20px;border-radius:10px;box-shadow:0 2px 10px rgba(0,0,0,0.1);transition:0.3s;text-align:center;}
.service-card:hover{transform:translateY(-5px);box-shadow:0 4px 20px rgba(0,0,0,0.15);}
.service-card i{font-size:40px;color:#0096c7;margin-bottom:15px;}
.service-card h3{margin-bottom:10px;color:#0077b6;}
.service-card p{font-size:0.95rem;}

.cta{background:#0077b6;color:#fff;text-align:center;padding:80px 20px;}
.cta h2{font-size:2rem;margin-bottom:20px;}
.cta .btn{background:#0096c7;color:#fff;padding:12px 30px;border-radius:6px;transition:0.3s;font-weight:600;}
.cta .btn:hover{background:#00b4d8;}

/* ===========================
   FOOTER - VERSÃO FUNDO BRANCO
=========================== */
footer {
    background: #ffffff; /* fundo branco */
    color: #0077b6;      /* texto azul */
    margin-top: 50px;
    font-size: 0.95rem;
    border-top: 1px solid #ddd;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #0077b6; /* azul para os títulos */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #0077b6; /* links azuis */
    transition: 0.3s;
    text-decoration: none;
}

.footer-col a:hover {
    color: #0096c7; /* azul claro no hover */
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.3rem;
    color: #0077b6; /* ícones azuis */
}

.social-icons a:hover {
    color: #0096c7;
}

.policy-links {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    background: #f8f9fa; /* cinza claro para separar */
    text-align: center;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #0077b6;
}



/* CONTACTOS */
.contactos {
    padding: 80px 20px;
}
.contactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.contact-info h2, .contact-form h2 {
    color: #0077b6;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}
.contact-info i {
    color: #0096c7;
    margin-right: 8px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.contact-form button {
    background: #0077b6;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #0096c7;
}
.mapa iframe {
    border-radius: 10px;
    margin-top: 40px;
}

/* GALERIA TRABALHOS */
.galeria-trabalhos {
    padding: 80px 20px;
    text-align: center;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}
