    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    *::selection {
        background: #e7c102 !important;
        color: #000 !important;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #0047FF;
        color: #fff;
        overflow-x: hidden;
        line-height: 1.5;
        position: relative;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .bg-decoration {
        position: fixed;
        pointer-events: none;
        z-index: 0;
    }

    .bg-circle-1 {
        width: 400px;
        height: 400px;
        border: 3px solid rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        top: -200px;
        right: -100px;
    }

    .bg-circle-2 {
        width: 300px;
        height: 300px;
        border: 3px solid rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        bottom: 10%;
        left: -150px;
    }

    .bg-dots {
        width: 120px;
        height: 120px;
        background-image: radial-gradient(circle, rgba(0, 0, 0, 0.37) 2px, transparent 2px);
        background-size: 20px 20px;
        top: 60%;
        right: 8%;
    }

    .main-wrapper {
        flex: 1;
        width: 100%;
    }

    .container {
        max-width: 960px;
        margin: 0 auto;
        margin-top: 80px;
        padding: 0px 40px;
        position: relative;
        z-index: 1;
    }

    header {
        display: flex;
        align-items: flex-start;
        gap: 48px;
        margin-bottom: 80px;
    }

    .header-content {
        flex: 1;
        min-width: 0;
    }

    h1 {
        font-size: clamp(60px, 10vw, 140px);
        font-weight: 800;
        line-height: 0.9;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
        text-shadow: 6px 6px 0 #000;
    }

    .subtitle {
        font-size: clamp(13px, 1.6vw, 18px);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background: #FFD60A;
        color: #0047FF;
        display: inline-block;
        padding: 6px 16px;
        border: 2px solid #000;
        box-shadow: 4px 4px 0 #000;
    }

    .header-contact {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .contact-row {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
    }

    .contact-dot {
        width: 7px;
        height: 7px;
        background: #FFD60A;
        border: 2px solid #000;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .contact-row a,
    .contact-row span {
        color: #fff;
        text-decoration: none;
        transition: color 0.2s;
    }

    .contact-row a:hover {
        color: #FFD60A;
    }

    .profile-photo-wrap {
        width: 160px;
        height: 160px;
        flex-shrink: 0;
        border: 3px solid #000;
        box-shadow: 6px 6px 0 #000;
        background-image: url("profile.jpg");
        background-size: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .profile-photo-wrap svg {
        width: 52px;
        height: 52px;
        stroke: #0047FF;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    nav a {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #0047FF;
        text-decoration: none;
        background: #FFD60A;
        border: 2px solid #000;
        padding: 8px 18px;
        box-shadow: 4px 4px 0 #000;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    nav a:hover {
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000;
    }

    .section-label {
        font-size: clamp(16px, 2vw, 22px);
        font-weight: 800;
        letter-spacing: -0.02em;
        background: #FFD60A;
        color: #0047FF;
        display: inline-block;
        padding: 10px 24px;
        margin-bottom: 32px;
        border: 3px solid #000;
        box-shadow: 6px 6px 0 #000;
    }

    .card {
        background: #fff;
        color: #0047FF;
        border: 3px solid #000;
        box-shadow: 8px 8px 0 #000;
        padding: 28px 32px;
        margin-bottom: 20px;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card:last-child {
        margin-bottom: 0;
    }

    .card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 11px 11px 0 #000;
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 6px;
    }

    h2 {
        font-size: clamp(14px, 2vw, 18px);
        font-weight: 800;
        letter-spacing: -0.02em;
        text-transform: uppercase;
    }

    .date-badge {
        font-size: 11px;
        font-weight: 700;
        background: #0047FF;
        color: #fff;
        border: 2px solid #000;
        padding: 3px 10px;
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 3px 3px 0 #000;
    }

    .company {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #0047FF;
        border-bottom: 3px solid #FFD60A;
        display: inline-block;
        margin-bottom: 12px;
    }

    .card-body {
        font-size: 14px;
        color: #333;
        line-height: 1.7;
    }

    .card-body ul {
        list-style: none;
        padding: 0;
    }

    .card-body ul li {
        padding-left: 18px;
        position: relative;
        margin-bottom: 5px;
    }

    .card-body ul li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: #0047FF;
        font-size: 11px;
    }

    .resumo-card {
        background: #fff;
        color: #0047FF;
        border: 3px solid #000;
        box-shadow: 8px 8px 0 #000;
        padding: 28px 32px;
        margin-bottom: 20px;
    }

    .resumo-text {
        font-size: 15px;
        line-height: 1.75;
        color: #111;
    }

    .resumo-text strong {
        font-weight: 800;
        background: #FFD60A;
        padding: 0 3px;
        color: #000;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .skill-group {
        background: #fff;
        color: #0047FF;
        border: 3px solid #000;
        box-shadow: 6px 6px 0 #000;
        padding: 16px 18px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .skill-group:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 #000;
    }

    .skill-group-title {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        background: #0047FF;
        color: #fff;
        display: inline-block;
        padding: 2px 8px;
        margin-bottom: 10px;
    }

    .skill-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .tag {
        font-size: 12px;
        font-weight: 600;
        padding: 4px 12px;
        border: 2px solid #000;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: #fff;
        color: #0047FF;
        transition: all 0.2s;
        cursor: default;
    }

    .tag:hover {
        background: #FFD60A;
        color: #0047FF;
    }

    .project-card {
        background: #fff;
        color: #0047FF;
        border: 3px solid #000;
        box-shadow: 8px 8px 0 #000;
        padding: 24px 28px;
        margin-bottom: 16px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        align-items: start;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
    }

    .project-card:last-child {
        margin-bottom: 0;
    }

    .project-card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 11px 11px 0 #000;
    }

    .project-num {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #0047FF;
        opacity: 0.1;
        width: 44px;
    }

    .project-name {
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.01em;
        margin-bottom: 5px;
    }

    .project-desc {
        font-size: 13px;
        color: #555;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .tech-badge {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background: #FFD60A;
        border: 2px solid #000;
        padding: 3px 9px;
        color: #0047FF;
    }

    .portfolio-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0047FF;
        text-decoration: none;
        background: #FFD60A;
        border: 3px solid #000;
        padding: 12px 24px;
        box-shadow: 6px 6px 0 #000;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .portfolio-link:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 #000;
    }

    .section-block {
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    .form-wrap {
        background: #fff;
        color: #0047FF;
        border: 3px solid #000;
        box-shadow: 8px 8px 0 #000;
        padding: 32px;
    }

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

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-field.full {
        grid-column: 1 / -1;
    }

    label {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #0047FF;
    }

    input,
    textarea {
        background: #f5f5f5;
        border: 2px solid #000;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 12px;
        outline: none;
        width: 100%;
        transition: box-shadow 0.15s;
    }

    input:focus,
    textarea:focus {
        box-shadow: 4px 4px 0 #0047FF;
    }

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

    .btn-submit {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #0047FF;
        background: #FFD60A;
        border: 3px solid #000;
        padding: 14px 32px;
        box-shadow: 6px 6px 0 #000;
        cursor: pointer;
        margin-top: 10px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-submit:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 #000;
    }

    footer {
        width: 100%;
        margin-top: auto;
        padding: 24px 40px;
        background: #FFD60A;
        color: #0047FF;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        border-top: 3px solid #000;
        position: relative;
        z-index: 1;
    }

    .footer-links {
        display: flex;
        gap: 32px;
    }

    .footer-links a {
        color: #0047FF;
        text-decoration: none;
        font-weight: 800;
        position: relative;
        padding-bottom: 2px;
        transition: all 0.2s;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0047FF;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .footer-links a:hover::after {
        transform: scaleX(1);
    }

    @media (max-width: 600px) {
        .container {
            margin-top: 50px;
            padding: 0px 24px;
        }

        header {
            flex-direction: column;
            gap: 24px;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .skills-grid {
            grid-template-columns: 1fr 1fr;
        }

        footer {
            flex-direction: column;
            gap: 16px;
            text-align: center;
            padding: 24px;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
    }