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

        :root {
            --bg: #08080a;
            --bg2: #0d0d10;
            --bg3: #111116;
            --accent: #1864ff;
            --accent-glow: rgba(24, 100, 255, .5);
            --white: #f4f4f5;
            --dim: #71717a;
            --dimmer: #3f3f46;
            --border: rgba(255, 255, 255, .07);
            --font-serif: 'Instrument Serif', serif;
            --font-sans: 'Inter', sans-serif;
            --font-mono: 'Space Mono', monospace
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden
        }

        body {
            background: var(--bg);
            color: var(--white);
            font-family: var(--font-sans);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased
        }

        ::selection {
            background: rgba(24, 100, 255, .25);
            color: var(--accent)
        }

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

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

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* Navbar base -> assets/css/components.css (fonte unica; glass via theme-language.css) */

        /* Hero */
        .page-hero {
            padding: 160px 48px 80px;
            position: relative;
            overflow: hidden
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(ellipse at top right, rgba(24, 100, 255, .1) 0%, transparent 70%);
            pointer-events: none
        }

        .page-tag {
            font-family: var(--font-mono);
            font-size: .7rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeUp .8s .1s ease forwards
        }

        .page-tag::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent)
        }

        .page-hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.8rem, 6vw, 5.5rem);
            line-height: 1;
            letter-spacing: -.02em;
            margin-bottom: 20px;
            max-width: 700px;
            opacity: 0;
            animation: fadeUp .9s .25s ease forwards
        }

        .page-hero h1 em {
            font-style: italic;
            color: var(--accent)
        }

        .page-hero p {
            font-size: 1.0625rem;
            color: var(--dim);
            max-width: 480px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeUp .9s .4s ease forwards
        }

        /* Main layout */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 64px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 48px 120px;
            align-items: start
        }

        /* Info cards */
        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .info-card {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-24px);
            transition: border-color .3s
        }

        .info-card:hover {
            border-color: rgba(255, 255, 255, .14)
        }

        .info-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(24, 100, 255, .1);
            border: 1px solid rgba(24, 100, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent)
        }

        .info-icon svg {
            width: 20px;
            height: 20px
        }

        .info-text-title {
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 4px
        }

        .info-text-val {
            font-size: .875rem;
            color: var(--dim);
            line-height: 1.5
        }

        .info-text-val a {
            color: var(--accent);
            transition: opacity .2s
        }

        .info-text-val a:hover {
            opacity: .8
        }

        /* Social strip */
        .social-strip {
            display: flex;
            gap: 12px;
            margin-top: 8px
        }

        .soc-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 100px;
            border: 1px solid var(--border);
            font-size: .8rem;
            color: var(--dim);
            transition: all .25s
        }

        .soc-btn:hover {
            border-color: rgba(255, 255, 255, .2);
            color: var(--white)
        }

        .soc-btn svg {
            width: 14px;
            height: 14px
        }

        /* Form */
        .contact-form-wrap {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 48px;
            opacity: 0;
            transform: translateX(24px)
        }

        .form-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            margin-bottom: 8px
        }

        .form-subtitle {
            font-size: .9rem;
            color: var(--dim);
            margin-bottom: 36px;
            line-height: 1.6
        }

        .form-group {
            margin-bottom: 20px
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px
        }

        label {
            display: block;
            font-size: .8rem;
            font-weight: 500;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--dim);
            margin-bottom: 8px
        }

        input,
        textarea,
        select {
            width: 100%;
            background: var(--bg3);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 14px 16px;
            font-size: .9rem;
            font-family: var(--font-sans);
            color: var(--white);
            outline: none;
            transition: border-color .25s, box-shadow .25s;
            appearance: none
        }

        input::placeholder,
        textarea::placeholder {
            color: var(--dimmer)
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(24, 100, 255, .1)
        }

        textarea {
            resize: vertical;
            min-height: 120px
        }

        select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 28px
        }

        .checkbox-group input[type=checkbox] {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
            accent-color: var(--accent)
        }

        .checkbox-group label {
            font-size: .85rem;
            color: var(--dim);
            text-transform: none;
            letter-spacing: 0;
            margin: 0;
            line-height: 1.5
        }

        .checkbox-group label a {
            color: var(--accent)
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            border-radius: 14px;
            background: var(--accent);
            color: #fff;
            font-size: .9rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all .3s;
            font-family: var(--font-sans);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px
        }

        .form-submit:hover {
            background: #3a7fff;
            box-shadow: 0 0 32px var(--accent-glow)
        }

        .form-submit svg {
            width: 16px;
            height: 16px
        }

        .success-msg {
            display: none;
            text-align: center;
            padding: 40px 20px
        }

        .success-msg .check-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(24, 100, 255, .1);
            border: 1px solid rgba(24, 100, 255, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent)
        }

        .success-msg h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            margin-bottom: 8px
        }

        .success-msg p {
            color: var(--dim);
            font-size: .9rem;
            line-height: 1.6
        }

        /* Footer -> assets/css/components.css (fonte unica; classes .foot-* antigas removidas) */
