 /* ===== PALETA DE CORES ===== */
        :root {
            --color-deep-black: #040F0F;
            --color-dark-red: #6C0000;
            --color-intense-red: #A20A0A;
            --color-dark-gray: #2D3A3A;
            --color-ice-white: #FCFFFC;
            --color-light-gray: #F8F9FA;
            --color-medium-gray: #E9ECEF;
            --color-text-light: #6C757D;
        }

        /* ===== CONFIGURAÇÕES GERAIS ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--color-ice-white);
            color: var(--color-deep-black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== SOBRESCRITA DO BOOTSTRAP - CORES PRIMÁRIAS ===== */
        .btn-primary {
            background-color: var(--color-intense-red);
            border-color: var(--color-intense-red);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background-color: var(--color-dark-red);
            border-color: var(--color-dark-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(108, 0, 0, 0.2);
        }

        .btn-outline-primary {
            color: var(--color-intense-red);
            border-color: var(--color-intense-red);
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover,
        .btn-outline-primary:focus,
        .btn-outline-primary:active {
            background-color: var(--color-intense-red);
            border-color: var(--color-intense-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(108, 0, 0, 0.2);
        }

        .bg-primary {
            background-color: var(--color-intense-red) !important;
        }

        .text-primary {
            color: var(--color-intense-red) !important;
        }

        .border-primary {
            border-color: var(--color-intense-red) !important;
        }

        /* ===== NAVEGAÇÃO CUSTOMIZADA ===== */
        .custom-navbar {
            background: rgba(252, 255, 252, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-medium-gray);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(4, 15, 15, 0.1);
            padding: 1rem 0;
        }

        .custom-navbar.scrolled {
            background: rgba(252, 255, 252, 0.98) !important;
            box-shadow: 0 4px 20px rgba(4, 15, 15, 0.15);
            padding: 0.5rem 0;
        }

        .navbar-logo {
            height: 50px;
            width: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .navbar-logo:hover {
            transform: scale(1.1);
        }

        .navbar-nav .nav-link {
            color: var(--color-deep-black) !important;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-intense-red);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--color-intense-red) !important;
        }

        /* ===== SEÇÃO HERO COM GRADIENTE ===== */
        .hero-section {
            background: linear-gradient(135deg,
                    var(--color-ice-white) 0%,
                    rgba(252, 255, 252, 0.9) 50%,
                    rgba(162, 10, 10, 0.05) 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%,
                    rgba(162, 10, 10, 0.1) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .hero-title {
            color: var(--color-deep-black);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 3.5rem;
        }

        .hero-subtitle {
            color: var(--color-intense-red);
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .hero-description {
            color: var(--color-text-light);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .hero-buttons .btn {
            transition: all 0.3s ease;
            border-radius: 30px;
            font-weight: 500;
            padding: 0.75rem 2rem;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }

        .hero-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(4, 15, 15, 0.15);
        }

        /* ===== CONTAINER DA FOTO DO PERFIL ===== */
        .profile-container {
            position: relative;
            display: inline-block;
        }

        .profile-pic {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-intense-red), var(--color-dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-shadow: 0 8px 30px rgba(4, 15, 15, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .profile-pic::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        .profile-pic:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(162, 10, 10, 0.3);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        /* ===== INDICADOR DE SCROLL ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid var(--color-intense-red);
            border-bottom: 2px solid var(--color-intense-red);
            transform: rotate(45deg);
        }

        /* ===== SEÇÕES GERAIS ===== */
        section {
            padding: 5rem 0;
        }

        .section-title {
            color: var(--color-deep-black);
            position: relative;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .title-underline {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-intense-red), var(--color-dark-red));
            border-radius: 2px;
            margin: 1rem auto;
        }

        /* ===== SEÇÃO SOBRE ===== */
        .about-section {
            background: linear-gradient(135deg,
                    var(--color-ice-white) 0%,
                    rgba(252, 255, 252, 0.9) 100%);
        }

        .about-text {
            color: var(--color-text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .skill-card {
            background: var(--color-ice-white);
            border: 1px solid var(--color-medium-gray);
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(4, 15, 15, 0.1);
            height: 100%;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(4, 15, 15, 0.15);
            border-color: var(--color-intense-red);
        }

        .skill-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-intense-red), var(--color-dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .skill-icon img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* ===== SEÇÃO PROJETOS ===== */
        .projects-section {
            background: linear-gradient(135deg,
                    rgba(252, 255, 252, 0.9) 0%,
                    var(--color-ice-white) 100%);
        }

        .project-card {
            background: var(--color-ice-white);
            border: 1px solid var(--color-medium-gray);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(4, 15, 15, 0.1);
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(4, 15, 15, 0.2);
            border-color: var(--color-intense-red);
        }

        .project-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(162, 10, 10, 0.9),
                    rgba(108, 0, 0, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-buttons {
            display: flex;
            gap: 1rem;
        }

        .project-buttons .btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-buttons .btn:hover {
            transform: scale(1.1);
        }

        /* ===== SEÇÃO CONTATO ===== */
        .contact-section {
            background: linear-gradient(135deg,
                    var(--color-ice-white) 0%,
                    rgba(252, 255, 252, 0.9) 100%);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--color-light-gray);
            border-radius: 15px;
            text-decoration: none;
            color: var(--color-deep-black);
            transition: all 0.3s ease;
            border: 1px solid var(--color-medium-gray);
        }

        .contact-method:hover {
            background: var(--color-intense-red);
            color: var(--color-ice-white);
            transform: translateX(10px);
            text-decoration: none;
        }

        .contact-method i {
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .contact-form-card {
            background: var(--color-light-gray);
            border: 1px solid var(--color-medium-gray);
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(4, 15, 15, 0.1);
        }

        .contact-form-card .form-control {
            border: 2px solid var(--color-medium-gray);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-form-card .form-control:focus {
            border-color: var(--color-intense-red);
            box-shadow: 0 0 0 3px rgba(162, 10, 10, 0.1);
        }

        .contact-form-card .input-group-text {
            background: var(--color-intense-red);
            color: white;
            border: 2px solid var(--color-intense-red);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--color-deep-black);
            color: var(--color-ice-white);
            padding: 2rem 0;
        }

        .footer p {
            color: var(--color-ice-white);
            margin: 0;
        }

        /* ===== ANIMAÇÕES ===== */
        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 1024px) {
            .profile-pic {
                width: 250px;
                height: 250px;
            }

            .profile-image {
                width: 230px;
                height: 230px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .custom-navbar {
                padding: 0.5rem 0;
            }

            .profile-pic {
                width: 200px;
                height: 200px;
            }

            .profile-image {
                width: 180px;
                height: 180px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-buttons {
                text-align: center;
            }

            .contact-methods {
                margin-bottom: 3rem;
            }

            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

        @media (max-width: 480px) {
            .profile-pic {
                width: 180px;
                height: 180px;
            }

            .profile-image {
                width: 160px;
                height: 160px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-buttons .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }

            section {
                padding: 3rem 0;
            }
        }

        /* ===== BOTÃO VOLTAR AO TOPO ===== */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--color-intense-red);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(4, 15, 15, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top:hover {
            background: var(--color-dark-red);
            transform: translateY(-3px);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }