/* =========================================================
   CSS separado de servicos.html
   Arquivo gerado a partir do HTML original.
   ========================================================= */


/* ===== Bloco <style> 1 extraído do HTML ===== */
:root {
            --bg-dark: #0a050f;
            --deep: #1a0f25;
            --card: #15101d;
            --card-2: #1a1424;
            --text-white: #f2f2f2;
            --muted: #a0a0a0;
            --accent-purple: #8b5cf6;
            --accent-purple-2: #7c3aed;
            --amber: #f59e0b;
            --gold: #ffcc00;
            --border: #3d3d3d;
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'DM Sans', sans-serif;
        }

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

        html, body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: var(--font-sans);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
        }

        /* ========== PARTICLES BACKGROUND DO INDEX ========== */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-color: var(--bg-dark);
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        a {
            color: inherit;
        }

        /* ========== NAVEGAÇÃO IGUAL AO INDEX ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 5, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-white);
        }

        .wolf-mark {
            width: 52px;
            height: 52px;
        }

        .wolf-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            font-family: var(--font-serif);
        }

        .brand-sub {
            font-size: 0.7rem;
            color: var(--muted);
            letter-spacing: 0.1em;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-white);
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-purple);
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            border-radius: 999px;
            background: var(--accent-purple);
        }

        /* ========== HERO REPLICANDO O INDEX ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 110px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.18), transparent 36%),
                radial-gradient(circle at 12% 80%, rgba(245, 158, 11, 0.09), transparent 28%),
                linear-gradient(180deg, rgba(10, 5, 15, 0.12), rgba(10, 5, 15, 0.72));
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
        }

        .eyebrow {
            letter-spacing: 5px;
            font-size: 0.7rem;
            color: var(--accent-purple);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: clamp(4rem, 15vw, 8rem);
            margin: 0;
            line-height: 1;
            background: linear-gradient(180deg, #FFFFFF 30%, #A78BFA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title em {
            font-style: italic;
            background: linear-gradient(180deg, #FFFFFF 0%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-top: -10px;
        }

        .hero-desc {
            max-width: 720px;
            font-size: clamp(1rem, 2.4vw, 1.25rem);
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.76);
            margin: 24px auto 0;
            font-family: var(--font-serif);
            font-style: italic;
        }

        .hero-line,
        .section-rule {
            width: 60px;
            height: 2px;
            background: var(--accent-purple);
            margin: 2rem auto;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--accent-purple);
            color: white;
            box-shadow: 0 14px 36px rgba(124, 58, 237, 0.25);
        }

        .btn-primary:hover {
            background: var(--accent-purple-2);
            transform: scale(1.05);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--accent-purple);
        }

        .btn-secondary:hover {
            background: var(--accent-purple);
            color: white;
        }

        .hero-note {
            color: var(--muted);
            margin: 1.25rem auto 0;
            max-width: 520px;
            font-style: italic;
            line-height: 1.6;
        }

        /* ========== SEÇÕES ========== */
        section {
            padding: 80px 20px;
        }

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

        .section-label {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--amber);
            display: block;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin: 0 0 1rem;
            line-height: 1.2;
            text-align: left;
        }

        .section-title.center {
            text-align: center;
        }

        .section-title em {
            font-style: italic;
            background: linear-gradient(180deg, #FFFFFF 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-rule {
            margin: 0 0 3rem;
        }

        .section-rule.center {
            margin: 0 auto 3rem;
        }

        #services {
            background: rgba(26, 15, 37, 0.72);
            backdrop-filter: blur(2px);
        }

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
        }

        .usecase-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(139, 92, 246, 0.22);
            border-radius: 24px;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .usecase-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.58);
            box-shadow: 0 24px 70px rgba(124, 58, 237, 0.18);
        }

        .usecase-media {
            position: relative;
            height: 270px;
            overflow: hidden;
        }

        .usecase-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10, 5, 15, 0.85), transparent 60%);
        }

        .usecase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .usecase-card:hover .usecase-media img {
            transform: scale(1.08);
        }

        .usecase-card-content {
            padding: 26px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            flex: 1;
            justify-content: space-between;
        }

        .usecase-title {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            line-height: 1.1;
            color: var(--text-white);
        }

        .usecase-desc {
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.65;
            font-size: 0.95rem;
        }

        .usecase-btn {
            align-self: flex-start;
            padding: 12px 22px;
            border-radius: 999px;
            background: transparent;
            color: var(--text-white);
            border: 1px solid rgba(139, 92, 246, 0.7);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .usecase-btn:hover {
            background: var(--accent-purple);
            border-color: var(--accent-purple);
            transform: translateY(-2px);
        }

        .why-choose-us {
            background: rgba(21, 16, 29, 0.82);
        }

        .features-grid {
            max-width: 1100px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 26px;
        }

        .feature-item {
            text-align: center;
            padding: 32px 26px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(139, 92, 246, 0.22);
            border-radius: 24px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .feature-icon {
            width: 86px;
            height: 86px;
            margin: 0 auto 1.3rem;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(245, 158, 11, 0.08);
            border: 1px solid rgba(245, 158, 11, 0.25);
        }

        .feature-icon svg {
            width: 66px;
            height: 66px;
        }

        .icon-gold {
            fill: none;
            stroke: var(--gold);
            stroke-width: 2.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-fill-gold {
            fill: rgba(255, 204, 0, 0.24);
            stroke: none;
        }

        .feature-title {
            font-family: var(--font-serif);
            font-size: 1.65rem;
            margin-bottom: 0.75rem;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.65;
        }

        /* ========== CTA FINAL ========== */
        #strike-cta-outer {
            padding: 90px 20px;
            background: rgba(10, 5, 15, 0.6);
        }

        #strike-cta-wrapper {
            max-width: 1120px;
            margin: 0 auto;
            display: block;
            min-height: 420px;
            overflow: hidden;
            border-radius: 30px;
            border: 1px solid rgba(139, 92, 246, 0.25);
            background: linear-gradient(135deg, rgba(21, 16, 29, 0.96), rgba(26, 15, 37, 0.86));
            box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
        }


.strike-col-link {
            display: block;
            text-decoration: none;
        }

        .strike-col-image {
            width: 100%;
            min-height: 420px;
            display: block;
            margin: 0 auto;
            background:
                linear-gradient(90deg, rgba(10, 5, 15, 0.15), rgba(10, 5, 15, 0.75)),
                url('img/ft/Gemini_Generated_Image_yxdteryxdteryxdt.jpg') center/contain no-repeat;
        }


        .strike-col-image-ii {
            background:
                linear-gradient(90deg, rgba(10, 5, 15, 0.15), rgba(10, 5, 15, 0.75)),
                url('img/ii/foto.jpeg') center/cover no-repeat;
        }


        .strike-col-link:focus-visible .strike-col-image {
            outline: 3px solid rgba(246, 163, 26, 0.85);
            outline-offset: 4px;
        }

        .strike-col-text {
            display: none;
        }


        .strike-col-text h2 {
            font-family: var(--font-serif);
            font-size: clamp(2.1rem, 5vw, 4rem);
            line-height: 1.05;
            font-weight: 600;
        }

        .strike-col-text p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .strike-btn {
            align-self: flex-start;
            display: inline-flex;
            padding: 15px 30px;
            border-radius: 999px;
            background: var(--accent-purple);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .strike-btn:hover {
            background: var(--accent-purple-2);
            transform: scale(1.04);
        }

        footer {
            background: rgba(26, 15, 37, 0.92);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--muted);
        }

        .footer-wolf {
            width: 82px;
            height: 82px;
            margin: 0 auto 1rem;
        }

        .footer-wolf img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .footer-brand {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--text-white);
            margin-bottom: 0.25rem;
        }

        .footer-sub {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .footer-copy {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .footer-legal {
            font-size: 0.75rem;
            color: var(--muted);
            margin-top: 1rem;
        }

        @media (max-width: 900px) {
            .usecases-grid,
            .features-grid,
            #strike-cta-wrapper {
                grid-template-columns: 1fr;
            }

            .strike-col-image {
                min-height: 280px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(10, 5, 15, 0.98);
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a.active::after {
                display: none;
            }

            .nav-inner {
                padding: 1rem 1.25rem;
            }

            section {
                padding: 60px 20px;
            }

            .hero {
                padding-top: 115px;
            }

            .btn {
                width: 100%;
                max-width: 320px;
            }

            .section-title,
            .section-title.center {
                text-align: center;
            }

            .section-label {
                text-align: center;
            }

            .section-rule {
                margin: 0 auto 3rem;
            }

            .usecase-card {
                min-height: auto;
            }
        }


        /* ========== AJUSTE FINAL — CORES, LETRAS E ACABAMENTO FIEL AO INDEX ========== */
        :root {
            --print-white: #f7f3ff;
            --print-muted: #a99db8;
            --print-muted-2: #8f849d;
            --print-amber: #f6a31a;
            --print-gradient-text: linear-gradient(90deg, #e8a7bc 0%, #f4bf57 48%, #c58ade 100%);
        }

        .brand-name {
            color: var(--print-white) !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-weight: 800 !important;
            letter-spacing: 0.16em !important;
            text-transform: uppercase !important;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.22);
            line-height: 1.1;
        }

        .brand-sub {
            color: var(--print-muted) !important;
            letter-spacing: 0.19em !important;
        }

        .nav-links a {
            color: rgba(169, 157, 184, 0.92) !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-weight: 500 !important;
            letter-spacing: 0.17em !important;
            text-transform: uppercase !important;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--print-amber) !important;
            text-shadow: 0 0 18px rgba(246, 163, 26, 0.35);
        }

        .nav-links a.active::after {
            background: linear-gradient(90deg, rgba(232, 167, 188, 0), #f4bf57, rgba(197, 138, 222, 0)) !important;
            box-shadow: 0 0 16px rgba(246, 163, 26, 0.35);
        }

        .eyebrow {
            color: var(--print-muted) !important;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            padding: 9px 18px;
            letter-spacing: 0.42em !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-size: 0.72rem !important;
        }

        .hero-title {
            color: var(--print-white) !important;
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
            -webkit-text-fill-color: var(--print-white) !important;
            text-shadow: 0 0 34px rgba(139, 92, 246, 0.22), 0 4px 28px rgba(0, 0, 0, 0.60);
        }

        .hero-title em,
        .section-title em,
        .strike-col-text h2 em {
            background: var(--print-gradient-text) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
            -webkit-text-fill-color: transparent !important;
            text-shadow: none !important;
        }

        .hero-desc,
        .hero-note,
        .usecase-desc,
        .feature-description,
        .strike-col-text p,
        .footer-sub,
        .footer-copy,
        .footer-legal {
            color: rgba(169, 157, 184, 0.96) !important;
        }

        .section-label {
            color: var(--print-amber) !important;
            text-shadow: 0 0 18px rgba(246, 163, 26, 0.22);
        }

        .section-title,
        .usecase-title,
        .feature-title,
        .strike-col-text h2,
        .footer-brand {
            color: var(--print-white) !important;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.16);
        }

        .hero-line,
        .section-rule {
            background: linear-gradient(90deg, rgba(232, 167, 188, 0), #f4bf57, rgba(197, 138, 222, 0)) !important;
        }

        .btn-primary,
        .strike-btn {
            color: var(--print-white) !important;
            background: linear-gradient(90deg, #9b4af4 0%, #7f2bd8 100%) !important;
            box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
        }

        .btn-primary:hover,
        .strike-btn:hover {
            background: #7c3aed !important;
            transform: scale(1.05);
        }

        .btn-secondary,
        .usecase-btn {
            color: var(--print-amber) !important;
            border-color: rgba(246, 163, 26, 0.75) !important;
            background: rgba(246, 163, 26, 0.02) !important;
        }

        .btn-secondary:hover,
        .usecase-btn:hover {
            background: rgba(246, 163, 26, 0.12) !important;
            color: #ffc15a !important;
            box-shadow: 0 0 22px rgba(246, 163, 26, 0.18);
        }

        #services {
            background:
                radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.10) 0%, rgba(249, 115, 22, 0.04) 18%, transparent 38%),
                radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 20%, transparent 42%),
                linear-gradient(180deg, #07030d 0%, #0b0612 100%) !important;
        }

        .usecase-card,
        .feature-item,
        #strike-cta-wrapper {
            background:
                radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 46%),
                linear-gradient(180deg, #17101f 0%, #0b0612 100%) !important;
            border: 1px solid rgba(139, 92, 246, 0.22) !important;
            box-shadow:
                0 22px 45px rgba(0, 0, 0, 0.34),
                0 0 0 1px rgba(255, 255, 255, 0.025),
                0 0 28px rgba(139, 92, 246, 0.10) !important;
        }

        .usecase-card:hover,
        .feature-item:hover,
        #strike-cta-wrapper:hover {
            border-color: rgba(246, 163, 26, 0.62) !important;
            box-shadow:
                0 25px 52px rgba(0, 0, 0, 0.42),
                0 0 32px rgba(246, 163, 26, 0.12),
                0 0 28px rgba(139, 92, 246, 0.12) !important;
        }

        .usecase-media::after {
            background:
                linear-gradient(180deg, rgba(5, 2, 9, 0.05) 0%, rgba(5, 2, 9, 0.00) 35%, rgba(5, 2, 9, 0.72) 78%, rgba(5, 2, 9, 0.96) 100%),
                linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.33) 100%) !important;
        }

        .feature-icon {
            background: rgba(246, 163, 26, 0.08) !important;
            border-color: rgba(246, 163, 26, 0.28) !important;
            box-shadow: 0 0 26px rgba(246, 163, 26, 0.10);
        }

        footer {
            background: var(--deep) !important;
            border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
        }


/* ===== Estilos inline extraídos do HTML ===== */

.servicos-inline-1 {
    text-align:center !important;
}
