 /* Variáveis do CSS fornecido adaptadas para o Tema Claro (Imagem 8) */
        :root {
            --bg-main: #f0f2f5;       /* Fundo principal (cinza muito claro) */
            --v-bg-card: #ffffff;     /* Fundo do card (Mantido branco para estilo Imagem 8) */
            --v-border: var(--kz-primary);      /* Bordas sutis */
            --v-text-muted: #6b7280;  /* Texto secundário */
            --v-accent: var(--kz-primary);      /* Identidade Kuzacraft (Cyan) */
            --v-accent-hover: var(--kz-primary);
            --main-text: #1f2937;     /* Cor de texto principal (escuro) */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-main); 
        }

        /* ══ SEÇÃO PRINCIPAL ══ */
        .services-section {
            background-color: var(--bg-main);
            color: var(--main-text);
            padding: 5rem 0;
        }

        /* ══ CABEÇALHO E TABS (Pílula) ══ */
        .v-header-layout {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        /* O diferencial do layout: Lado a Lado no Desktop */
        @media (min-width: 992px) {
            .v-header-layout {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                text-align: left;
            }
        }

        .v-tabs-container {
            display: inline-flex;
            background-color: transparent;
            border: 1px solid var(--v-border);
            border-radius: 0; /* Design reto (flat) */
            padding: 4px;
            overflow-x: auto;
            white-space: nowrap;
            /* Esconder scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .v-tabs-container::-webkit-scrollbar {
            display: none;
        }

        .v-tab-btn {
            background: transparent;
            color: var(--v-text-muted);
            border: none;
            border-radius: 0; /* Design reto (flat) */
            padding: 10px 24px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .v-tab-btn:hover {
            color: var(--main-text);
        }

        .v-tab-btn.active {
            background-color: var(--v-accent); /* Fundo da aba ativa com a cor da marca */
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .v-section-title {
            font-size: 2rem;
            font-weight: 800; /* Mais impacto e presença */
            margin: 0;
            color: var(--main-text);
            letter-spacing: -0.5px;
        }

        /* ══ CARDS ESTILO VULTR / IMAGEM 8 ══ */
        .v-card {
            background-color: var(--v-bg-card);
            border: 1px solid var(--v-border);
            border-radius: 2px; /* Cantos ligeiramente retos */
            padding: 2.5rem 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .v-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .v-card-icon-wrap {
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }

        .v-card-title {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--main-text);
        }

        .v-card-desc {
            font-size: 0.9rem;
            color: var(--v-text-muted);
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1; /* Empurra a lista para baixo */
        }

        .v-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .v-feature-list li {
            font-size: 0.85rem;
            color: var(--v-text-muted); /* Ajustado para ler no fundo branco */
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .v-feature-list li i {
            font-size: 1.1rem;
            margin-top: 0px;
        }

        /* Link Footer com space-between */
        .v-card-footer {
            border-top: 1px solid var(--v-border);
            padding-top: 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            transition: opacity 0.2s;
            margin-top: auto;
        }

        .v-card-footer:hover {
            opacity: 0.7;
        }

        .v-card-footer i {
            font-size: 1.2rem;
        }

        /* Animação Fade-in */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in-up {
            animation: fadeInUp 0.4s ease forwards;
            opacity: 0;
        }