/* Reset e fontes */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #f4f4f4; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; }

        /* Container central */
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }

        /* Header */
        header {
            
            background: #FFF100;
            color: black;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 1.8rem; font-weight: bold; }

        /* Menu Desktop */
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li { margin-left: 2rem; }
        nav ul li a {
            font-weight: bold;
            transition: color 0.3s;
        }
        nav ul li a:hover { color: #ffcc00; }

        /* Menu Mobile (hamburger) */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #003366;
            padding: 1rem 0;
        }
        .nav-mobile ul {
            flex-direction: column;
            text-align: center;
        }
        .nav-mobile ul li {
            margin: 1rem 0;
        }

        /* Hero */
        .hero {
            
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://lookaside.instagram.com/seo/google_widget/crawler/?media_id=3783377082656150418') no-repeat center center/cover;
            height: 100vh;
            min-height: 600px;
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 180px; /* Espaço pro header fixo */
        }
        .hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
        .hero-content p { font-size: 1.4rem; margin-bottom: 2rem; }

        .btn { 
            display: inline-block; 
            background: #ffcc00; 
            color: #003366; 
            padding: 1rem 2rem; 
            font-size: 1.2rem; 
            border-radius: 50px; 
            font-weight: bold; 
            transition: 0.3s; 
        }
        .btn:hover { background: #e6b800; transform: translateY(-3px); }

     .btn1 { 
                display: inline-block; 
                background: #25D366; 
                color: #003366; 
                padding: 1rem 2rem; 
                font-size: 1.2rem; 
                border-radius: 50px; 
                font-weight: bold; 
                transition: 0.3s; 
            }
            .btn1:hover { background: green; transform: translateY(-3px); }





        /* Botões de contato (os 4 que você pediu) */
        .botoes-contato {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
            margin: 2rem auto;
        }
        .botao-contato {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px;
            font-size: 1.1rem;
            font-weight: bold;
            color: white;
            border-radius: 12px;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .botao-contato:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .botao-contato span { font-size: 1.8rem; }
        .telefone   { background-color: #d32f2f; }
        .whatsapp   { background-color: #25D366; }
        .email      { background-color: #1976d2; }
        .orcamento  { background-color: #ff9800; }

        /* Seções */
        section { padding: 4rem 0; }
        .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #003366; }
        .services, .gallery { background: white; }
        .services-grid, .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background: #fff;
            padding: 2rem;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .about { background: #e6e6e6; text-align: center; padding: 4rem 0; }

        /* Footer */
        footer {
            background: #003366;
            color: white;
            text-align: center;
            padding: 3rem 0;
        }
        .contact-info strong { color: #ffcc00; }

        /* RESPONSIVO - A PARTIR DAQUI É O QUE FAZ FUNCIONAR NO CELULAR */
        @media (max-width: 768px) {
            /* Menu hamburger */
            .menu-toggle { display: block; }
            nav ul { display: none; }
            .nav-mobile.active { display: block; }

            /* Hero */
            .hero-content h1 { font-size: 2.3rem; }
            .hero-content p { font-size: 1.2rem; }

            /* Botões de contato ocupam largura total */
            .botoes-contato {
                max-width: 100%;
                padding: 0 15px;
            }
            .botao-contato {
                font-size: 1.1rem;
                padding: 18px;
            }

            /* Títulos */
            .section-title { font-size: 2rem; }

            /* Grids viram coluna única */
            .services-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 { font-size: 2rem; }
            .hero-content p { font-size: 1.1rem; }
            .btn { padding: 0.9rem 1.8rem; font-size: 1.1rem; }
        }

.gallery-grid img{
    width: 100%;    /* Ocupa a largura da coluna/div pai */
    height: 250px;  /* Altura padronizada para todos os itens */
    overflow: hidden; /* Garante que nada saia do quadro */
}

.service-card img{
    width: 100%;    /* Ocupa a largura da coluna/div pai */
    height: 250px;  /* Altura padronizada para todos os itens */
    overflow: hidden; /* Garante que nada saia do quadro */
}


/* Estilo do Logo (Esquerda) */
.bloco-logo img {
    height: 180px; /* Ajuste conforme o tamanho da sua imagem */
    display: block;
}

/* Estilo do Telefone (Centro) */
.bloco-centro {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o número */
}


.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 35px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .whatsapp-btn {
        font-size: 1rem;
        padding: 10px 20px;
        bottom: 15px;
        right: 15px;
    }
}

.botoes-contato {
    display: flex;
    flex-direction: column;     /* Faz os botões ficarem um embaixo do outro */
    gap: 15px;                   /* Espaço entre os botões */
    max-width: 350px;            /* Largura máxima (ajuste se quiser) */
    margin: 2rem auto;           /* Centraliza a div na página */
    padding: 0 20px;             /* Espaço lateral em telas pequenas */
}


/* Garante que o menu mobile fique escondido inicialmente */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #003366;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    flex-direction: column;
    text-align: center;
}

.nav-mobile ul li {
    margin: 1.2rem 0;
}

.nav-mobile ul li a {
    font-size: 1.3rem;
    display: block;
    padding: 0.5rem;
}


/* css para os serviços*/
/* Configurações da Seção */
.secao-servicos {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.titulo-sessao h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.titulo-sessao p {
    color: #777;
    margin-bottom: 40px;
}

/* Container da Grid */
.grid-servicos {
    display: grid;
    /* Cria colunas automáticas que se ajustam ao tamanho da tela */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo do Card Individual */
.card-servico {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px; /* Cantos bem arredondados */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease; /* Suaviza a animação */
    border: 1px solid #eee;
}

/* Efeito Hover (Interatividade) */
.card-servico:hover {
    transform: translateY(-10px); /* O card "sobe" um pouco */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #4facfe;
}

/* Estilo do Ícone com Gradiente */
.icone-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 15px;
    /* Aplicando o gradiente que você pediu anteriormente */
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-servico h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-servico p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Botão dentro do card */
.btn-saiba-mais {
    text-decoration: none;
    color: #4facfe;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-saiba-mais:hover {
    color: #00f2fe;
}
