  /* CSS Reset & Variáveis Base */
        :root {
            --primary-color: #213b7c;
            --secondary-color: #2c4182;
            --accent-color: #fbaf4a;
            --accent-hover: #ee9006;
            --text-color: #48516a;
            --text-muted: #a8a8a8;
            --bg-light: #ffffff;
            --font-main: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

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

        body {
            font-family: var(--font-main);
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-light);
        }

        /* Tipografia */
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        h1 { font-size: 48px; }
        h2 { font-size: 40px; }
        h3 { font-size: 28px; }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-hover);
        }

        /* Layout & Header */
       

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header {
    position: sticky;
    top: 0;
        background-color: var(--secondary-color);
    z-index: 1000;
    padding: 15px 0;
    transition: padding 0.3s ease; /* Transição suave na altura do cabeçalho */
}

/* Tamanho Padrão da Logo */
.logo img {
    height: 140px;
    width: auto;
    transition: height 0.3s ease; /* Transição suave no tamanho da imagem */
    display: block;
}

/* Estilo do Cabeçalho e da Logo quando a tela é rolada */
header.scrolled {
    padding: 8px 0;
}

header.scrolled .logo img {
    height: 45px; /* Altura reduzida ao rolar */
}
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav a {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }

        nav a:hover {
            color: #fbaf4a
        }

        /* Botões */
        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: var(--accent-hover);
            color: #ffffff;
        }

        /* Hero Section */
        .hero {
            background-color: var(--secondary-color);
            color: #ffffff;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            color: #ffffff;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Seções de Conteúdo */
        section {
            padding: 60px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

       /* Cards de Serviços com Imagem de Fundo */
.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Overlay escuro para dar contraste ao texto */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary-color);
    margin: 0;
    padding: 10px 15px;
    text-align: left;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-subtitle {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 400;
    text-transform: none;
}

.service-icon-wa {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background-color: #25D366;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.service-icon-wa:hover {
    transform: scale(1.1);
}

        /* Rodapé */
        footer {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 40px 0 20px;
            text-align: center;
        }

        footer p {
            color: #a8a8a8;
            font-size: 14px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            h1 { font-size: 32px; }
            h2 { font-size: 28px; }
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        .hero-section {
   
    /* Imagem de Fundo */
    background-image:  url('fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
   margin-bottom: -90px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-badge {
    display: inline-block;
    background-color: #e6f9ed;
    color: #25d366;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-image-wrapper {
    flex: 1 1 450px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
   
    display: block;
    object-fit: cover;
}

/* Botão WhatsApp Animado */
.btn-whatsapp-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-green 2s infinite;
}

.btn-whatsapp-pulse:hover {
    background-color: #1eb956;
    transform: translateY(-3px); color: #fff;
}

/* Animação de Onda/Pulso */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para Telas Menores */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 16px;
    }
    .btn-whatsapp-pulse {
        width: 100%;
        box-sizing: border-box;
    }
}