/* SHARE-MODAL.CSS - Estilos para Modal de Compartilhamento */

/* Share Options Grid */
.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding: var(--space-4) 0;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-2);
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.share-option:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-option:active {
    transform: translateY(0);
}

.share-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.2s;
}

.share-option:hover .share-option-icon {
    transform: scale(1.1);
}

.share-option-label {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--gray-700);
}

/* Icon colors for each platform */
.share-option-icon.whatsapp {
    background: #25D366;
    color: white;
}

.share-option-icon.telegram {
    background: #0088cc;
    color: white;
}

.share-option-icon.twitter {
    background: #1DA1F2;
    color: white;
}

.share-option-icon.facebook {
    background: #1877F2;
    color: white;
}

.share-option-icon.copy {
    background: var(--gray-600);
    color: white;
}

.share-option-icon.more {
    background: var(--primary);
    color: white;
}

/* Share Preview */
.share-preview {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.share-preview-title {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.share-preview-text {
    font-size: var(--font-sm);
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--space-2);
}

.share-preview-url {
    font-size: var(--font-xs);
    color: var(--primary);
    word-break: break-all;
}

/* Responsive */
@media (max-width: 480px) {
    .share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .share-option {
        padding: var(--space-3);
    }

    .share-option-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .share-option-label {
        font-size: var(--font-xs);
    }
}
