/* ============================================
   FACIAL RECOGNITION - MODERN DESIGN
   100% Sports - Reconhecimento Facial
   ============================================ */

/* ===== VARIÁVEIS CSS ===== */
:root {
  /* Cores */
  --primary: #71653f;
  --primary-hover: #8a7d50;
  --primary-light: #a39870;
  --dark: #1A1A1A;
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;

  /* Estados */
  --success: #84ab32;
  --warning: #F59E0B;
  --error: #960000;

  /* Espaçamentos */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Raios */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 0px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Transições */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== CONTAINER PRINCIPAL ===== */
.facial-capture-modern {
    width: 100%;
    margin: 0 auto;
}

.facial-state {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ESTADO: CONSENTIMENTO
   ============================================ */

.facial-consent-box {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}

.facial-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(113, 101, 63, 0.3);
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.facial-icon i {
    font-size: 3rem;
    color: white;
}

.facial-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
}

.facial-description {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.facial-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-dark);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: #ebebeb;
    transform: translateX(4px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   ESTADO: CAPTURA
   ============================================ */

.facial-capture-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.facial-camera-area {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* ===== WEBCAM CONTAINER ===== */
.webcam-container-modern {
    position: relative;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webcam-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    gap: var(--spacing-md);
    z-index: 10;
}

.webcam-loading p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.spinner-modern {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--success);
    border-radius: 0px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.webcam-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.webcam-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scaleX(-1);
}

/* ===== OVERLAY E GUIAS ===== */
.webcam-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.face-guide {
    width: min(300px, 70vw);
    height: min(380px, 70vh);
    max-width: 300px;
    max-height: 380px;
    border: 4px dashed var(--success);
    border-radius: 0px;
    box-shadow:
        0 0 0 9999px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(132, 171, 50, 0.2);
    animation: pulseGuide 2.5s ease-in-out infinite;
    position: relative;
}

@keyframes pulseGuide {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
        border-color: var(--success);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
        border-color: var(--primary-light);
    }
}

/* Pontos de referência na guia */
.face-guide::before,
.face-guide::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 0px;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.face-guide::before {
    top: 30%;
    left: 25%;
}

.face-guide::after {
    top: 30%;
    right: 25%;
}

.guide-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(132, 171, 50, 0.3);
}

.camera-controls {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===== INSTRUÇÕES LATERAIS ===== */
.facial-instructions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.instruction-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.instruction-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.instruction-title i {
    color: var(--warning);
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.instruction-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.instruction-list li i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== VERIFICAÇÕES DE QUALIDADE ===== */
.quality-checks {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
}

.checks-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    color: var(--gray-medium);
    transition: all var(--transition-base);
}

.check-item i {
    font-size: 1rem;
    color: var(--gray-medium);
}

.check-item.checking i {
    color: var(--primary);
    animation: spin 1s linear infinite;
}

.check-item.success {
    color: var(--success);
}

.check-item.success i {
    color: var(--success);
    animation: none;
}

.check-item.error {
    color: var(--error);
}

.check-item.error i {
    color: var(--error);
    animation: none;
}

/* ============================================
   ESTADO: PREVIEW
   ============================================ */

.facial-preview-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.preview-image-area {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image-box {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.preview-actions {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   ESTADO: PROCESSANDO
   ============================================ */

.facial-processing {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 500px;
    margin: 0 auto;
}

.processing-spinner {
    margin-bottom: var(--spacing-lg);
}

.spinner-large {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(92, 107, 60, 0.1);
    border-top-color: var(--primary);
    border-radius: 0px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.processing-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.processing-description {
    font-size: 0.9375rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: var(--gray-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== STEPS DE PROCESSAMENTO ===== */
.processing-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-medium);
    transition: all var(--transition-base);
    opacity: 0.5;
}

.step-item i {
    font-size: 1.25rem;
    color: var(--gray-medium);
}

.step-item.active {
    background: var(--primary);
    color: white;
    opacity: 1;
    transform: scale(1.02);
}

.step-item.active i {
    color: white;
    animation: pulse 1s ease-in-out infinite;
}

.step-item.completed {
    background: var(--success);
    color: white;
    opacity: 1;
}

.step-item.completed i {
    color: white;
}

/* ============================================
   ESTADO: SUCESSO
   ============================================ */

.facial-success {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--success) 0%, #75992b 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(132, 171, 50, 0.3);
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: var(--spacing-sm);
}

.success-description {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.success-preview {
    position: relative;
    display: inline-block;
    margin-top: var(--spacing-lg);
}

.success-img {
    width: 200px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--success);
}

.success-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge i {
    font-size: 1rem;
}

/* ============================================
   ESTADO: ERRO
   ============================================ */

.facial-error {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--error) 0%, #7a0000 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(150, 0, 0, 0.3);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-icon i {
    font-size: 3rem;
    color: white;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--error);
    margin-bottom: var(--spacing-sm);
}

.error-description {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   UTILITIES
   ============================================ */

.d-none {
    display: none !important;
}

.text-center {
    text-align: center !important;
}

/* ============================================
   CONSENTIMENTO LGPD - INTEGRADO
   ============================================ */

.consent-content-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1000;
}

.consent-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-height: 400px;
    overflow-y: auto;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
}

.consent-section {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
}

.consent-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.consent-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.consent-section-title i {
    font-size: 1.25rem;
}

.consent-section-text {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.consent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.consent-list li {
    font-size: 0.875rem;
    color: var(--gray-dark);
    line-height: 1.5;
    padding-left: var(--spacing-sm);
    position: relative;
}

.consent-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.consent-list li i {
    margin-right: var(--spacing-xs);
}

/* Contato DPO */
.consent-contact {
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.consent-contact-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.consent-contact-text {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xs);
}

.consent-contact-email {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.consent-contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.consent-contact-email a:hover {
    text-decoration: underline;
}

.consent-contact-note {
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin: 0;
    font-style: italic;
}

/* Checkbox de Consentimento - Estilo Igual aos Outros */
.consent-checkbox-box {
    margin: var(--spacing-lg) 0;
}

.consent-checkbox-input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: var(--spacing-sm);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    transition: all var(--transition-base);
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.consent-checkbox-input:hover {
    border-color: var(--primary-light);
}

.consent-checkbox-input:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.consent-checkbox-input:checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.consent-checkbox-label {
    display: inline;
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
}

/* Botões de Ação do Consentimento */
.consent-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.consent-actions .btn-modern {
    flex: 1;
}

/* ============================================
   RESPONSIVIDADE CONSOLIDADA
   ============================================ */

/* Tablets e Mobile */
@media (max-width: 768px) {
    /* Layout geral */
    .facial-capture-modern {
        padding: 0;
    }

    .facial-capture-grid,
    .facial-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Consentimento */
    .facial-consent-box {
        padding: var(--spacing-md);
    }

    .facial-icon {
        width: 70px;
        height: 70px;
    }

    .facial-icon i {
        font-size: 2rem;
    }

    .facial-title {
        font-size: 1.25rem;
    }

    .facial-description {
        font-size: 0.875rem;
    }

    /* ===== WEBCAM MOBILE ===== */
    .webcam-container-modern {
        border-radius: var(--radius-md);
        max-width: 100%;
        width: 100%;
        height: 65vh;
        min-height: 450px;
        max-height: 600px;
        aspect-ratio: 3/4;
    }

    .webcam-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .webcam-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .webcam-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* Face guide */
    .face-guide {
        width: 70%;
        height: 55%;
        max-width: 280px;
        max-height: none;
        border-width: 3px;
    }

    .face-guide::before,
    .face-guide::after {
        width: 14px;
        height: 14px;
    }

    .guide-text {
        bottom: 20px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        max-width: 85%;
        text-align: center;
    }

    /* Controles e instruções */
    .camera-controls {
        padding: var(--spacing-sm);
    }

    .instruction-box {
        order: 2;
        padding: var(--spacing-sm);
    }

    .quality-checks {
        order: 3;
        padding: var(--spacing-sm);
    }

    /* Preview */
    .preview-image-box {
        padding: var(--spacing-sm);
    }

    .success-img {
        width: 120px;
    }

    /* Estados de processamento */
    .spinner-large {
        width: 50px;
        height: 50px;
    }

    /* Botões */
    .btn-modern {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    /* Consentimento LGPD */
    .consent-sections {
        max-height: 50vh;
        font-size: 0.813rem;
        padding: var(--spacing-sm);
    }

    .consent-section-title {
        font-size: 0.875rem;
    }

    .consent-checkbox-box {
        padding: var(--spacing-sm);
    }

    .consent-actions {
        flex-direction: column;
    }

    .consent-actions .btn-modern {
        width: 100%;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .facial-title {
        font-size: 1.125rem;
    }

    /* Webcam responsivo mantendo proporção */
    .webcam-container-modern {
        height: 75vh;
        min-height: 400px;
        max-height: 600px;
        aspect-ratio: 3/4;
    }

    /* Face guide menor */
    .face-guide {
        width: 65%;
        height: 50%;
        max-width: 240px;
        border-width: 2px;
    }

    .guide-text {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        bottom: 15px;
    }

    /* Botões menores */
    .btn-modern {
        font-size: 0.813rem;
        padding: 0.5rem 0.875rem;
    }

    /* Loading */
    .webcam-loading p {
        font-size: 0.813rem;
    }

    .spinner-modern {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }
}

/* Landscape (celular deitado) */
@media (max-width: 768px) and (orientation: landscape) {
    .webcam-container-modern {
        padding-top: 75%; /* 4:3 em landscape */
    }

    .face-guide {
        width: 45%;
        height: 70%;
        max-width: 300px;
        max-height: 85%;
    }

    .guide-text {
        bottom: 10px;
        font-size: 0.7rem;
    }
}

/* Ajuste específico para iOS Safari */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .webcam-video video,
        .webcam-video canvas {
            min-height: 100%;
            min-width: 100%;
        }
    }
}

/* ============================================
   INDICAÇÃO VISUAL DO CHECKBOX OBRIGATÓRIO
   ============================================ */
.consent-required-text {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.consent-required-text i {
    color: var(--warning);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
