        @font-face {
            font-family: 'StainStreet';
            src: url('../fontes/StainStreet_PERSONAL_USE_ONLY.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #000;
            font-family: Arial, sans-serif;
            color: white;
        }

        .team {
            text-align: center;
            padding: 60px 20px;
            background: #000000;
        }

        .team h2 {
            color: #facc15;
            margin-bottom: 40px;
            font-size: 50px;
            font-family: 'StainStreet', sans-serif;
        }

        .team-container {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .card {
            width: 220px;
            height: 320px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.25s ease;
            outline: none;

            clip-path: polygon(0% 20%, 0% 80%, 50% 100%, 100% 80%, 100% 20%, 50% 0%);

            background: linear-gradient(10deg, rgba(90, 90, 90, 0.9), rgba(30, 30, 30, 0.95)),
                url('../src/Imagems/textura-de-metal-oxidado-um-close-detalhado-de-uma-superficie-de-metal-corrodido_191095-78292.webp');
            background-size: cover;
            background-position: center;
        }

        .card:hover,
        .card:focus-visible {
            transform: scale(1.08);
            box-shadow: 0 0 25px rgba(255, 255, 0, 0.55), inset 0 0 18px rgba(255, 255, 150, 0.18);
        }

        .texture {
            position: absolute;
            inset: 0;
            opacity: 0.4;
            background-image:
                radial-gradient(circle at 15% 25%, rgba(0, 0, 0, 0.75) 30px, transparent 55px),
                radial-gradient(circle at 75% 65%, rgba(0, 0, 0, 0.801) 35px, transparent 65px),
                radial-gradient(circle at 45% 30%, rgba(120, 60, 30, 0.747) 30px, transparent 100px);
            background-size: 220px 220px;
            pointer-events: none;
        }

        .border {
            position: absolute;
            inset: 0;
            pointer-events: none;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8),
                inset 0 0 40px rgba(120, 60, 30, 0.5);
        }

        .content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 15px;
        }

        .photo-wrapper {
            width: 150px;
            height: 210px;
            margin: 0 auto 3px;
            padding: 4px;
            background: rgba(0, 0, 0, 0.6);

            clip-path: polygon(0% 20%, 0% 80%, 100% 80%, 100% 20%, 50% 0%);

            position: relative;
        }

        .photo-wrapper::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: -2px;
            bottom: -2px;
            background: rgb(255, 204, 0);
            clip-path: polygon(0% 20%, 0% 80%, 100% 80%, 100% 20%, 50% 0%);
            z-index: -1;
            filter: blur(10px);
        }

        .photo {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;

            clip-path: polygon(0% 20%, 0% 80%, 100% 80%, 100% 20%, 50% 0%);

            filter: contrast(110%) brightness(0.95);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
        }

        .team .card h3 {
            margin: -6px 0 4px;
            font-size: 18px;
            color: #ffd400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.35);
        }

        .interviewers-section .card {
            width: 223px;
            height: 323px;
        }

        .interviewers-section .card .content {
            padding: 18px;
        }

        .interviewers-section .card .photo-wrapper {
            width: 153px;
            height: 213px;
        }

        .interviewers-section .card h3 {
            margin: -6px 0 4px;
            font-size: 18px;
            color: #ffd400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.35);
        }

        p {
            color: #ccc;
            font-size: 14px;
            margin: 0;
        }

        .social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 8px;
        }

        .social a {
            color: white;
            font-size: 16px;
            transition: 0.3s;
        }

        .social a:hover {
            color: #f472b6;
        }

        .shine {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: translateX(-100%);
            transition: transform 0.7s ease;
            pointer-events: none;
        }

        .card:hover .shine {
            transform: translateX(120%);
        }

        .screw {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #c0c0c0 0%, #808080 50%, #404040 100%);
            border-radius: 50%;
            box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.5);
            z-index: 3;
        }

        .screw::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 4px;
            height: 4px;
            background: #606060;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
        }

        .screw-top-left {
            top: 22%;
            left: 3%;
            transform: translate(-50%, -50%);
        }

        .screw-bottom-left {
            top: 75%;
            left: 3%;
            transform: translate(-50%, -50%);
        }

        .screw-bottom-center {
            top: 95%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .screw-bottom-right {
            top: 75%;
            left: 95%;
            transform: translate(-50%, -50%);
        }

        .screw-top-right {
            top: 22%;
            left: 95%;
            transform: translate(-50%, -50%);
        }

        .screw-top-center {
            top: 3%;
            left: 50%;
            transform: translate(-50%, -50%);
        }