@font-face{
            font-family: 'Lemon Milk';
            src: url('/fontes/lemonmilk-bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-regular.woff2') format('woff2');
            font-weight: 400;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-medium.woff2') format('woff2');
            font-weight: 500;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }

        #block-equipe #team-section{
            --team-navy: #253064;
            --team-gold:  #D89A14;
            --team-white: #ffffff;
            --team-gray:  #333333;
            width: 100%;
            background: var(--team-navy);
            padding: 80px clamp(24px, 7.3vw, 140px);
            min-height: 30vw;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-family: 'Ekster', sans-serif;
            box-sizing: border-box;
        }

        #block-equipe #team-section *,
#block-equipe #team-section *::before,
#block-equipe #team-section *::after{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        #block-equipe #team-section .team-inner{
            max-width: 1640px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* Card branco */
        #block-equipe #team-section .team-card{
            background: var(--team-white);
            border-radius: 20px;
            width: 100%;
            display: flex;
            overflow: hidden;
            min-height: 24vw;
            opacity: 0;
        }

        /* Lado esquerdo — texto */
        #block-equipe #team-section .team-content{
            flex: 1.1;
            padding: 60px 40px 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        #block-equipe #team-section .team-tag{
            font-size: 18px;
            font-weight: 700;
            color: var(--team-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 20px;
        }

        #block-equipe #team-section .team-title{
            font-family: 'Lemon Milk', sans-serif;
            font-size: clamp(20px, 1.8vw, 34px);
            color: var(--team-navy);
            text-transform: uppercase;
            line-height: 1.15;
            letter-spacing: 0.5px;
            margin-bottom: 30px;
            max-width: 800px;
        }

        #block-equipe #team-section .team-desc{
            font-size: clamp(14px, 0.9vw, 17px);
            color: var(--team-gray);
            line-height: 1.6;
            font-weight: 500;
            max-width: 750px;
        }

        #block-equipe #team-section .team-desc strong{
            font-weight: 700;
        }

        /* Lado direito — vídeo */
        #block-equipe #team-section .team-video-wrap{
            flex: 1;
            padding: 25px 25px 25px 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #block-equipe #team-section .team-video-wrap video{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        /* ── MOBILE ──────────────────────────────────────── */
        @media (max-width: 1200px){
            #block-equipe #team-section .team-card{ flex-direction: column; }
            #block-equipe #team-section .team-title{ font-size: 28px; }
            #block-equipe #team-section .team-video-wrap{ height: 400px; padding: 0 25px 25px; }
        }

        @media (max-width: 768px){
            #block-equipe #team-section{
                padding: 60px 24px;
                min-height: auto;
            }
            #block-equipe #team-section .team-content{ padding: 40px 24px; align-items: center; text-align: center; }
            #block-equipe #team-section .team-tag{ font-size: 14px; }
            #block-equipe #team-section .team-title{ font-size: 22px; }
            #block-equipe #team-section .team-video-wrap{ height: 300px; }
        }

        @media (max-width: 600px){
            #block-equipe #team-section .team-tag{ font-size: 11px; letter-spacing: 2px; }
        }