/* --- Reset Básico e Estilos Globais --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: #000;
            background-color: #ffffff;
        }

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

        h1, h2, h3 {
            color: #000;
        }
        
        nav li {
          list-style: none;
          display:inline;
        }

        p {
            color: #000;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- Header / Cabeçalho --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #fff;
        }

        .header .logo {
            font-weight: 700;
            font-size: 24px;
        }
        
        .header .logo img {
            width: 120px; /* Ajuste o tamanho do seu logo */
        }

        .header nav a {
            margin: 0 15px;
            font-weight: 500;
            color: #555;
            transition: color 0.3s ease;
        }

        .header nav a:hover {
            color: #c77b5a;
        }

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

        h1, h2, h3, h4 {
            color: #000;
        }

        p {
            color: #666;
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: inherit;
        }        
        /* --- Seção de Serviço --- */
        .service-page {
            text-align: center;
            padding: 60px 20px;
        }

        .service-page .section-subtitle {
            text-transform: uppercase;
            color: #d18261;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .service-page h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .service-page > p {
            max-width: 550px;
            margin: 0 auto 30px auto;
        }

        .main-cta-button {
            background-color: #d18261;
            color: white;
            padding: 12px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: inline-block;
            margin-bottom: 60px;
        }
        
        .main-cta-button:hover {
            transform: translateY(-3px);
        }
        
        /* Grid de Serviços Específicos */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: left;
        }

        .service-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            color: white;
            min-height: 300px;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img.bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .service-card .overlay {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            z-index: 2;
        }
        
        .service-card-content {
            position: relative;
            z-index: 3;
        }

        .service-card-content h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .service-card-content p {
            color: #eee;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .service-card-content a {
            font-weight: 600;
            color: #fff;
            text-decoration: underline;
        }
        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .service-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .container { padding: 20px; }
            .header { flex-direction: column; gap: 20px; }
            .service-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
        }